Skip to content

Commit

Permalink
fix version specifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
rectalogic committed Oct 3, 2024
1 parent 5e29fa9 commit 8c39372
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 28 deletions.
28 changes: 14 additions & 14 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# SPDX-License-Identifier: Apache-2.0
[project]
name = "llm-transformers"
version = "0.1"
version = "0.1.0"
requires-python = ">= 3.12"
description = "Plugin for llm adding support for 🤗 Hugging Face Transformers"
readme = "README.md"
Expand All @@ -12,23 +12,23 @@ classifiers = [
"License :: OSI Approved :: Apache Software License"
]
dependencies = [
"llm>=0.16",
"transformers>=4.45.1",
"torch>=2.4.1",
"soundfile>=0.12.1",
"pillow>=10.4.0",
"pytesseract>=0.3.13",
"timm>=1.0.9",
"protobuf>=5.28.2",
"pandas>=2.2.3",
"av>=13.0.0",
"numpy>=2.1.1",
"llm~=0.16",
"transformers~=4.45.1",
"torch~=2.4.1",
"soundfile~=0.12.1",
"pillow~=10.4.0",
"pytesseract~=0.3.13",
"timm~=1.0.9",
"protobuf~=5.28.2",
"pandas~=2.2.3",
"av~=13.0.0",
"numpy~=2.1.1",
]

[tool.uv]
dev-dependencies = [
"pytest>=8.3.3",
"ruff>=0.6.8",
"pytest~=8.3.3",
"ruff~=0.6.8",
]

[project.urls]
Expand Down
28 changes: 14 additions & 14 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 8c39372

Please sign in to comment.