Skip to content

Commit 8e6224c

Browse files
authored
fix: uvicorn standard extensions add back websockets
1 parent 5165cec commit 8e6224c

File tree

4 files changed

+20
-17
lines changed

4 files changed

+20
-17
lines changed

poetry.lock

Lines changed: 12 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ torch = "2.5.1"
6161
torchaudio = "2.5.1"
6262
transformers = "4.51.1"
6363
uuid6 = "2024.07.10"
64-
uvicorn = "0.34.2"
64+
uvicorn = {extras = ["standard"], version = "^0.38.0"}
6565

6666
[build-system]
6767
build-backend = "poetry.core.masonry.api"

requirements-vllm.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ typing-inspect==0.9.0 ; python_version == "3.11"
190190
typing-inspection==0.4.1 ; python_version == "3.11"
191191
urllib3==2.4.0 ; python_version == "3.11"
192192
uuid6==2024.7.10 ; python_version == "3.11"
193-
uvicorn==0.34.2 ; python_version == "3.11"
193+
uvicorn==0.38.0 ; python_version == "3.11"
194194
uvloop==0.21.0 ; sys_platform != "win32" and sys_platform != "cygwin" and platform_python_implementation != "PyPy" and python_version == "3.11"
195195
vllm==0.7.3 ; python_version == "3.11"
196196
watchfiles==1.0.5 ; python_version == "3.11"

requirements.txt

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ cffi==1.17.1 ; python_version == "3.11"
1919
charset-normalizer==3.4.2 ; python_version == "3.11"
2020
circuitbreaker==2.1.3 ; python_version == "3.11"
2121
click==8.2.1 ; python_version == "3.11"
22-
colorama==0.4.6 ; python_version == "3.11" and platform_system == "Windows"
22+
colorama==0.4.6 ; (platform_system == "Windows" or sys_platform == "win32") and python_version == "3.11"
2323
coloredlogs==15.0.1 ; python_version == "3.11"
2424
cryptography==44.0.3 ; python_version == "3.11"
2525
ctranslate2==4.4.0 ; python_version == "3.11"
@@ -40,6 +40,7 @@ greenlet==3.2.2 ; python_version == "3.11" and (platform_machine == "aarch64" or
4040
h11==0.16.0 ; python_version == "3.11"
4141
html-to-markdown==1.3.2 ; python_version == "3.11"
4242
httpcore==1.0.9 ; python_version == "3.11"
43+
httptools==0.6.4 ; python_version == "3.11"
4344
httpx-sse==0.4.0 ; python_version == "3.11"
4445
httpx==0.28.1 ; python_version == "3.11"
4546
huggingface-hub==0.31.4 ; python_version == "3.11"
@@ -139,7 +140,10 @@ typing-inspect==0.9.0 ; python_version == "3.11"
139140
typing-inspection==0.4.1 ; python_version == "3.11"
140141
urllib3==2.4.0 ; python_version == "3.11"
141142
uuid6==2024.7.10 ; python_version == "3.11"
142-
uvicorn==0.34.2 ; python_version == "3.11"
143+
uvicorn==0.38.0 ; python_version == "3.11"
144+
uvloop==0.21.0 ; sys_platform != "win32" and sys_platform != "cygwin" and platform_python_implementation != "PyPy" and python_version == "3.11"
145+
watchfiles==1.0.5 ; python_version == "3.11"
146+
websockets==15.0.1 ; python_version == "3.11"
143147
wrapt==1.17.2 ; python_version == "3.11"
144148
xlsxwriter==3.2.3 ; python_version == "3.11"
145149
yarl==1.20.0 ; python_version == "3.11"

0 commit comments

Comments
 (0)