Skip to content

Commit a49c356

Browse files
committed
Added Python 3.7 support
1 parent 63e729f commit a49c356

3 files changed

Lines changed: 4 additions & 2 deletions

File tree

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ matrix:
77
python: 3.5
88
- env: TOXENV=py36
99
python: 3.6
10+
- env: TOXENV=py37
11+
python: 3.7-dev
1012
- env: TOXENV=pypy
1113
python: pypy-5.7.1
1214
install: pip install coveralls tox

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
# quickfix to prevent pycodestyle conflicts
2828
'flake8!=2.5.3',
2929
'autopep8>=1.3',
30-
'pyyaml',
30+
'pyyaml>=4.2b4',
3131
'six',
3232
],
3333
entry_points={

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
# These should match the travis env list
3-
envlist = py27,py35,py36,pypy
3+
envlist = py27,py35,py36,py37,pypy
44

55
[testenv]
66
deps = -rrequirements-dev.txt

0 commit comments

Comments
 (0)