test on py36

This commit is contained in:
Michael Merickel 2017-01-31 23:31:57 -06:00
parent 713b8807f1
commit 67cd405225
4 changed files with 7 additions and 1 deletions

View File

@ -12,6 +12,8 @@ matrix:
env: TOXENV=py34
- python: 3.5
env: TOXENV=py35
- python: 3.6
env: TOXENV=py36
- python: pypy
env: TOXENV=pypy
- python: 3.5

View File

@ -1,6 +1,8 @@
unreleased
==========
- Python 3.6 support.
- Allow deferred schema nodes.
See https://github.com/Pylons/colander/pull/280

View File

@ -53,6 +53,7 @@ setup(name='colander',
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
],

View File

@ -1,6 +1,6 @@
[tox]
envlist =
py27,py33,py34,py35,pypy,
py27,py33,py34,py35,py36,pypy,
docs,
{py2,py3}-cover,coverage
@ -12,6 +12,7 @@ basepython =
py33: python3.3
py34: python3.4
py35: python3.5
py36: python3.6
pypy: pypy
py2: python2.7
py3: python3.5