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 26, 2014
1 parent 14242a0 commit e1ddc54
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ python:
- 2.6
- 2.7
- 3.3
- 3.4
install:
- pip install . --use-mirrors
script:
Expand Down
4 changes: 3 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
Changes
=======

4.1.1 (unreleased)
4.2.0 (unreleased)
------------------

- Add support for Python 3.4.

- Add support for testing on Travis.


Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def alltests():
return unittest.TestSuite(suites)

setup(name='zope.authentication',
version='4.1.1.dev0',
version='4.2.0.dev0',
author='Zope Foundation and Contributors',
author_email='zope-dev@zope.org',
description='Definition of authentication basics for the Zope Framework',
Expand Down Expand Up @@ -64,6 +64,7 @@ def alltests():
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: Implementation :: CPython',
'Natural Language :: English',
'Operating System :: OS Independent',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py26,py27,py33
py26,py27,py33,py34

[testenv]
commands =
Expand Down

0 comments on commit e1ddc54

Please sign in to comment.