From b37697053b5582e4fa835bef9f88c391d744615f Mon Sep 17 00:00:00 2001 From: Sachin Rudraraju Date: Tue, 26 Nov 2024 10:32:47 -0500 Subject: [PATCH] upgrade websockets --- pyproject.toml | 2 +- requirements.txt | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 34893aac..54ce43ea 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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" diff --git a/requirements.txt b/requirements.txt index 53571822..d6fb56bb 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,7 @@ # pip install -r requirements.txt # standard libs -websockets==12.* +websockets==14.* httpx==0.* dataclasses-json==0.* dataclasses==0.* diff --git a/setup.py b/setup.py index 3d844162..4f13cccc 100644 --- a/setup.py +++ b/setup.py @@ -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",