From f36a76af013f952b369686be393694cdfd11144f Mon Sep 17 00:00:00 2001 From: Tony Meyer Date: Fri, 12 Jan 2024 12:44:32 +1300 Subject: [PATCH 1/2] Remove the upper restrictions on the websockets dependency. --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 4813d2f4..b5a7bcc6 100644 --- a/setup.py +++ b/setup.py @@ -25,9 +25,9 @@ 'macaroonbakery>=1.1,<2.0', 'pyRFC3339>=1.0,<2.0', 'pyyaml>=5.1.2', - 'websockets>=8.1,<9.0 ; python_version=="3.8"', - 'websockets>=9.0,<10.0 ; python_version=="3.9"', - 'websockets>=10.0; python_version>"3.9"', + 'websockets>=8.1 ; python_version=="3.8"', + 'websockets>=9.0 ; python_version=="3.9"', + 'websockets>=10.0 ; python_version>"3.9"', 'paramiko>=2.4.0', 'pyasn1>=0.4.4', 'toposort>=1.5,<2', From f7aef302c30c0ba3ef74a649fd10ead31ade65b3 Mon Sep 17 00:00:00 2001 From: Tony Meyer Date: Tue, 16 Jan 2024 10:28:25 +1300 Subject: [PATCH 2/2] Simplify the requirement and rely on the resolver doing the right thing. --- setup.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/setup.py b/setup.py index b5a7bcc6..1a10222a 100644 --- a/setup.py +++ b/setup.py @@ -25,9 +25,7 @@ 'macaroonbakery>=1.1,<2.0', 'pyRFC3339>=1.0,<2.0', 'pyyaml>=5.1.2', - 'websockets>=8.1 ; python_version=="3.8"', - 'websockets>=9.0 ; python_version=="3.9"', - 'websockets>=10.0 ; python_version>"3.9"', + 'websockets>=8.1', 'paramiko>=2.4.0', 'pyasn1>=0.4.4', 'toposort>=1.5,<2',