diff options
author | Tres Seaver <tseaver@palladion.com> | 2014-03-17 16:19:57 -0400 |
---|---|---|
committer | Tres Seaver <tseaver@palladion.com> | 2014-03-17 16:19:57 -0400 |
commit | 3b8e671e36c6d6f7e9c068ed9ce7f9da9fd8d2bb (patch) | |
tree | 4e192b7c06f1add9fc1df733b2dd7de1c45f4791 | |
parent | 296f0b5572bbf271685d433474e88f51d075c69a (diff) | |
download | zope-location-3b8e671e36c6d6f7e9c068ed9ce7f9da9fd8d2bb.tar.gz |
Note explicit support for Python 3.4.
-rw-r--r-- | CHANGES.rst | 2 | ||||
-rw-r--r-- | setup.py | 3 | ||||
-rw-r--r-- | tox.ini | 2 |
3 files changed, 5 insertions, 2 deletions
diff --git a/CHANGES.rst b/CHANGES.rst index a0903f4..3c771ae 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -5,6 +5,8 @@ CHANGES 4.0.3 (unreleased) ------------------ +- Added Python 3.4 support. + - Updated ``boostrap.py`` to version 2.2. @@ -26,7 +26,7 @@ def read(*rnames): return text setup(name='zope.location', - version='4.0.3.dev0', + version='4.0.3dev', author='Zope Corporation and Contributors', author_email='zope-dev@zope.org', description='Zope Location', @@ -49,6 +49,7 @@ setup(name='zope.location', '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', @@ -3,7 +3,7 @@ envlist = # Jython support pending 2.7 support, due 2012-07-15 or so. See: # http://fwierzbicki.blogspot.com/2012/03/adconion-to-fund-jython-27.html # py26,py27,py32,jython,pypy,coverage - py26,py27,py32,py33,pypy,coverage,docs + py26,py27,py32,py33,py34,pypy,coverage,docs [testenv] commands = |