This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author eric.araujo
Recipients ajaksu2, alexis, benjamin.peterson, eric.araujo, kxroberto, rpetrov, tarek
Date 2014-03-15.01:06:19
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1394845579.67.0.471539556682.issue5977@psf.upfronthosting.co.za>
In-reply-to
Content
This bug is quite bad, and was reported as far back as 2005 on distutils-sig.  If one runs “python setup.py build_ext --inplace build”, then for example runs tests, and then “python setup.py install” runs build again, which runs build_py (.py files are already in the build directory, do nothing) then build_ext (.so files are not in the build directory: build them), so extensions modules are installed.  But if one has “[build_ext] inplace=1” in the setup.cfg, then the .so files will not be recompiled and not installed.

It would be interesting to test if bdist_wheel is affected, as bdist commands use the install command under the hood.
History
Date User Action Args
2014-03-15 01:06:19eric.araujosetrecipients: + eric.araujo, kxroberto, ajaksu2, benjamin.peterson, tarek, rpetrov, alexis
2014-03-15 01:06:19eric.araujosetmessageid: <1394845579.67.0.471539556682.issue5977@psf.upfronthosting.co.za>
2014-03-15 01:06:19eric.araujolinkissue5977 messages
2014-03-15 01:06:19eric.araujocreate