Merge pull request #15 from laurent-laporte-pro/feature/tox_36_37

Support for Python 3.6 and 3.7
This commit is contained in:
Louis Taylor 2018-10-06 15:36:26 +01:00 committed by GitHub
commit aeeca1565c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 3 deletions

View file

@ -36,5 +36,7 @@ setup(
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)

View file

@ -1,6 +1,6 @@
[tox]
envlist=py27,py34,py35
envlist = py27,py34,py35,py36,py37
[testenv]
commands=py.test {{ cookiecutter.package_name }}
deps=pytest
commands = py.test {{ cookiecutter.package_name }}
deps = pytest