Skip to content

Commit

Permalink
fix(dependencies): require aiohttp for version >3.5 (#602)
Browse files Browse the repository at this point in the history
  • Loading branch information
crwilcox committed Sep 15, 2020
1 parent 42420b5 commit 188f549
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"grpcio",
]

ASYNC_DEPENDENCIES = ["pytest-asyncio", "aioresponses", "aiohttp"]
ASYNC_DEPENDENCIES = ["pytest-asyncio", "aioresponses"]

BLACK_VERSION = "black==19.3b0"
BLACK_PATHS = [
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"',
)


Expand Down

0 comments on commit 188f549

Please sign in to comment.