Skip to content

Commit

Permalink
Add testing for Python 3.7 to Travis CI
Browse files Browse the repository at this point in the history
Update tox.ini to enumerate and test supported Pythons.
  • Loading branch information
jdufresne committed Sep 7, 2018
1 parent 763c7de commit 86fa4c0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ matrix:
env: TOXENV=py35
- python: 3.6
env: TOXENV=py36
- python: 3.7
env: TOXENV=py37
dist: xenial
sudo: true
- python: pypy
env: TOXENV=pypy
- env: TOXENV=docstrings
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ def get_long_description():
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Quality Assurance',
],
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py26,py27,py33,py34,py35,py36,flake8
py27,py34,py35,py36,py37,flake8

[testenv]
deps =
Expand Down

0 comments on commit 86fa4c0

Please sign in to comment.