Skip to content

Commit

Permalink
Merge pull request #143 from Shaoting-Feng/unspecified
Browse files Browse the repository at this point in the history
[Router] Fix unspecified versions in requirements.txt
  • Loading branch information
YuhanLiu11 authored Feb 18, 2025
2 parents 7156594 + 01fa3eb commit 9c350ff
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.8'
python-version: '3.12.8'

- name: Install Dependencies
run: |
Expand Down
18 changes: 9 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@
package_dir={"": "src"},
# Should be the same as src/router/requirements.txt
install_requires=[
"numpy",
"fastapi",
"httpx",
"uvicorn",
"kubernetes",
"prometheus_client",
"uhashring",
"aiofiles",
"python-multipart",
"numpy==1.26.4",
"fastapi==0.115.8",
"httpx==0.28.1",
"uvicorn==0.34.0",
"kubernetes==32.0.0",
"prometheus_client==0.21.1",
"uhashring==2.3",
"aiofiles==24.1.0",
"python-multipart==0.0.20",
],
entry_points={
"console_scripts": [
Expand Down
14 changes: 7 additions & 7 deletions src/vllm_router/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
fastapi
httpx
kubernetes
numpy
prometheus_client
uhashring
uvicorn
fastapi==0.115.8
httpx==0.28.1
kubernetes==32.0.0
numpy==1.26.4
prometheus_client==0.21.1
uhashring==2.3
uvicorn==0.34.0

0 comments on commit 9c350ff

Please sign in to comment.