You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have migrated to python 3.13.1 and hyve setup my ven from scratch and sudenly RUST dependencies are required which was not before. Is this intended to be?
Installing dependencies from requirements.txt into virtual environment .venv (in quiet mode)...
error: subprocess-exited-with-error
× Preparing metadata (pyproject.toml) did not run successfully.
│ exit code: 1
╰─> [6 lines of output]
Cargo, the Rust package manager, is not installed or is not on PATH.
This package requires Rust and Cargo to compile extensions. Install it through
the system's package manager or via https://rustup.rs/
Checking for Rust toolchain....
[end of output]
note: This error originates from a subprocess, and is likely not a problem with pip.
error: metadata-generation-failed
× Encountered error while generating package metadata.
╰─> See above for output.
note: This is an issue with the package mentioned above, not pip.
hint: See above for details.
Failed to restore backend python packages
The text was updated successfully, but these errors were encountered:
This is due to us having to support both Python 3.9 and Python 3.13, but there not being a numpy version that has having support for both. I have an idea for a way to change our requirements file to pull in the right numpy depending on your system's Python version, which should mean no rust is needed. I'll try it out next week. Thanks for filing, this was bothering me too.
For now, you can upgrade the numpy version in requirements.txt to the latest version in your fork.
I have migrated to python 3.13.1 and hyve setup my ven from scratch and sudenly RUST dependencies are required which was not before. Is this intended to be?
The text was updated successfully, but these errors were encountered: