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()