ci: fix Actions warnings (run-on-arch v3, py3.13, windows-2025); bump dev version to 0.10.1#28
Merged
Merged
Conversation
- run-on-arch-action@v2 -> @V3: v2 runs on the deprecated Node.js 20; v3 runs on node24 with the same inputs (the emulated aarch64 test step). - setup-python 3.8 -> 3.13 on the build jobs: the 3.8 framework Python ships an ancient pip (21.1.1) that emitted the "new release of pip" notice and the "Cache entry deserialization failed" warnings. We build abi3 wheels, so the build Python version doesn't change the 3.8+ wheel floor (still cp38-abi3). - windows-latest -> windows-2025: removes the runner-redirect notice and pins the image explicitly. - Bump Cargo.toml dev-default version to 0.10.1 (the release version still comes from the git tag at build time). pyo3 0.24 (already on main) verified at runtime: cp38-abi3 wheel builds and scripts/smoke_test.py passes unchanged.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Cleans up the GitHub Actions warnings/notices seen on recent runs, and bumps the dev-default version to 0.10.1. No code changes.
Warnings fixed
uraimo/run-on-arch-action@v2— Node.js 20 deprecated@v3(node24, same inputs)[notice] A new release of pip is available: 21.1.1 -> 25.0.1andCache entry deserialization failed(macOS)actions/setup-pythonpinned to 3.8, whose framework Python ships an ancient pipcp38-abi3)windows-latest requests are being redirected to windows-2025-vs2026windows-2025Version
Cargo.tomldev-default0.10.0 → 0.10.1(andCargo.lock). The actual release version still comes from the git tag at build time (tag-as-source-of-truth); this is just housekeeping so the in-tree default matches the next intended release.0.24.1(already merged to main via Bump pyo3 from 0.22.6 to 0.24.1 #27); verified at runtime here — thecp38-abi3wheel builds andscripts/smoke_test.pypasses unchanged.Verification
cargo build --release, YAML validates,maturin developbuilds acp38-abi3wheel,python scripts/smoke_test.py→ all checks pass.