Change the Tox configuration and setup.py to support Python 3.6 and 3.7
This commit is contained in:
parent
c1a6513314
commit
35be969259
2 changed files with 5 additions and 3 deletions
|
|
@ -23,5 +23,7 @@ setuptools.setup(
|
||||||
'Programming Language :: Python :: 3',
|
'Programming Language :: Python :: 3',
|
||||||
'Programming Language :: Python :: 3.4',
|
'Programming Language :: Python :: 3.4',
|
||||||
'Programming Language :: Python :: 3.5',
|
'Programming Language :: Python :: 3.5',
|
||||||
|
'Programming Language :: Python :: 3.6',
|
||||||
|
'Programming Language :: Python :: 3.7',
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[tox]
|
[tox]
|
||||||
envlist=py27,py34,py35
|
envlist = py27,py34,py35,py36,py37
|
||||||
|
|
||||||
[testenv]
|
[testenv]
|
||||||
commands=py.test {{ cookiecutter.package_name }}
|
commands = py.test {{ cookiecutter.package_name }}
|
||||||
deps=pytest
|
deps = pytest
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue