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 29, 2014
1 parent 5ea333d commit e28de98
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 @@ python:
- 2.6
- 2.7
- 3.3
- 3.4
- pypy
install:
- pip install . --use-mirrors
Expand Down
4 changes: 3 additions & 1 deletion CHANGES.rst
@@ -1,9 +1,11 @@
Changes
=======

4.0.3 (unreleased)
4.1.0 (unreleased)
------------------

- Add support for Python 3.4.

- Add support for testing on Travis.


Expand Down
3 changes: 2 additions & 1 deletion setup.py
Expand Up @@ -43,7 +43,7 @@ def alltests():
return unittest.TestSuite(suites)

setup(name='zope.tales',
version='4.0.3.dev0',
version='4.1.0.dev0',
author='Zope Foundation and Contributors',
author_email='zope-dev@zope.org',
description='Zope Template Application Language Expression Syntax '
Expand All @@ -65,6 +65,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',
'Programming Language :: Python :: Implementation :: PyPy',
'Natural Language :: English',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,5 +1,5 @@
[tox]
envlist = py26,py27,py33,pypy
envlist = py26,py27,py33,py34,pypy

[testenv]
commands =
Expand Down

0 comments on commit e28de98

Please sign in to comment.