Skip to content

Commit

Permalink
Add support for PyPy.
Browse files Browse the repository at this point in the history
modified:   .travis.yml
modified:   CHANGES.rst
modified:   setup.py
modified:   tox.ini
  • Loading branch information
jugmac00 committed Nov 19, 2019
1 parent ed8c826 commit 612cbb5
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Expand Up @@ -5,6 +5,8 @@ python:
- 3.6
- 3.7
- 3.8
- pypy
- pypy3
install:
- pip install --upgrade setuptools
- pip install --upgrade zc.buildout
Expand Down
4 changes: 2 additions & 2 deletions CHANGES.rst
Expand Up @@ -5,9 +5,9 @@ CHANGES
2.0 (unreleased)
------------------

- Drop support for Python 2.6, 3.2, 3.3
- Drop support for Python 2.6, 3.2, 3.3.

- Add support for Python 3.5, 3.6, 3.7, 3.8.
- Add support for Python 3.5, 3.6, 3.7, 3.8, PyPy, PyPy3.


1.1.2 (2014-02-21)
Expand Down
2 changes: 2 additions & 0 deletions setup.py
Expand Up @@ -33,6 +33,8 @@
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
],
packages=find_packages(),
namespace_packages=["zc", "zc.recipe"],
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,6 +1,6 @@
[tox]
envlist =
py27,py35,py36,py37,py38
py27,py35,py36,py37,py38,pypy,pypy3

[testenv]
deps =
Expand Down

0 comments on commit 612cbb5

Please sign in to comment.