Merge pull request #40 from adamchainz/python_35

Add Python 3.5 support
This commit is contained in:
Vineet Naik 2016-02-16 09:15:21 +05:30
commit 4e564f7947
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