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 40a6ebc commit 2dacff7
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 @@ -5,8 +5,9 @@ python:
- 2.7
- 3.2
- 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
=======

4.0.1 (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 @@ -27,7 +27,7 @@ def read(*rnames):

setup(
name='zope.cachedescriptors',
version='4.0.1.dev0',
version='4.1.0.dev0',
url='http://pypi.python.org/pypi/zope.cachedescriptors',
author='Zope Foundation and Contributors',
author_email='zope-dev@zope.org',
Expand All @@ -43,6 +43,7 @@ def read(*rnames):
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Operating System :: OS Independent',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,5 +1,5 @@
[tox]
envlist = py26,py27,py32,py33
envlist = py26,py27,py32,py33,py34

[testenv]
commands = python setup.py test -q
Expand Down

0 comments on commit 2dacff7

Please sign in to comment.