[08:46:35] <quodt> mgedmin: we are having the problem in our buildout based projects when running bootstrap.py which tries to download setuptools from https://pypi.python.org/packages/source/s/setuptools/
[08:56:11] <mgedmin> you could virtualenv .venv && .venv/bin/pip install -U setuptools && .venv/bin/python bootstrap.py, to get the latest setuptools for your buildout
[08:56:27] <gauthierbastien> mgedmin: I think it does, if i re-run bootstrap in an already installed env, it tries to get last setuptools then fails
[08:56:32] <mgedmin> I've been wrapping my buildouts inside virtualenv for years now -- solves so many problems
[08:57:00] <gauthierbastien> mgedmin: we use virtualenv too but it does not seem to workaround this...
[08:57:07] <quodt> ionelmc: can you ping jaraco to upload the missing zip
[08:57:51] <ionelmc> quodt: mention his username on bitbucket issue
[08:58:00] <ionelmc> i don't have any other contact means
[08:58:14] <quodt> ionelmc: ok, i'll do so. thanks
[08:58:23] <mgedmin> if I do the .venv/bin/pip install -U setuptools step
[08:58:26] <gauthierbastien> mgedmin: recent bootsrap.py will try to get very last setuptools
[08:58:31] <mgedmin> (fails with BadZipFile if I don't)
[08:59:18] <gauthierbastien> mgedmin: if y easy_install -U setuptools, it works because it gets the tar.gz then bootstrap see that last installed is same as last available and it runs
[09:05:37] <gauthierbastien> mgedmin: pbauer on #plone notice me that revent bootstrap.py have now a --setuptools-version option (http://downloads.buildout.org/2/bootstrap.py)