Skip to content

Commit

Permalink
Force 'persistent' before 'BTrees'.
Browse files Browse the repository at this point in the history
Try to work around zc.buildout's ignorance of setup_requires.
  • Loading branch information
tseaver committed Apr 4, 2013
1 parent c2ce3c7 commit 89ee3c8
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 @@ -125,9 +125,9 @@ def read_file(*path):
tests_require = tests_require,
extras_require = dict(test=tests_require),
install_requires = [
'persistent',
'BTrees',
'ZConfig',
'persistent',
'transaction >= 1.4.1' if PY3 else 'transaction',
'six',
'zc.lockfile',
Expand Down

0 comments on commit 89ee3c8

Please sign in to comment.