Comment 1 for bug 1403510

Revision history for this message
James Polley (tchaypo) wrote :

17:49:10 <dstufft> docutil's setup.py install is being executed
17:49:39 <dstufft> in ./ there is a py2 version of docutils, which is being translated into py3 in ./build
17:50:21 <dstufft> as part of installing docutils, setuptools interates of the egg_writer entry point and imports things, which causes pbr to get imported
17:50:24 <dstufft> pbr imports sphinx
17:50:30 <dstufft> sphinx imports docutils
17:50:37 <dstufft> and ./ is on sys.path
17:50:49 <dstufft> so it imports the py2 docutils from ./
17:51:50 <tchaypo> and then we’re running non-translated docutils in py3, so it fails.