-
Notifications
You must be signed in to change notification settings - Fork 105
Cache the Rust build #152
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
Comments
Hi @Bendabir, If the problem is that you are frequently experiencing unneeded rebuilds, perhaps PyO3/pyo3#1708 is what you are also experiencing? |
Hi, |
Ok, it seems to be related to pip that is caching the wheel build when using pip install. Thanks again. |
Thanks. Is there any advice on that point you think I should add to the |
I've noticed that running the build before running pip for installation fixed the issue. For example : python setup.py bdist_wheel
pip install . If I only run For information, I'm using :
|
Hello,
I was wondering if there was any solution to cache the build of the Rust bindings. I sometimes need to build my Python package several times to test stuff I cannot really test with automated tests and it takes a lot of time. I couldn't find a way to cache the Rust build as my bindings are not changing very often. Any idea ?
Thanks for your help !
Ben
The text was updated successfully, but these errors were encountered: