Skip to content

Commit

Permalink
Brown paper bag fix: install_requires was empty on Python 2.x
Browse files Browse the repository at this point in the history
  • Loading branch information
mgedmin committed Feb 28, 2013
1 parent 168e4a7 commit 903b376
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ def read_file(*path):
'zc.lockfile',
'zdaemon >= 4.0.0a1',
'zope.interface',
] + ['zodbpickle'] if PY3 else [],
] + (['zodbpickle'] if PY3 else []),
zip_safe = False,
entry_points = """
[console_scripts]
Expand Down

0 comments on commit 903b376

Please sign in to comment.