Commit 869af8b8 authored by Tres Seaver's avatar Tres Seaver

Stop enforcing minimium required Python versions.

Closes #59.
parent 96183018
......@@ -23,23 +23,8 @@ interface, rich transaction support, and undo.
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
......
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