Skip to content

Commit

Permalink
Add python 3.7 support
Browse files Browse the repository at this point in the history
  • Loading branch information
ethe committed Mar 16, 2019
1 parent 464ee79 commit d25ec20
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ matrix:
env: TOXENV=py35
- python: 3.6
env: TOXENV=py36
- python: 3.7
env: TOXENV=py37

install:
- pip install tox
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Utilities',
'Topic :: Software Development :: Libraries :: Python Modules',
]
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[tox]
envlist = py{27,34,35,36}
envlist = py{27,34,35,36,37}

[testenv]
usedevelop = true
deps =
pytest
pytest-cov
py27: -r{toxinidir}/test_requirements_py27.txt
py{34,35,36}: -r{toxinidir}/test_requirements_py3x.txt
py{34,35,36,37}: -r{toxinidir}/test_requirements_py3x.txt
commands = python -m pytest -sx tests --cov gunicorn_thrift --cov-report term-missing

0 comments on commit d25ec20

Please sign in to comment.