Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MRG] change
cargo update
to do a dry-run only (#2388)
This PR continues the cibuildwheel exploration that started with a fix for building the wheels (#2384 and #2385). The saga continues like so: When building the release candidates, we don't get "clean" rcN wheels. I think this is because when I run `cargo update` in the cibuildwheel action it's actually updating the Rust packages and we're getting a version bump from that. Yay? (See screenshot of releases page with 'dev' yada in wheel names.) <img width="1025" alt="Screen Shot 2022-12-02 at 7 15 52 AM" src="https://user-images.githubusercontent.com/51016/205325234-9ec0c6c2-7cbc-42c7-9727-fd700ef59320.png"> This PR changes `cargo update` to `cargo update --dry-run` which should update the crates.io index without actually changing `Cargo.lock` and pushing a version bump. We Shall See!
- Loading branch information