Created
December 15, 2014 17:33
-
-
Save jensens/13a0f74ea762578bbcc7 to your computer and use it in GitHub Desktop.
avoid setuptools 8 in a buildout
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1) use bootstrap.py from http://downloads.buildout.org/2/bootstrap.py | |
2) edit buildout.cfg and pin versions to: | |
[versions] | |
setuptools = 7.0 | |
zc.buildout = 2.2.5 | |
3) create a virtualenv as usal: | |
virtualenv --no-setuptools --clear . | |
4) bootstrap buildout with with | |
./bin/python bootstrap.py --setuptools-version=7.0 --version=2.2.5 | |
5) run buildout as usal |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment