Commit
·
d2ade5c
1
Parent(s):
2db2034
Fix vLLM nightly wheel index URL
Browse filesChanged from:
[[tool.uv.index]]
name = "vllm-nightly"
url = "https://wheels.vllm.ai"
To:
[[tool.uv.index]]
url = "https://wheels.vllm.ai/nightly"
- Removed unnecessary 'name' field (simpler syntax per UV docs)
- Fixed URL to use /nightly path for nightly builds
- Should now properly install pre-built wheels instead of building from source
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
- deepseek-ocr-vllm-test.py +1 -2
- deepseek-ocr-vllm.py +1 -2
deepseek-ocr-vllm-test.py
CHANGED
|
@@ -9,8 +9,7 @@
|
|
| 9 |
# ]
|
| 10 |
#
|
| 11 |
# [[tool.uv.index]]
|
| 12 |
-
#
|
| 13 |
-
# url = "https://wheels.vllm.ai"
|
| 14 |
#
|
| 15 |
# [tool.uv]
|
| 16 |
# prerelease = "allow"
|
|
|
|
| 9 |
# ]
|
| 10 |
#
|
| 11 |
# [[tool.uv.index]]
|
| 12 |
+
# url = "https://wheels.vllm.ai/nightly"
|
|
|
|
| 13 |
#
|
| 14 |
# [tool.uv]
|
| 15 |
# prerelease = "allow"
|
deepseek-ocr-vllm.py
CHANGED
|
@@ -11,8 +11,7 @@
|
|
| 11 |
# ]
|
| 12 |
#
|
| 13 |
# [[tool.uv.index]]
|
| 14 |
-
#
|
| 15 |
-
# url = "https://wheels.vllm.ai"
|
| 16 |
#
|
| 17 |
# [tool.uv]
|
| 18 |
# prerelease = "allow"
|
|
|
|
| 11 |
# ]
|
| 12 |
#
|
| 13 |
# [[tool.uv.index]]
|
| 14 |
+
# url = "https://wheels.vllm.ai/nightly"
|
|
|
|
| 15 |
#
|
| 16 |
# [tool.uv]
|
| 17 |
# prerelease = "allow"
|