Skip to content

Commit

Permalink
Prep 4.0.0b1 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
tseaver committed May 10, 2013
1 parent 1605936 commit eeff7ea
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion CHANGES.rst
Expand Up @@ -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
Expand Down
5 changes: 5 additions & 0 deletions setup.py
Expand Up @@ -30,6 +30,10 @@
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:
Expand All @@ -38,6 +42,7 @@
# Development Status :: 3 - Alpha

classifiers = """\
Development Status :: 4 - Beta
Intended Audience :: Developers
License :: OSI Approved :: Zope Public License
Programming Language :: Python
Expand Down

0 comments on commit eeff7ea

Please sign in to comment.