Skip to content

Commit

Permalink
Add support for PyPy and PyPy3.
Browse files Browse the repository at this point in the history
  • Loading branch information
tseaver committed Dec 27, 2014
1 parent e35725f commit 2408d76
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .travis.yml
Expand Up @@ -5,6 +5,8 @@ python:
- 2.7
- 3.3
- 3.4
- pypy
- pypy3
install:
- pip install .
- pip install zope.error[test]
Expand Down
2 changes: 2 additions & 0 deletions CHANGES.rst
Expand Up @@ -5,6 +5,8 @@ CHANGES
4.2.0 (unreleased)
------------------

- Add support for PyPy and PyPy3.

- Add support for Python 3.4.


Expand Down
2 changes: 2 additions & 0 deletions setup.py
Expand Up @@ -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',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,5 +1,5 @@
[tox]
envlist = py26 py27,py33,py34
envlist = py26 py27,py33,py34,pypy,pypy3

[testenv]
commands =
Expand Down

0 comments on commit 2408d76

Please sign in to comment.