Skip to content

Commit

Permalink
Claim PyPy support
Browse files Browse the repository at this point in the history
Closes #7.

NB: pypy3 doesn't work, because it implements Python 3.2, and reportlab
wants 3.3+.
  • Loading branch information
mgedmin committed Nov 12, 2015
1 parent 42cb052 commit 0b74a7e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ python:
- 3.3
- 3.4
- 3.5
- pypy
install:
- travis_retry pip install coverage coveralls -e .
script:
Expand Down
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
],
license='GPL',

Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py27,py33,py34,py35
py27,py33,py34,py35,pypy

[testenv]
passenv =
Expand Down

0 comments on commit 0b74a7e

Please sign in to comment.