Added Python 3.7 support

This commit is contained in:
Daniele Esposti 2018-07-05 22:39:48 +01:00
parent 63e729fcc7
commit a49c356f63
3 changed files with 4 additions and 2 deletions

View file

@ -7,6 +7,8 @@ matrix:
python: 3.5 python: 3.5
- env: TOXENV=py36 - env: TOXENV=py36
python: 3.6 python: 3.6
- env: TOXENV=py37
python: 3.7-dev
- env: TOXENV=pypy - env: TOXENV=pypy
python: pypy-5.7.1 python: pypy-5.7.1
install: pip install coveralls tox install: pip install coveralls tox

View file

@ -27,7 +27,7 @@ setup(
# quickfix to prevent pycodestyle conflicts # quickfix to prevent pycodestyle conflicts
'flake8!=2.5.3', 'flake8!=2.5.3',
'autopep8>=1.3', 'autopep8>=1.3',
'pyyaml', 'pyyaml>=4.2b4',
'six', 'six',
], ],
entry_points={ entry_points={

View file

@ -1,6 +1,6 @@
[tox] [tox]
# These should match the travis env list # These should match the travis env list
envlist = py27,py35,py36,pypy envlist = py27,py35,py36,py37,pypy
[testenv] [testenv]
deps = -rrequirements-dev.txt deps = -rrequirements-dev.txt