Commit 903b3762 authored by Marius Gedminas's avatar Marius Gedminas

Brown paper bag fix: install_requires was empty on Python 2.x

parent 168e4a78
......@@ -131,7 +131,7 @@ setup(name="ZODB",
'zc.lockfile',
'zdaemon >= 4.0.0a1',
'zope.interface',
] + ['zodbpickle'] if PY3 else [],
] + (['zodbpickle'] if PY3 else []),
zip_safe = False,
entry_points = """
[console_scripts]
......
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