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 8b26db5 commit 038038a
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .travis.yml
Expand Up @@ -5,8 +5,10 @@ python:
- 2.7
- 3.2
- 3.3
- 3.4
- pypy
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.2 (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 @@ -26,7 +26,7 @@ def read(*rnames):
return f.read()

setup(name='zope.size',
version='4.0.2.dev0',
version='4.1.0.dev0',
url='http://pypi.python.org/pypi/zope.size',
license='ZPL 2.1',
description=\
Expand All @@ -45,6 +45,7 @@ def read(*rnames):
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'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,py32,py33,pypy
envlist = py26,py27,py32,py33,py34,pypy

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

0 comments on commit 038038a

Please sign in to comment.