From d2640154b1fe6962908b7aa27475bb67bb350ea8 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 08ca4b9d59..670be1251e 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',