older aiohttp but newer astroid

This commit is contained in:
Lex Berezhny 2019-02-26 15:43:20 -05:00
parent 589768864a
commit f8d24d3402
2 changed files with 2 additions and 2 deletions

View file

@ -9,7 +9,7 @@ jobs:
- stage: code quality - stage: code quality
name: "pylint & mypy" name: "pylint & mypy"
install: 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 # newer astroid and aiohttp fails in pylint so we pre-install older version
- pip install pylint mypy - pip install pylint mypy
- pip install -e . - pip install -e .

View file

@ -9,7 +9,7 @@ with open(os.path.join(BASE, 'README.md'), encoding='utf-8') as fh:
long_description = fh.read() long_description = fh.read()
REQUIRES = [ 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 'cffi==1.12.1', # TODO: 1.12.2 fails on travis in wine
'coincurve==11.0.0', 'coincurve==11.0.0',
'pbkdf2==1.3', 'pbkdf2==1.3',