Commit 63a1f6fb authored by Tres Seaver's avatar Tres Seaver

Note explicit support for Python 3.4.

parent 7e8338cf
......@@ -5,7 +5,9 @@ CHANGES
4.0.0a4 (unreleased)
--------------------
- Support PyPy.
- Added support for Python 3.4.
- Added support for PyPy.
4.0.0a3 (2013-02-28)
......
......@@ -82,7 +82,7 @@ else:
setup(name='zope.container',
version='4.0.0a4.dev0',
version='4.0.0dev',
author='Zope Foundation and Contributors',
author_email='zope-dev@zope.org',
description='Zope Container',
......@@ -107,6 +107,7 @@ setup(name='zope.container',
'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',
......
[tox]
envlist = py26,py27,pypy,py33
envlist = py26,py27,pypy,py33,py34
[testenv]
commands = python setup.py test -q
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment