-
-
Notifications
You must be signed in to change notification settings - Fork 284
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
option to use uv #1959
Comments
I'm in favor of add support for it, but I don't want to bundle/link it into maturin directly given that it's not stable yet (we don't want to release a new version of maturin everytime Call cc @konstin |
A |
from the comments it seems clear how it should look like , so I would like to give this one a try if ok with everyone :) |
@dmatos2012 Thanks! |
Hey guys, I might be missing something, but this is what I see when I run
Then trying with
I am using the latest maturin (I believe):
|
Just now occurring to me that this might not be released yet. |
Nice to have this feature implemented! @nleroy917 Looks like it is released in maturin 1.6.0 Out of curiosity: Is there also a way to configure the usage of |
It may be beneficial to offer uv as a backend for
maturin develop
rather than hard-codingpip
as the only available backend.I was thinking about this while thinking of ways to speed up the import hook tests as a significant part of those tests is waiting for
maturin develop
. Compilation still probably takes the majority of the time but there may be a small benefit.uv pip
offers a pip-compatible interface for installing packages but may be faster than using pip. Since it's written in rust perhaps it could be bundled into maturin directly as a library?The text was updated successfully, but these errors were encountered: