diff options
author | mathieui <mathieui@mathieui.net> | 2019-10-18 19:27:24 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2019-10-18 19:27:24 +0200 |
commit | 73a953b6444218d34d29b7917de30e6d52626c20 (patch) | |
tree | 90dd49205698559ac98f39ea50616cc6b46ea597 | |
parent | 8ee9abdd69da42ed6080b8aad4687d2261cafc11 (diff) | |
download | poezio-73a953b6444218d34d29b7917de30e6d52626c20.tar.gz poezio-73a953b6444218d34d29b7917de30e6d52626c20.tar.bz2 poezio-73a953b6444218d34d29b7917de30e6d52626c20.tar.xz poezio-73a953b6444218d34d29b7917de30e6d52626c20.zip |
Fix aiohttp requirement for python < 3.6
-rw-r--r-- | requirements-plugins.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/requirements-plugins.txt b/requirements-plugins.txt index c50dbf31..1b523929 100644 --- a/requirements-plugins.txt +++ b/requirements-plugins.txt @@ -1,5 +1,6 @@ git+https://github.com/afflux/pure-python-otr.git#egg=python-potr pyinotify python-mpd2 -aiohttp +aiohttp<4 ; python_version <= '3.5' +aiohttp ; python_version > '3.5' pygments |