Skip to content

Commit 60babc8

Browse files
fix: pyproject.toml (#461)
1 parent 8b32dab commit 60babc8

1 file changed

Lines changed: 7 additions & 3 deletions

File tree

pyproject.toml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ classifiers = [
3030
"Topic :: Scientific/Engineering :: Artificial Intelligence",
3131
"Topic :: Scientific/Engineering :: Information Analysis",
3232
]
33-
requires-python = ">=3.10"
33+
requires-python = ">=3.10,<3.14"
3434
dynamic = ["version"]
3535
dependencies = [
3636
"setuptools>=64",
@@ -39,6 +39,9 @@ dependencies = [
3939
"datasets",
4040
"qwen_vl_utils",
4141
"vllm==0.13.0+cpu",
42+
"torch",
43+
"torchvision",
44+
"torchaudio",
4245
"optimum-rbln>=0.10.2a1",
4346
]
4447

@@ -123,18 +126,19 @@ check_untyped_defs = true
123126
follow_imports = "silent"
124127

125128
[tool.uv]
126-
index-strategy = "unsafe-best-match"
127-
required-environments = [
129+
environments = [
128130
"sys_platform == 'linux' and platform_machine == 'x86_64'"
129131
]
130132

131133
[[tool.uv.index]]
132134
name = "vllm-cpu"
133135
url = "https://wheels.vllm.ai/0.13.0/cpu"
136+
explicit = true
134137

135138
[[tool.uv.index]]
136139
name = "pytorch-cpu"
137140
url = "https://download.pytorch.org/whl/cpu"
141+
explicit = true
138142

139143
[tool.uv.sources]
140144
vllm = { index = "vllm-cpu" }

0 commit comments

Comments
 (0)