Description
From Homebrew's side we completely override the prefix (base
var). This is because under our system, the Python install directory and the install directory that should be used for user-installed packages should be separate (or user packages are lost on upgrades).
We currently do this via distutils.cfg
planted in the standard library distutils which will of course not work anymore.
Going forward we're looking at the system that will hopefully be introduced in Python 3.11 to add additional install schemes to sysconfig.py:
Notably, the idea is schemes should be added rather than replaced. This is why sysconfig.get_preferred_scheme(key)
was introduced in Python 3.10. This is also important when dynamic logic may be required. Ideally I reckon distutils should use this when selecting a scheme.
While the above will cover Python 3.10+, there'll still be a question about what we do for <= 3.9. sysconfig._prefix_addition
is almost what we want, though I don't know if calculating a relative path and going up levels (..
) is a good idea.
Originally posted by @Bo98 in pypa/setuptools#2896 (comment)