From f8d24d34021a739ded5e7b9ac1256094984d1539 Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Tue, 26 Feb 2019 15:43:20 -0500 Subject: [PATCH] older aiohttp but newer astroid --- .travis.yml | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 8fe7ff2fc..0119a03ca 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,7 +9,7 @@ jobs: - stage: code quality name: "pylint & mypy" install: - #- pip install astroid==2.0.4 aiohttp==3.4.4 + #- pip install astroid==2.0.4 # newer astroid and aiohttp fails in pylint so we pre-install older version - pip install pylint mypy - pip install -e . diff --git a/setup.py b/setup.py index adee3235c..7460ef845 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ with open(os.path.join(BASE, 'README.md'), encoding='utf-8') as fh: long_description = fh.read() REQUIRES = [ - 'aiohttp',#==3.4.4', + 'aiohttp==3.4.4', # more recent version of aiohttp break with pylint/astroid 'cffi==1.12.1', # TODO: 1.12.2 fails on travis in wine 'coincurve==11.0.0', 'pbkdf2==1.3',