missing the 'build_editable' hook #4037
-
despite PEP 660 being supported by setuptools since v64 and
and
|
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 5 replies
-
PEP 517 installs own setuptools into a throwaway tmp venv. Whatever you have in yours is never used, except for when PEP 517 isn't invoked at all. |
Beta Was this translation helpful? Give feedback.
-
Yeap, @webknjaz is right. Please make sure If the problem still persists after you update pip and verify pyapp does not cap setuptools version, you can still try installing both |
Beta Was this translation helpful? Give feedback.
-
what does this mean?
I do not specify any version numbers anywhere |
Beta Was this translation helpful? Give feedback.
Yeap, @webknjaz is right. Please make sure
pip
is updated, and that pyapp is not capping the version of setuptools specified inpyproject.toml
.If the problem still persists after you update pip and verify pyapp does not cap setuptools version, you can still try installing both
setuptools
andwheel
and then runningpip install --no-build-isolation ...
. There might be a chance there is a leak on the build environment isolation provided by pip (depending on the patches your OS might apply to Python/pip).