Tres Seaver
2014-12-12 7b0a91acdc293d1265eea5f9c08607e5bc6a5a47
Add support for Python 3.4, PyPy3.
3 files modified
6 ■■■■ changed files
CHANGES.rst 2 ●●●●● patch | view | raw | blame | history
setup.py 2 ●●●●● patch | view | raw | blame | history
tox.ini 2 ●●● patch | view | raw | blame | history
CHANGES.rst
@@ -4,6 +4,8 @@
Unreleased
----------
- Add support for Python 3.4, PyPy3.
- middleware:  avoid UnboundLocalError when wrapped generater yields no
  items.  See:  http://bugs.repoze.org/issue184
setup.py
@@ -29,6 +29,7 @@
                   'framework for WSGI.'),
      long_description='\n\n'.join([README, CHANGES]),
      classifiers=[
        "Development Status :: 5 - Production/Stable",
        "Intended Audience :: Developers",
        "Programming Language :: Python :: 2",
        "Programming Language :: Python :: 2.6",
@@ -36,6 +37,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",
        "Topic :: Internet :: WWW/HTTP",
tox.ini
@@ -1,6 +1,6 @@
[tox]
envlist = 
    py26,py27,py32,py33,pypy,cover,docs
    py26,py27,pypy,py32,py33,py34,pypy3,cover,docs
[testenv]
commands =