Add explicit support (and tests) for Python 3.4 and PyPy3.

This commit is contained in:
Tres Seaver
2014-11-26 11:03:43 -05:00
parent b354a5b327
commit b6ca0f9816
3 changed files with 8 additions and 2 deletions

View File

@@ -1,6 +1,11 @@
Unreleased
----------
Platform
--------
- Addd explicit support for Python 3.4 and PyPy3.
Bug Fixes
~~~~~~~~~

View File

@@ -43,12 +43,13 @@ setup(name='colander',
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"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 :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
],

View File

@@ -1,6 +1,6 @@
[tox]
envlist =
py26,py27,py32,py33,pypy,cover,docs
py26,py27,py32,py33,py34,pypy,pypy3,cover,docs
[testenv]
commands =