Added Python-3.5 and Django-1.9 to test suites. Refs #112, refs #113.

This commit is contained in:
Benoît Bryon 2016-03-14 15:22:48 +01:00
parent 1ec890fb20
commit a3203f2298
2 changed files with 8 additions and 5 deletions

View file

@ -42,6 +42,7 @@ CLASSIFIERS = [
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
]
KEYWORDS = ['file',
'stream',

12
tox.ini
View file

@ -1,17 +1,19 @@
[tox]
envlist = py{27,33,34}-django{15,16,17,18}, flake8, sphinx, readme
envlist = py{27}-django{15,16,17,18,19}, py{33,34}-django{15,16,17}, py{34,35}-django{18,19}, flake8, sphinx, readme
[testenv]
basepython =
py27: python2.7
py33: python3.3
py34: python3.4
py35: python3.5
deps =
coverage
django15: Django>=1.5,<1.6
django16: Django>=1.6,<1.7
django17: Django>=1.7,<1.8
django18: Django>=1.8,<1.9
django19: Django>=1.9,<1.10
nose
py27: mock
commands =
@ -22,14 +24,14 @@ commands =
pip freeze
[testenv:flake8]
basepython = python2.7
basepython = python3.5
deps =
flake8
commands =
flake8 demo django_downloadview tests
[testenv:sphinx]
basepython = python2.7
basepython = python3.5
deps =
Sphinx
commands =
@ -39,7 +41,7 @@ whitelist_externals =
make
[testenv:readme]
basepython = python2.7
basepython = python3.5
deps =
docutils
pygments
@ -51,7 +53,7 @@ whitelist_externals =
mkdir
[testenv:release]
basepython = python2.7
basepython = python3.5
deps =
wheel
zest.releaser