Can't build with --no-isolation
without installing the builder first
#613
Labels
good first issue
Good for newcomers
--no-isolation
without installing the builder first
#613
Minimal reproducable test case using this project itself:
This fails with
I can see that an attempt is made at installing the build dependencies, but this fails because
ProjectBuilder.check_dependencies()
callsProjectBuilder.get_requires_for_build()
, which relies on the builder to be installed already.Either:
--no-isolation
will only work if you manually install the builder first. This is whatpip install --no-build-isolation
does.The text was updated successfully, but these errors were encountered: