Note explicit support for Python 3.5

This commit is contained in:
Felix Yan
2016-05-20 13:42:47 +08:00
parent db03b606fe
commit 3b516c98e3
3 changed files with 3 additions and 1 deletions

View File

@@ -5,6 +5,7 @@ python:
#- 3.2 #- 3.2
- 3.3 - 3.3
- 3.4 - 3.4
- 3.5
install: pip install -r requirements/test.txt install: pip install -r requirements/test.txt
script: script:
- nosetests --with-cov --cover-package=ddt - nosetests --with-cov --cover-package=ddt

View File

@@ -24,6 +24,7 @@ setup(
'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.4',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development :: Testing', 'Topic :: Software Development :: Testing',
], ],
) )

View File

@@ -1,5 +1,5 @@
[tox] [tox]
envlist = py27, py33, py34 envlist = py27, py33, py34, py35
[testenv] [testenv]
deps = deps =