You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
collective.recipe.sphinxbuilder: writing MAKEFILE..
collective.recipe.sphinxbuilder: writing BATCHFILE..
collective.recipe.sphinxbuilder: writing custom sphinx-builder script..
While:
Updating sphinxbuilder_connector.
An internal error occurred due to a bug in either zc.buildout or in a
recipe being used:
Traceback (most recent call last):
File "/home/gbaconnier/.buildout/eggs/zc.buildout-2.2.1-py2.7.egg/zc/buildout/buildout.py", line 1942, in main
getattr(buildout, command)(args)
File "/home/gbaconnier/.buildout/eggs/zc.buildout-2.2.1-py2.7.egg/zc/buildout/buildout.py", line 592, in install
installed_files = self[part]._call(update)
File "/home/gbaconnier/.buildout/eggs/zc.buildout-2.2.1-py2.7.egg/zc/buildout/buildout.py", line 1366, in _call
return f()
File "/home/gbaconnier/.buildout/eggs/collective.recipe.sphinxbuilder-0.8.2-py2.7.egg/collective/recipe/sphinxbuilder/__init__.py", line 141, in install
self.bin_dir, **egg_options)
File "/home/gbaconnier/.buildout/eggs/zc.buildout-2.2.1-py2.7.egg/zc/buildout/easy_install.py", line 931, in scripts
assert executable == sys.executable, (executable, sys.executable)
AssertionError: ('/usr/bin/python', '/home/gbaconnier/projects/openerp/sandbox/bin/python')
Occurs when running
bin/buildout
.The part:
Traceback:
Reason is that this line: https://github.com/sdouche/collective.recipe.sphinxbuilder/blob/master/src/collective/recipe/sphinxbuilder/__init__.py#L140 pass
/usr/bin/python
tozc.buildout.easy_install.scripts
whereas it expects the virtualenv's one. I don't know much the buildout internals, but it seems that anyway this parameter is not used. Usingsys.executable
instead ofself.buildout[self.buildout['buildout']['python']]['executable']
seems better.The text was updated successfully, but these errors were encountered: