From 188f549ef938a4d3bd11b4172154933dacbf0d56 Mon Sep 17 00:00:00 2001 From: Christopher Wilcox Date: Tue, 15 Sep 2020 16:45:00 -0700 Subject: [PATCH] fix(dependencies): require aiohttp for version >3.5 (#602) --- noxfile.py | 2 +- setup.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index 7d42e60ac..d497f5305 100644 --- a/noxfile.py +++ b/noxfile.py @@ -30,7 +30,7 @@ "grpcio", ] -ASYNC_DEPENDENCIES = ["pytest-asyncio", "aioresponses", "aiohttp"] +ASYNC_DEPENDENCIES = ["pytest-asyncio", "aioresponses"] BLACK_VERSION = "black==19.3b0" BLACK_PATHS = [ diff --git a/setup.py b/setup.py index 6a70fca18..beacbb6c4 100644 --- a/setup.py +++ b/setup.py @@ -27,6 +27,7 @@ 'rsa>=3.1.4,<5; python_version >= "3.5"', "setuptools>=40.3.0", "six>=1.9.0", + 'aiohttp >= 3.6.2, < 4.0.0dev; python_version>="3.5"', )