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 db3l
Recipients Jim Fasarakis-Hilliard, db3l, docs@python, martin.panter, ned.deily, python-dev
Date 2017-01-29.22:28:46
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1485728926.47.0.599208119029.issue29349@psf.upfronthosting.co.za>
In-reply-to
Content
2.7.12 (/usr/local/bin) is used for the build slave and main external commands (such as hg and sphinx) and is in the buildslave path, but 2.5.1 is still the default in /usr/bin so can get used for processes with a restricted environment.  Tiger's original 2.3 is present but unused.

The DMG build-installer script itself runs under 2.5.1, because it specifies "python2.5" in its command to the slave.  I believe that was originally added once the system 2.3 couldn't be used.

During the DMG construction process, a particular step might, I suppose use 2.5.1 or 2.7.12 depending on whether it's internal to the build script, something using the same executable as the script, a subprocess with limited path, or an independent utility (like sphinx) referencing 2.7.

I believe Ned's comment in issue 17861 about 2.6+ is a reference to the sphinx step, which is covered by the fact that sphinx is using the newer 2.7.12.

What appears to break in this specific case is some of the preparation - specifically the Makefile referencing patchlevel is running "python".  That should work (2.7.12) if it inherits the overall build slave environment (which has /usr/local/bin first) but I think the install script filters that, so it's probably getting the /usr/bin/python 2.5.1 version.

I've just changed the default /usr/bin/python to be 2.7 so external processes run by build-installer should get 2.7.  I don't think that will break anything else currently done on the machine, but I'll deal with any fallout if needed.  I'm rerunning build 59 now.

As in issue 28039 there's no immediate need to change the installer script itself, but since it's clearly the last hold out, I'll find some time to test that I've got any pre-requisites for it set up at which point the build master could be changed to remove the python2.5 reference.
History
Date User Action Args
2017-01-29 22:28:46db3lsetrecipients: + db3l, ned.deily, docs@python, python-dev, martin.panter, Jim Fasarakis-Hilliard
2017-01-29 22:28:46db3lsetmessageid: <1485728926.47.0.599208119029.issue29349@psf.upfronthosting.co.za>
2017-01-29 22:28:46db3llinkissue29349 messages
2017-01-29 22:28:46db3lcreate