-
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
Support editable_wheel
with setuptools>=64
#981
Comments
|
…stores use of `setup.py` temporarily for develop builds (#3747) This PR adds the following: * Removes the now unnecessary "." path used in the install options when `--pydevelop` is used, which resulted in an error when called. * Temporarily adds a call to `setup.py bdist_ext --inplace` only when `--pydevelop` is used to workaround a [bug in scikit-build](scikit-build/scikit-build#981) when `setuptools>=64` is installed. Authors: - Rick Ratzel (https://github.com/rlratzel) Approvers: - Brad Rees (https://github.com/BradReesWork) - Vyas Ramasubramani (https://github.com/vyasr) URL: #3747
On the subject of
pip install -e, --editable
woes, I've seen #697, #370, #436, #616, #585, #579, and also tried #582, #546 (comment), #546 (comment).I think I have a different issue (
setup.py develop
works butpip install -e
does not). Probably related to #737 (comment).Added
print(sys.argv)
intosetup.py
for some debugging. This gives:./_skbuild
,./cmake
, ./mylib/ext.so)
:./_skbuild
,./cmake
, ./mylib/ext.so
)setuptools<64
(editable install, creates./_skbuild
,./cmake
, ./mylib/ext.so
)The text was updated successfully, but these errors were encountered: