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 vstinner
Recipients dstufft, eric.araujo, hroncok, miss-islington, pablogsal, petr.viktorin, uranusjr, vstinner
Date 2021-09-07.13:22:50
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1631020970.98.0.372351233498.issue45035@roundup.psfhosted.org>
In-reply-to
Content
I wrote the PR 28204 to change the unix_home used by the distutils install command. Previous code:

        if sys.version_info >= (3, 9) and key == "platlib":
            # platlibdir is available since 3.9: bpo-1294959
            value = value.replace("/lib/", "/$platlibdir/")
        INSTALL_SCHEMES[main_key][key] = value

This code was added by:

commit 341e8a939aca6e9f59ffb0e6daee5888933694ed
Author: Lumír 'Frenzy' Balhar <frenzy.madness@gmail.com>
Date:   Wed Apr 14 17:12:34 2021 +0200

    bpo-41282: (PEP 632) Load install schemes from sysconfig (GH-24549)

Modifying the unix_home was not the intended behavior.
History
Date User Action Args
2021-09-07 13:22:51vstinnersetrecipients: + vstinner, eric.araujo, petr.viktorin, dstufft, uranusjr, hroncok, pablogsal, miss-islington
2021-09-07 13:22:50vstinnersetmessageid: <1631020970.98.0.372351233498.issue45035@roundup.psfhosted.org>
2021-09-07 13:22:50vstinnerlinkissue45035 messages
2021-09-07 13:22:50vstinnercreate