Skip to content

Commit

Permalink
Claim support for Python 3.6
Browse files Browse the repository at this point in the history
Add workaround for `tox -e py35,py36` (see #16).
  • Loading branch information
mgedmin committed Jan 5, 2017
1 parent 1260cc5 commit 6e09fee
Show file tree
Hide file tree
Showing 4 changed files with 7 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.3
- 3.4
- 3.5
- 3.6
- pypy
install:
- pip install .
Expand Down
2 changes: 1 addition & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Changes

- Drop support for Python 2.6 and 3.2.

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

4.0.3 (2014-03-19)
------------------
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ def emit(self, record):
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Natural Language :: English',
Expand Down
5 changes: 4 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,12 @@ envlist =
# Jython support pending 2.7 support, due 2012-07-15 or so. See:
# http://fwierzbicki.blogspot.com/2012/03/adconion-to-fund-jython-27.html
# py27,py33,py34,py35,jython,pypy,coverage,docs
py27,py33,py34,py35,pypy,coverage,docs
py27,py33,py34,py35,py36,pypy,coverage,docs

[testenv]
# see https://github.com/zopefoundation/zope.configuration/issues/16 for
# the reason we set usedevelop here
usedevelop = true
deps =
zope.event
zope.i18nmessageid
Expand Down

0 comments on commit 6e09fee

Please sign in to comment.