On Fri, 2010-04-30 at 08:57 +0200, Rok Garbas wrote: > i ment on bootstrap .. > > python bootstrap.py -v1.4.3
Thanks Rok. With that hint, I was able to work around it in a virtualenv by: - Using the bootstrap.py from the 1.4.3 tag (<http://svn.zope.org/zc.buildout/tags/1.4.3/bootstrap/bootstrap.py?rev=106409&view=markup>) - Adding the [versions] stanza that pins zc.buildout 1.4.3 and zc.recipe.egg 1.2.2 to my buildout.cfg ala: versions = versions [versions] zc.buildout = 1.4.3 zc.recipe.egg = 1.2.2 - Running the above bootstrap.py with the virtualenv python and the -v1.4.3 argument. bin/python bootstrap.py -v1.4.3 - Run bin/buildout That produces a working environment. - C _______________________________________________ Distutils-SIG maillist - [email protected] http://mail.python.org/mailman/listinfo/distutils-sig
