Commit eeff7eac authored by Tres Seaver's avatar Tres Seaver

Prep 4.0.0b1 release.

parent 16059367
......@@ -2,7 +2,7 @@
Change History
================
4.0.0b1 (unreleased)
4.0.0b1 (2013-05-10)
=====================
- Skip non-unit tests in ``setup.py test``. Use the buildout to run tests
......
......@@ -30,6 +30,10 @@ if sys.version_info < (2, 6):
print("This version of ZODB requires Python 2.6 or higher")
sys.exit(0)
if (3,) < sys.version_info < (3, 2):
print("This version of ZODB requires Python 3.2 or higher")
sys.exit(0)
PY3 = sys.version_info >= (3,)
# The (non-obvious!) choices for the Trove Development Status line:
......@@ -38,6 +42,7 @@ PY3 = sys.version_info >= (3,)
# Development Status :: 3 - Alpha
classifiers = """\
Development Status :: 4 - Beta
Intended Audience :: Developers
License :: OSI Approved :: Zope Public License
Programming Language :: Python
......
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