update aiohttp and astroid requirement

pylint 2.3.0 fixes aiohttp failure
This commit is contained in:
Jack Robison 2019-02-28 11:56:39 -05:00
parent b86d2e6e73
commit 569ac502ed
No known key found for this signature in database
GPG key ID: DF25C68FE0239BB2
2 changed files with 1 additions and 3 deletions

View file

@ -9,8 +9,6 @@ jobs:
- stage: code quality - stage: code quality
name: "pylint & mypy" name: "pylint & mypy"
install: install:
- 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 pylint mypy
- pip install -e . - pip install -e .
script: script:

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', # more recent version of aiohttp break with pylint/astroid 'aiohttp==3.5.4',
'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',