Skip to content

Commit

Permalink
Add support for Python 3.4.
Browse files Browse the repository at this point in the history
  • Loading branch information
tseaver committed Dec 24, 2014
1 parent 91f4f70 commit c72c2bf
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Expand Up @@ -4,6 +4,7 @@ env:
- TOXENV=py26
- TOXENV=py27
- TOXENV=py33
- TOXENV=py34
install:
- travis_retry pip install tox
script:
Expand Down
4 changes: 3 additions & 1 deletion CHANGES.rst
Expand Up @@ -4,9 +4,11 @@ Changelog
2.0.0 (unreleased)
------------------

- Add support for Python 3.4.

- Add support for testing on Travis.

- Add support for Python 3.3
- Add support for Python 3.3.

- Replace deprecated ``zope.interface.implements`` usage with equivalent
``zope.interface.implementer`` decorator.
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Expand Up @@ -41,6 +41,7 @@ def read(*rnames):
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Natural Language :: English',
'Operating System :: OS Independent',
'Topic :: Internet :: WWW/HTTP',
Expand All @@ -54,7 +55,7 @@ def read(*rnames):
'zope.authentication',
'zope.component',
'zope.interface',
'zope.publisher>=4.0.0a2',
'zope.publisher>=4.0.0',
],
test_suite='zope.login',
include_package_data = True,
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,5 +1,5 @@
[tox]
envlist = py26, py27, py33
envlist = py26,py27,py33,py34

[testenv]
commands =
Expand Down

0 comments on commit c72c2bf

Please sign in to comment.