Add Python 3.5 support

This commit is contained in:
Adam Chainz 2016-01-28 17:06:16 +00:00
parent 474ce66ac5
commit 275335df3e
3 changed files with 5 additions and 3 deletions

View File

@ -7,6 +7,7 @@ python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
before_install:
- pip install -U pip>=8.0.2
- make test-env

View File

@ -47,6 +47,7 @@ setup(
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4'
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
]
)

View File

@ -4,7 +4,7 @@
# and then run "tox" from this directory.
[tox]
envlist = py26, py27, py32, py33, py34
envlist = py26, py27, py32, py33, py34, py35
[testenv]
commands =
@ -12,4 +12,4 @@ commands =
deps =
pip>=8.0.2
pytest
pytest-cov
pytest-cov