From b2a42874057779beab1ba01b7be80da4749c4654 Mon Sep 17 00:00:00 2001 From: Daniel Grossmann-Kavanagh Date: Wed, 9 Jan 2019 23:51:27 -0800 Subject: [PATCH] set max aiohttp version to 3.5.1 (until build is fixed) (#844) --- requirements-aiohttp.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements-aiohttp.txt b/requirements-aiohttp.txt index c3e1857e0..da90e9ddf 100644 --- a/requirements-aiohttp.txt +++ b/requirements-aiohttp.txt @@ -1,4 +1,4 @@ -aiohttp>=2.2.5 +aiohttp>=2.2.5,<3.5.2 aiohttp-swagger>=1.0.5 ujson>=1.35 aiohttp_jinja2==0.15.0 diff --git a/setup.py b/setup.py index c3df59960..21007363e 100755 --- a/setup.py +++ b/setup.py @@ -35,7 +35,7 @@ def read_version(package): swagger_ui_require = 'swagger-ui-bundle>=0.0.2' flask_require = 'flask>=0.10.1' aiohttp_require = [ - 'aiohttp>=2.3.10', + 'aiohttp>=2.3.10,<3.5.2', 'aiohttp-jinja2>=0.14.0' ] ujson_require = 'ujson>=1.35'