Browse code

require aiohttp version 3

We assume that websocket.send is a coroutine. This is only true as
of 3.0. We will also need low-level web app runners for the CLI,
which are also only available as of 3.0.

Joseph Weston authored on 25/02/2018 21:08:10
Showing 1 changed files
... ...
@@ -27,7 +27,7 @@ if sys.version_info < (3, 6):
27 27
 requirements = [
28 28
     'decorator',
29 29
     'structlog',
30
-    'aiohttp',
30
+    'aiohttp>=3.0',
31 31
     'termcolor',
32 32
 ]
33 33