Add support for Python 3.6

This commit is contained in:
Marc Abramowitz
2017-02-19 10:52:46 -08:00
parent 26c2f38569
commit 210f4205c7
3 changed files with 5 additions and 1 deletions

View File

@@ -5,6 +5,7 @@ env:
- TOXENV=py33 - TOXENV=py33
- TOXENV=py34 - TOXENV=py34
- TOXENV=py35 - TOXENV=py35
- TOXENV=py36
- TOXENV=pypy - TOXENV=pypy
- TOXENV=flake8 - TOXENV=flake8
- TOXENV=coverage - TOXENV=coverage

View File

@@ -18,6 +18,9 @@ classifier =
Programming Language :: Python :: 2.7 Programming Language :: Python :: 2.7
Programming Language :: Python :: 3 Programming Language :: Python :: 3
Programming Language :: Python :: 3.3 Programming Language :: Python :: 3.3
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
test_suite = requests_unixsocket.tests test_suite = requests_unixsocket.tests
[files] [files]

View File

@@ -1,5 +1,5 @@
[tox] [tox]
envlist = py27, py33, py34, py35, pypy, flake8 envlist = py27, py33, py34, py35, py36, pypy, flake8
[testenv] [testenv]
commands = py.test {posargs:requests_unixsocket/tests} commands = py.test {posargs:requests_unixsocket/tests}