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 ronaldoussoren
Recipients ronaldoussoren, srid, tarek
Date 2010-08-17.20:00:41
SpamBayes Score 3.7137599e-10
Marked as misclassified No
Message-id <1282075244.14.0.380244152325.issue9516@psf.upfronthosting.co.za>
In-reply-to
Content
I can reproduce this with a script that builds and installs a couple of python versions, annoyingly enough I don't understand why that code fails.

In particular, in my script the run of python that fails is started with this code:


    lg.debug("Run setup script with '%s'", python)
    pprint.pprint(os.environ)
    p = subprocess.Popen([
        python, "setup.py", "install"],
        cwd=distribute_dir, stdout=subprocess.PIPE,
        stderr=subprocess.STDOUT)


This prints the environment and then runs a setup.py script. What confuses me is that the printed environment does *not* contain MACOSX_DEPLOYMENT_TARGET while that is the only way to trigger this bug.
History
Date User Action Args
2010-08-17 20:00:44ronaldoussorensetrecipients: + ronaldoussoren, tarek, srid
2010-08-17 20:00:44ronaldoussorensetmessageid: <1282075244.14.0.380244152325.issue9516@psf.upfronthosting.co.za>
2010-08-17 20:00:42ronaldoussorenlinkissue9516 messages
2010-08-17 20:00:42ronaldoussorencreate