From ec518ce1b27d886bb74c6565409e4281d89cda1d Mon Sep 17 00:00:00 2001 From: belikor Date: Sun, 11 Jul 2021 01:03:14 -0500 Subject: [PATCH] setup.py: use `aiohttp==3.6.2` instead of `aiohttp==3.5.4` As reported in issue #2769, the `lbrynet` daemon doesn't respond correctly when it is compiled against Python 3.8+, only with Python 3.7. Instead of using `aiohttp==3.5.4` which was released on January 12, 2019, we use `aiohttp=3.6.2` which was released October 9, 2019, and is available in Ubuntu 20.04. By using this newer version, the RCP server seems to work correctly both with Python 3.8 and 3.9. We could also try a newer version, like `3.7.4` as it was launched on February 25, 2021, and is available in Arch. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 2838b1f7f1..66c7d11214 100644 --- a/setup.py +++ b/setup.py @@ -34,7 +34,7 @@ ], }, install_requires=[ - 'aiohttp==3.5.4', + 'aiohttp==3.6.2', 'aioupnp==0.0.18', 'appdirs==1.4.3', 'certifi>=2018.11.29',