[issue15419] distutils: build_py_2to3 should use a separate build directory

2012-09-09 Thread Dániel Darabos
Dániel Darabos added the comment: I've had the same issue. I was installing Pyglet. I first installed it under Python 2, then: $ sudo python3 setup.py install running install running build running build_py running install_lib [...] creating

[issue15419] distutils: build_py_2to3 should use a separate build directory

2012-09-09 Thread Ned Deily
Ned Deily added the comment: It seems to me this is just a special case of the more general issue of building multiple versions of the same distribution, say with multiple versions of Python 2. In general, anytime you change your build environment, you should start with no existing build

[issue15419] distutils: build_py_2to3 should use a separate build directory

2012-07-22 Thread anatoly techtonik
New submission from anatoly techtonik techto...@gmail.com: This scenario fails: python setup.py install python3 setup.py install Because it seems like code once built for Python 2 is not rebuild when installing for Python 3. -- assignee: eric.araujo components: Distutils,

[issue15419] distutils: build_py_2to3 should use a separate build directory

2012-07-22 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: Could you please be more specific about what you are trying to do and what error you are seeing? -- nosy: +r.david.murray ___ Python tracker rep...@bugs.python.org