| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
GitHub fully retired macos-13 on 2025-12-04 (actions/runner-images#13046). The matrix entry stays `queued` until the ~6h timeout, blocking `upload_pypi` since `build_wheels` never concludes successfully (see run 25975208751, where one stalled macos-13 entry held up 0.149.1). Replace it with cross-arch builds on macos-latest (arm64): `CIBW_ARCHS_MACOS="x86_64 arm64"` tells cibuildwheel to produce both Intel and Apple Silicon wheels from the same runner, so 0.149.x keeps shipping x86_64 mac wheels for Intel users.
`requires-python = ">=3.10"` since #1688. Add cp39 and pp39 to `CIBW_SKIP` so any future matrix entry that accidentally targets 3.9 gets a silent skip instead of the "No build identifiers selected" hard error that broke 0.149.0. Also sort cpXX and ppXX into ascending order while reordering.
Codecov Report✅ All modified and coverable lines are covered by tests. @@ Coverage Diff @@
## master #1693 +/- ##
=======================================
Coverage 99.76% 99.76%
=======================================
Files 33 33
Lines 3410 3410
Branches 464 464
=======================================
Hits 3402 3402
Misses 5 5
Partials 3 3 ☔ View full report in Codecov by Harness.
|
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
Summary
Two CI follow-ups from the Python-3.9-drop wheel-publish hiccup:
Details
Test plan
Follow-up
Once #1692 (ci: don't fail-fast the wheel matrix) lands, future single-arch breakage won't take down the rest of the matrix.