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 0908eb3 commit 79e8547
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Expand Up @@ -4,8 +4,9 @@ python:
- 2.6
- 2.7
- 3.3
- 3.4
install:
- pip install . --use-mirrors
- pip install .
script:
- python setup.py test -q
notifications:
Expand Down
4 changes: 3 additions & 1 deletion CHANGES.rst
@@ -1,9 +1,11 @@
Changes
=======

2.0.1 (unreleased)
2.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 @@ -36,7 +36,7 @@ def alltests():
return unittest.TestSuite(suites)

setup(name = 'zope.ramcache',
version='2.0.1.dev0',
version='2.1.0.dev0',
author='Zope Foundation and Contributors',
author_email='zope-dev@zope.org',
description='Zope RAM Cache',
Expand All @@ -57,6 +57,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
@@ -1,6 +1,6 @@
[tox]
envlist =
py26,py27,py33
py26,py27,py33,py34

[testenv]
commands =
Expand Down

0 comments on commit 79e8547

Please sign in to comment.