Skip to content

Commit

Permalink
Add support for Python 3.5.
Browse files Browse the repository at this point in the history
  • Loading branch information
tseaver committed Apr 12, 2016
1 parent 96db2e6 commit 5d5c0e3
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .travis.yml
@@ -1,5 +1,9 @@
language: python
sudo: false
matrix:
include:
- python: 3.5
env: TOXENV=py35
env:
- TOXENV=py27
- TOXENV=py33
Expand Down
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 5d5c0e3

Please sign in to comment.