commit | 05f95246fab928fe2f445781117eeac8088497fb | [log] [tgz] |
---|---|---|
author | Tres Seaver <tseaver@palladion.com> | Mon Oct 26 20:52:11 2020 -0400 |
committer | GitHub <noreply@github.com> | Tue Oct 27 00:52:11 2020 +0000 |
tree | 784dcf70b4c298157e76c0de089215f4f13cba30 | |
parent | 5906c8583ca351b5385a079a30521a9a8a0c7c59 [diff] [blame] |
fix: pin 'aoihttp < 3.7.0dev' (#634) Working around breaking change in 3.7.0. See: https://github.com/pnuckowski/aioresponses/issues/173
diff --git a/noxfile.py b/noxfile.py index b92f493..3888144 100644 --- a/noxfile.py +++ b/noxfile.py
@@ -30,7 +30,12 @@ "grpcio", ] -ASYNC_DEPENDENCIES = ["pytest-asyncio", "aioresponses", "asynctest"] +ASYNC_DEPENDENCIES = [ + "pytest-asyncio", + "aiohttp < 3.7.0dev", + "aioresponses", + "asynctest", +] BLACK_VERSION = "black==19.3b0" BLACK_PATHS = [