Skip to content

Commit

Permalink
Add support for Python 3.4 and PyPy3.
Browse files Browse the repository at this point in the history
  • Loading branch information
tseaver committed Dec 26, 2014
1 parent 07b061e commit c91e476
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@ python:
- 2.6
- 2.7
- 3.3
- 3.4
- pypy
- pypy3
install:
- pip install . --use-mirrors
- pip install .
script:
- python setup.py test -q
notifications:
Expand Down
6 changes: 4 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
Change History
==============

4.0.2 (unreleased)
4.1.0 (unreleased)
------------------

- Add support for Python 3.4 and PyPy3.

- Add support for testing on Travis.

4.0.1 (2013-02-20)
Expand All @@ -19,7 +21,7 @@ Change History

- Add ``tox.ini`` and manifest.

- Add support for Python 3.3 and PyPy 1.9.
- Add support for Python 3.3 and PyPy.

- Drop support for Python 2.4 and 2.5.

Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def read(*rnames):

setup(
name='zope.contenttype',
version='4.0.2.dev0',
version='4.1.0.dev0',
url='http://pypi.python.org/pypi/zope.contenttype',
author='Zope Foundation and Contributors',
author_email='zope-dev@zope.org',
Expand All @@ -46,6 +46,7 @@ def read(*rnames):
'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',
'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,pypy
py26,py27,py33,py34,pypy,pypy3

[testenv]
commands =
Expand Down

0 comments on commit c91e476

Please sign in to comment.