Bump cibuildwheel to v4.2.0 to build CPython 3.14 wheels - #74
Merged
jkanche merged 1 commit intoAug 13, 2026
Merged
Conversation
v2.22.0 (Nov 2024) predates cibuildwheel's default (non-prerelease) CPython 3.14 wheel builds, added in v3.1.0 (2025-07-24) and finalized for the 3.14.0 release in v3.2.1 (2025-10-12). CIBW_PROJECT_REQUIRES_PYTHON already has no upper bound, so no other change is needed. Checked the intervening breaking changes in v3.0.0 and v4.0.0: PyPy off-by-default and 32-bit Linux off-by-default don't affect this workflow, since CIBW_SKIP already excludes PyPy and CIBW_ARCHS_LINUX is already pinned to x86_64. Fixes BiocPy#73
jkanche
marked this pull request as ready for review
August 13, 2026 03:38
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.
Fixes #73.
publish-pypi.ymlpinnedpypa/cibuildwheel@v2.22.0(Nov 2024), which predates cibuildwheel's default (non-prerelease) CPython 3.14 wheel builds — added in v3.1.0 (2025-07-24), finalized for the 3.14.0 release in v3.2.1 (2025-10-12).CIBW_PROJECT_REQUIRES_PYTHON: ">=3.10"already has no upper bound, so this is the only change needed.Checked the breaking changes in the intervening v3.0.0 and v4.0.0 releases against this workflow's specific config:
CIBW_SKIP: pp*already excludes PyPy.CIBW_ARCHS_LINUX: x86_64is already pinned.Opened as draft since I'm not a maintainer of this project — flagging for visibility/review rather than assuming this is mergeable as-is. Happy to adjust the target version if you'd rather pin to something more conservative (e.g. v3.2.1, the first release with the final 3.14.0 build) instead of latest.