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 hroncok
Recipients FFY00, dstufft, eric.araujo, frenzy, hroncok, jaraco, petr.viktorin, vstinner
Date 2021-10-13.14:02:39
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1634133759.79.0.719278605469.issue45460@roundup.psfhosted.org>
In-reply-to
Content
In https://github.com/python/cpython/pull/24549 (Load install schemes from sysconfig) we have assumed that distutils will simply read all information from sysconfig, so distributors could patch the install schemes in there and distutils (whether the one in the standard library or a third party fork).

However, in https://github.com/pypa/pip/issues/10151#issuecomment-942162384 we have figured out that distutils.sysconfig.get_python_lib() does not respect the schemes from sysconfig at all, instead, it creates the paths from scratch.

This might be too late for Python 3.10, but in Python 3.11 I'd like distutils.sysconfig.get_python_lib() to return paths defined by sysconfig install schemes. That way, we can more easily move that from the standard library to a third-party project with an independent delivery mechanism.
History
Date User Action Args
2021-10-13 14:02:39hroncoksetrecipients: + hroncok, jaraco, vstinner, eric.araujo, petr.viktorin, dstufft, frenzy, FFY00
2021-10-13 14:02:39hroncoksetmessageid: <1634133759.79.0.719278605469.issue45460@roundup.psfhosted.org>
2021-10-13 14:02:39hroncoklinkissue45460 messages
2021-10-13 14:02:39hroncokcreate