-
Notifications
You must be signed in to change notification settings - Fork 121
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Pip editable install reports success, doesn't actually build #939
Comments
We don’t support modern editable installs here, sadley. Initial support is present in scikit-build-core (native builds only ATM). You should also be able to set the envvar for classic editable builds in setuptools. I do think we could possibly make this an error though until we can support it. (It is tricky to support because we have to produce a list of file to module mappings for setuptools). |
Thanks for jumping on this, appreciate the quick feedback. Can you help me understand the "modern" vs "classic" build-modes you're referring to? Thanks again! |
Setuptools 64: https://setuptools.pypa.io/en/latest/userguide/development_mode.html#development-mode-a-k-a-editable-installs - you set |
Editably-install the
hello-cpp
example from https://github.com/scikit-build/scikit-build-sample-projects/tree/master/projects/hello-cpp. It reports success:But it doesn't actually work. Doesn't look like it attempts to build the C++ at all.
Some system & setup info.
Most notably this is on RedHat Linux, which admittedly can be weird.
On the same machine and setup, installing the same code non-editably does work:
Originally from ALIGN-analoglayout/ALIGN-public#1278
The text was updated successfully, but these errors were encountered: