Description
Update on Oct 7 2022: Once setup.py install
and setup.py develop
code paths are killed, there is no reason for pip to use the legacy setup.py-based builds by default, other than to avoid the additional overhead of the creation of build environments.
Currently if you try to pip install
something that only is provided a "legacy" setuptools only sdist without a pyproject.toml
, that will be installed using the "legacy" path unless you explicitly invoke --use-pep517
.
This is particularly troublesome in cases where you don't have (or want to have) setuptools installed in the environment, since the legacy path depends on having setuptools preinstalled.
This flag does not affect editable installs in any way, and those still require having setuptools preinstalled in either case.
This seems like it would be a good stepping stone on the way to #6334, since it narrows the cases where we're using the legacy path to just editable installs.