Skip to content

Commit

Permalink
Support Python 3.6, PyPy2.7 an PyPy3.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Howitz committed Feb 4, 2017
1 parent 1591831 commit 76dfc1e
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 2 deletions.
14 changes: 13 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,22 @@ python:
- 3.3
- 3.4
- 3.5
- 3.6
- pypy2-5.6.0
- pypy3.3-5.2-alpha1
env:
- ENVIRON=py
- ENVIRON=flake8,docs
matrix:
exclude:
- env: ENVIRON=flake8,docs
include:
- python: "3.6"
env: ENVIRON=flake8,docs
install:
- pip install tox
script:
- tox -e py${TRAVIS_PYTHON_VERSION//[.]/}
- tox -e $ENVIRON
# Alternative: use buildout instead of tox
#install:
# - python bootstrap.py
Expand Down
2 changes: 2 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ CHANGES

- Add `controls` property to Form class to list all form controls.

- Support Python 3.6, PyPy2.7 an PyPy3.3.


5.1 (2017-01-31)
----------------
Expand Down
5 changes: 5 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,15 @@
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: Zope Public License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development :: Testing',
'Topic :: Internet :: WWW/HTTP',
],
Expand Down
10 changes: 9 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
[tox]
envlist =
py27,py33,py34,py35,docs,flake8
py27,
py33,
py34,
py35,
py36,
pypy,
pypy3,
docs,
flake8

[testenv]
deps =
Expand Down

0 comments on commit 76dfc1e

Please sign in to comment.