Skip to content

Commit

Permalink
setup.py: use aiohttp==3.6.2 instead of aiohttp==3.5.4
Browse files Browse the repository at this point in the history
As reported in issue lbryio#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.
  • Loading branch information
belikor committed Jul 11, 2021
1 parent 8c79740 commit 692c8cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 692c8cd

Please sign in to comment.