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 26, 2014
1 parent 2dacff7 commit 62a85d4
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ python:
- 3.2
- 3.3
- 3.4
- pypy
- pypy3
install:
- pip install .
script:
Expand Down
2 changes: 2 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ Changes
4.1.0 (unreleased)
------------------

- Add support for PyPy and PyPy3.

- Add support for Python 3.4.

- Add support for testing on Travis.
Expand Down
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ def read(*rnames):
'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',
'Operating System :: OS Independent',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py26,py27,py32,py33,py34
envlist = py26,py27,py32,py33,py34,pypy,pypy3

[testenv]
commands = python setup.py test -q
Expand Down

0 comments on commit 62a85d4

Please sign in to comment.