Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for Deepgram async websocket #486

Closed
wants to merge 3 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
upgrade websockets dependency to 14.1
  • Loading branch information
xzys committed Nov 26, 2024
commit 6921dd203ce877c0abd82237b31d5cdd1e228377
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -31,7 +31,7 @@ readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
httpx = "^0.25.2"
websockets = "^12.0"
websockets = "^14.1"
typing-extensions = "^4.9.0"
dataclasses-json = "^0.6.3"
aiohttp = "^3.9.1"
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# pip install -r requirements.txt

# standard libs
websockets==12.*
websockets==14.*
httpx==0.*
dataclasses-json==0.*
dataclasses==0.*
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -28,7 +28,7 @@
packages=find_packages(exclude=["tests"]),
install_requires=[
"httpx>=0.25.2",
"websockets>=12.0",
"websockets>=14.0",
"dataclasses-json>=0.6.3",
"typing_extensions>=4.9.0",
"aiohttp>=3.9.1",