Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Show full path in missing readme error message (#2074)
Old error message: ```console $ maturin sdist --manifest-path ../mistral.rs/mistralrs-pyo3/Cargo.toml 🔗 Found pyo3 bindings 🐍 Found CPython 3.13 at /usr/local/bin/python3 📡 Using build options features from pyproject.toml 💥 maturin failed Caused by: Failed to build source distribution Caused by: failed to normalize readme path `/home/konsti/projects/mistral.rs/mistralrs-core/README.md` Caused by: No such file or directory (os error 2) ``` New error message: ```console maturin sdist --manifest-path ../mistral.rs/mistralrs-pyo3/Cargo.toml 🔗 Found pyo3 bindings 🐍 Found CPython 3.13 at /usr/local/bin/python3 📡 Using build options features from pyproject.toml 💥 maturin failed Caused by: Failed to build source distribution Caused by: failed to normalize readme path `/home/konsti/projects/mistral.rs/mistralrs-core/README.md` Caused by: No such file or directory (os error 2) ``` Checking at https://github.com/EricLBuehler/mistral.rs/blob/86599c1adc5e4a07db50e8460676151f736c873f/mistralrs-core/Cargo.toml#L3, there was indeed a missing readme file. Fixes #2060
- Loading branch information