Skip to content

Commit

Permalink
Add PyPy2 support.
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Howitz committed Sep 7, 2017
1 parent feaea9e commit 059dc87
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 2 deletions.
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.4
- 3.5
- 3.6
- pypy
install:
- pip install -U pip setuptools
- pip install -U coverage coveralls zope.testrunner
Expand Down
2 changes: 1 addition & 1 deletion CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ CHANGES
3.5 (unreleased)
----------------

- Add support for Python 3.6.
- Add support for Python 3.6 and PyPy2.

- Drop support for Python 3.3.

Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ def alltests():
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Natural Language :: English',
'Operating System :: OS Independent',
'Topic :: Internet :: WWW/HTTP',
Expand Down
1 change: 1 addition & 0 deletions src/z3c/form/testing.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@
(re.compile("u('.*?')"), r"\1"),
(re.compile("b('.*?')"), r"\1"),
(re.compile("__builtin__"), r"builtins"),
(re.compile("<builtins\."), r"<"),
(re.compile("<type"), r"<class"),
(re.compile("set\(\[(.*?)\]\)"), r"{\1}"),
)
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,py34,py35,py36,coverage
py27,py34,py35,py36,pypy,coverage

[testenv]
commands =
Expand Down

0 comments on commit 059dc87

Please sign in to comment.