Skip to content

Commit

Permalink
Merge pull request #7 from zopefoundation/add-py35-support
Browse files Browse the repository at this point in the history
Add support for Python 3.5.
  • Loading branch information
tseaver committed Apr 13, 2016
2 parents 96db2e6 + 302877b commit 5e41a96
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 10 deletions.
17 changes: 9 additions & 8 deletions .travis.yml
@@ -1,14 +1,15 @@
language: python
sudo: false
env:
- TOXENV=py27
- TOXENV=py33
- TOXENV=py34
- TOXENV=pypy
- TOXENV=pypy3
python:
- 2.7
- 3.3
- 3.4
- 3.5
- pypy
- pypy3
install:
- travis_retry pip install tox
- pip install tox-travis
script:
- tox
- tox
notifications:
email: false
2 changes: 2 additions & 0 deletions CHANGES.rst
Expand Up @@ -4,6 +4,8 @@ Changes
4.3.0 (unreleased)
------------------

- Add support for Python 3.5.

- Drop support for Python 2.6 and 3.2.

4.2.1 (2015-06-06)
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Expand Up @@ -97,6 +97,7 @@ def emit(self, record):
'Programming Language :: Python :: 3',
'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',
'Natural Language :: English',
Expand All @@ -117,7 +118,7 @@ def emit(self, record):
'zope.interface',
'zope.component',
'zope.tales',
'zope.tal',
'zope.tal >= 4.2.0',
'zope.i18n >= 4.0.1',
'zope.i18nmessageid',
'zope.traversing',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,6 +1,6 @@
[tox]
envlist =
py27,py33,py34,pypy,pypy3
py27,py33,py34,py35,pypy,pypy3

[testenv]
deps =
Expand Down

0 comments on commit 5e41a96

Please sign in to comment.