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/setup.py b/setup.py index 522b981..16c2779 100644 --- a/setup.py +++ b/setup.py
@@ -29,7 +29,7 @@ "six>=1.9.0", ) -extras = {"aiohttp": "aiohttp >= 3.6.2, < 4.0.0dev; python_version>='3.6'"} +extras = {"aiohttp": "aiohttp >= 3.6.2, < 3.7.0dev; python_version>='3.6'"} with io.open("README.rst", "r") as fh: long_description = fh.read()