From 2f3689588e5b7582ff06c63dd536e701502a41f3 Mon Sep 17 00:00:00 2001 From: grossmj Date: Sun, 22 Oct 2023 12:53:47 +1000 Subject: [PATCH] Fix httpx-ws dependency on Python 3.7 --- dev-requirements.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dev-requirements.txt b/dev-requirements.txt index ac6470e5..e1eff66a 100644 --- a/dev-requirements.txt +++ b/dev-requirements.txt @@ -4,4 +4,5 @@ pytest-timeout==2.1.0 pytest-asyncio==0.21.1 requests==2.31.0 httpx==0.24.1 -httpx_ws==0.4.2 +httpx-ws==0.3.1; python_version <= '3.7' +httpx_ws==0.4.2; python_version > '3.7'