This is one of a series of deprecations meant to collect feedback on the ultimate goal of always installing source distributions by first building a wheel and then installing from it.
This specific issue is about the case when pip calls setup.py bdist_wheel and that fails.
In that case, pip currently displays the build error and continues installation by attempting a setup.py install.
In a future version, pip will not attempt setup.py install in that case, and fail the installation right away.
Towards #8102
This is one of a series of deprecations meant to collect feedback on the ultimate goal of always installing source distributions by first building a wheel and then installing from it.
This specific issue is about the case when pip calls
setup.py bdist_wheeland that fails.In that case, pip currently displays the build error and continues installation by attempting a
setup.py install.In a future version, pip will not attempt
setup.py installin that case, and fail the installation right away.Towards #8102