From d59c635a985a6e0bb7a73e55f4c8c49cc5a65b89 Mon Sep 17 00:00:00 2001 From: MichaelMKKelly <100048727+MichaelMKKelly@users.noreply.github.com> Date: Tue, 26 Nov 2024 22:08:32 +0000 Subject: [PATCH 1/2] allow v12 and v13 of websockets avoids dependency clash in downstream projects. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 796d84b..a87eb87 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -38,7 +38,7 @@ packages = [ [tool.poetry.dependencies] python = ">=3.8,<4" -websockets = "^12.0" +websockets = "websockets>=12.0,<14" aiohttp = "^3.7.4" msgpack = "^1.0.2" orjson = "^3.9.0" From 1e2541aed070de37bedd1c37e588c38c528e07dd Mon Sep 17 00:00:00 2001 From: MichaelMKKelly <100048727+MichaelMKKelly@users.noreply.github.com> Date: Wed, 27 Nov 2024 17:39:26 +0000 Subject: [PATCH 2/2] Update pyproject.toml --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index a87eb87..3ef6005 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -38,7 +38,7 @@ packages = [ [tool.poetry.dependencies] python = ">=3.8,<4" -websockets = "websockets>=12.0,<14" +websockets = ">=12.0,<14" aiohttp = "^3.7.4" msgpack = "^1.0.2" orjson = "^3.9.0"