Add support for Python 3.6

This commit is contained in:
Karol Werner 2017-05-22 18:21:45 +02:00
parent c679d138ab
commit 2d92aa1f1e
2 changed files with 2 additions and 1 deletions

View File

@ -96,6 +96,7 @@ setup(
'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.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',
'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: Software Development :: Libraries :: Python Modules',
], ],
tests_require=['tox', 'virtualenv<14.0.0'], tests_require=['tox', 'virtualenv<14.0.0'],

View File

@ -1,7 +1,7 @@
[tox] [tox]
envlist = envlist =
flake8 flake8
py{26,27,32,33,34,35} py{26,27,32,33,34,35,36}
pypy pypy
[testenv] [testenv]