From 2408d762de2df6d79a9e1064a412990ed503a030 Mon Sep 17 00:00:00 2001 From: Tres Seaver Date: Sat, 27 Dec 2014 13:38:02 -0500 Subject: [PATCH] Add support for PyPy and PyPy3. --- .travis.yml | 2 ++ CHANGES.rst | 2 ++ setup.py | 2 ++ tox.ini | 2 +- 4 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 5953a74..d036f12 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,6 +5,8 @@ python: - 2.7 - 3.3 - 3.4 + - pypy + - pypy3 install: - pip install . - pip install zope.error[test] diff --git a/CHANGES.rst b/CHANGES.rst index 81af072..38fcf57 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -5,6 +5,8 @@ CHANGES 4.2.0 (unreleased) ------------------ +- Add support for PyPy and PyPy3. + - Add support for Python 3.4. diff --git a/setup.py b/setup.py index 6426f9d..6ca112c 100644 --- a/setup.py +++ b/setup.py @@ -48,9 +48,11 @@ def read(*rnames): 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: Implementation :: CPython', + 'Programming Language :: Python :: Implementation :: PyPy', 'Natural Language :: English', 'Operating System :: OS Independent', 'Topic :: Internet :: WWW/HTTP', diff --git a/tox.ini b/tox.ini index 4efdbc4..436ca4a 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py26 py27,py33,py34 +envlist = py26 py27,py33,py34,pypy,pypy3 [testenv] commands =