Skip to content

Commit b790e65

Browse files
fix(deps): Revert "fix: pin 'aoihttp < 3.7.0dev' (#634)" (#632) (#640)
This reverts commit 05f9524. The compatibility bug was fixed in the aioresponses package version 0.7.1 - https://pypi.org/project/aioresponses/ Fixes #632
1 parent 0323cf3 commit b790e65

File tree

3 files changed

+3
-8
lines changed

3 files changed

+3
-8
lines changed

noxfile.py

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,7 @@
3030
"grpcio",
3131
]
3232

33-
ASYNC_DEPENDENCIES = [
34-
"pytest-asyncio",
35-
"aiohttp < 3.7.0dev",
36-
"aioresponses",
37-
"asynctest",
38-
]
33+
ASYNC_DEPENDENCIES = ["pytest-asyncio", "aioresponses", "asynctest"]
3934

4035
BLACK_VERSION = "black==19.3b0"
4136
BLACK_PATHS = [

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"six>=1.9.0",
3030
)
3131

32-
extras = {"aiohttp": "aiohttp >= 3.6.2, < 3.7.0dev; python_version>='3.6'"}
32+
extras = {"aiohttp": "aiohttp >= 3.6.2, < 4.0.0dev; python_version>='3.6'"}
3333

3434
with io.open("README.rst", "r") as fh:
3535
long_description = fh.read()

system_tests/noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ def configure_cloud_sdk(session, application_default_credentials, project=False)
168168

169169
# Test sesssions
170170

171-
TEST_DEPENDENCIES_ASYNC = ["aiohttp < 3.7.0dev", "pytest-asyncio", "nest-asyncio"]
171+
TEST_DEPENDENCIES_ASYNC = ["aiohttp", "pytest-asyncio", "nest-asyncio"]
172172
TEST_DEPENDENCIES_SYNC = ["pytest", "requests"]
173173
PYTHON_VERSIONS_ASYNC = ["3.7"]
174174
PYTHON_VERSIONS_SYNC = ["2.7", "3.7"]

0 commit comments

Comments
 (0)