From: tierno Date: Wed, 28 Oct 2020 10:14:36 +0000 (+0000) Subject: fix 1272. Fixing aiohttp version to 3.6.2 X-Git-Tag: v8.0.3~1 X-Git-Url: https://osm.etsi.org/gitweb/?a=commitdiff_plain;h=refs%2Fchanges%2F22%2F9922%2F1;p=osm%2FNBI.git fix 1272. Fixing aiohttp version to 3.6.2 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 --- diff --git a/requirements.txt b/requirements.txt index f0a2cc2..0e7da5d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -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 diff --git a/setup.py b/setup.py index f9a2197..55ca03b 100644 --- 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'], )