Skip to content

Commit

Permalink
Add support for PyPy.
Browse files Browse the repository at this point in the history
PyPy3 is pending release of a fix for
https://bitbucket.org/pypy/pypy/issue/1946.
  • Loading branch information
tseaver committed Dec 24, 2014
1 parent 2023d84 commit 38edd7c
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,11 @@ python:
- 2.7
- 3.3
- 3.4
- pypy
# - pypy3
# pending release of a fix for https://bitbucket.org/pypy/pypy/issue/1946
install:
- pip install . --use-mirrors
- pip install .
script:
- python setup.py test -q
notifications:
Expand Down
3 changes: 3 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ CHANGES
2.0.0 (unreleased)
------------------

- Added support for PyPy. (PyPy3 is pending release of a fix for:
https://bitbucket.org/pypy/pypy/issue/1946)

- Add support for Python 3.4.

- Add support for testing on Travis.
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ def alltests():
'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
5 changes: 4 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
[tox]
envlist =
py26,py27,py33,py34
# pypy3 pending release of a fix for
# https://bitbucket.org/pypy/pypy/issue/1946
# py26,py27,py33,py34,pypy,pypy3
py26,py27,py33,py34,pypy

[testenv]
commands =
Expand Down

0 comments on commit 38edd7c

Please sign in to comment.