fix 1272. Fixing aiohttp version to 3.6.2 22/9922/1
authortierno <alfonso.tiernosepulveda@telefonica.com>
Wed, 28 Oct 2020 10:14:36 +0000 (10:14 +0000)
committertierno <alfonso.tiernosepulveda@telefonica.com>
Wed, 28 Oct 2020 10:14:36 +0000 (10:14 +0000)
library aioresponses 0.7.0 used only by unittests is failing
with the aiohttp version 3.7.x

Change-Id: Ic15dcaaf60b17a4c83b2c0ed6563eaa9cd0a4d98
Signed-off-by: tierno <alfonso.tiernosepulveda@telefonica.com>
requirements.txt
setup.py

index f0a2cc2..0e7da5d 100644 (file)
@@ -17,4 +17,4 @@ python-keystoneclient
 requests
 git+https://osm.etsi.org/gerrit/osm/common.git@v8.0#egg=osm-common
 git+https://osm.etsi.org/gerrit/osm/IM.git@v8.0#egg=osm-im
-aiohttp>=2.3.10
+aiohttp>=2.3.10,<=3.6.2
index f9a2197..55ca03b 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -55,7 +55,7 @@ setup(
         'osm-im @ git+https://osm.etsi.org/gerrit/osm/IM.git@v8.0#egg=osm-im',
         'python-keystoneclient',
         'requests',
-        'aiohttp>=2.3.10',
+        'aiohttp>=2.3.10,<=3.6.2',
     ],
     setup_requires=['setuptools-version-command'],
 )