Commit 8f7ed32c authored by Marius Gedminas's avatar Marius Gedminas

Fix version check in setup.py

I don't think we intentionally checked for Python 4.
parent f5f412d7
......@@ -101,7 +101,7 @@ else:
ext_modules = [BTreeExtension(family) for family in FAMILIES]
if sys.version_info[0] > 3:
if sys.version_info[0] >= 3:
REQUIRES = [
'persistent>=4.0.4',
'zope.interface',
......
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