-
Notifications
You must be signed in to change notification settings - Fork 423
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
rough outline of a "conda develop" using pypa/build #5380
base: main
Are you sure you want to change the base?
Conversation
This is what pypa/build's cli does to build an ordinary wheel in its own environment, providing pip or uv as the available installers. We could add a conda installer.
|
|
||
if uninstall: | ||
raise NotImplementedError("nope") | ||
# uninstall then exit - does not do any other operations |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ask them to use conda uninstall or pip uninstall since these are installed like standard Python packages
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could we convert the ephemeral wheel into a conda package and install that instead? Or would it be too much trouble to avoid keeping that in conda's package cache?
Description
This is how to create and install an editable wheel with pypa/build, as a replacement for "conda develop". At each step we have the opportunity to install dependencies using our preferred installer instead of pip.
#4251
Checklist - did you ...
news
directory (using the template) for the next release's release notes?