Skip to content

Commit

Permalink
Merge pull request #61 from zopefoundation/59-enforce-py27-py33-minimum
Browse files Browse the repository at this point in the history
Enforce minimum required Python versions: 2.7, 3.3.

+1
  • Loading branch information
jimfulton committed Jun 6, 2016
2 parents 6fe36b9 + 869af8b commit b1ea673
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions setup.py
Expand Up @@ -23,23 +23,8 @@
version = "4.3.0.dev0"

import os
import sys
from setuptools import setup, find_packages

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)


# The (non-obvious!) choices for the Trove Development Status line:
# Development Status :: 5 - Production/Stable
# Development Status :: 4 - Beta
# Development Status :: 3 - Alpha

classifiers = """\
Development Status :: 4 - Beta
Intended Audience :: Developers
Expand Down

0 comments on commit b1ea673

Please sign in to comment.