diff options
author | Paul Belanger <pabelanger@redhat.com> | 2018-02-12 11:52:24 -0500 |
---|---|---|
committer | Paul Belanger <pabelanger@redhat.com> | 2018-02-12 11:52:24 -0500 |
commit | f7dc0bbf47a94cf4e8e7a58d91bf6400f00ee382 (patch) | |
tree | d84b326e032af1f4ef6bd71724283207236fa333 /requirements.txt | |
parent | 40f0c70e873b70666026da9c8917c605d3ec1fd8 (diff) | |
download | zuul-f7dc0bbf47a94cf4e8e7a58d91bf6400f00ee382.tar.gz |
Cap aiohttp <3.0.0
This is to work around the following issue:
aiohttp requires Python '>=3.5.3' but the running Python is 3.5.2
Which is breaking builds on Ubuntu Xenial.
Change-Id: I656f4e37a12159b60154cd868a5416c6af3e3139
Signed-off-by: Paul Belanger <pabelanger@redhat.com>
Diffstat (limited to 'requirements.txt')
-rw-r--r-- | requirements.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/requirements.txt b/requirements.txt index f24f19562..7057c5a99 100644 --- a/requirements.txt +++ b/requirements.txt @@ -25,6 +25,6 @@ cryptography>=1.6 cachecontrol pyjwt iso8601 -aiohttp +aiohttp<3.0.0 uvloop;python_version>='3.5' psutil |