Merge pull request #252 from Pylons/feature/removepy32

Feature: Remove py32
This commit is contained in:
Michael Merickel
2016-02-23 21:19:08 -06:00
5 changed files with 28 additions and 28 deletions

1
.gitignore vendored
View File

@@ -8,6 +8,7 @@
*.swp
.coverage
.tox/
py*-cover.xml
coverage-*.xml
nosetests*.xml
env26/

View File

@@ -8,8 +8,6 @@ matrix:
env: TOXENV=py26
- python: 2.7
env: TOXENV=py27
- python: 3.2
env: TOXENV=py32
- python: 3.3
env: TOXENV=py33
- python: 3.4

View File

@@ -132,3 +132,4 @@ Contributors
- Dmitry Bogun, 2015/09/10
- Tinne Cahy, 2015/12/22
- Antti Haapala, 2016/01/17
- Bert JW Regeer, 2016/02/16

View File

@@ -51,7 +51,6 @@ setup(name='colander',
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
@@ -73,4 +72,3 @@ setup(name='colander',
'docs': docs_extras,
},
)

16
tox.ini
View File

@@ -1,6 +1,6 @@
[tox]
envlist =
py26,py27,py32,py33,py34,py35,pypy,pypy3,
py26,py27,py33,py34,py35,pypy,pypy3,
docs,
{py2,py3}-cover,coverage
@@ -10,7 +10,6 @@ envlist =
basepython =
py26: python2.6
py27: python2.7
py32: python3.2
py33: python3.3
py34: python3.4
py35: python3.5
@@ -33,19 +32,22 @@ commands =
# we separate coverage into its own testenv because a) "last run wins" wrt
# cobertura jenkins reporting and b) pypy and jython can't handle any
# combination of versions of coverage and nosexcover that i can find.
[testenv:py2-cover]
[py-cover]
commands =
pip install colander[testing]
coverage run --source=colander {envbindir}/nosetests
coverage xml -o coverage-py2.xml
coverage xml -o {envname}.xml
[testenv:py2-cover]
commands =
{[py-cover]commands}
setenv =
COVERAGE_FILE=.coverage.py2
[testenv:py3-cover]
commands =
pip install colander[testing]
coverage run --source=colander {envbindir}/nosetests
coverage xml -o coverage-py3.xml
{[py-cover]commands}
setenv =
COVERAGE_FILE=.coverage.py3