CI: add Python 3.14 support, drop win32 wheels#55
Merged
maresb merged 4 commits intocutde-org:mainfrom Mar 6, 2026
Merged
Conversation
cibuildwheel v3.4.0 builds cp314 wheels by default, but our setup-python step only listed 3.8-3.13. Add 3.14 so these wheels can be tested. Skip free-threaded (cp*t) builds for now since they require a free-threaded interpreter that our test infrastructure doesn't yet provision. Made-with: Cursor
scipy and matplotlib have dropped 32-bit Windows support, making win32 wheels untestable in CI. Since publish-package now gates on test_wheels, untestable jobs would block every release. Set CIBW_ARCHS_WINDOWS: AMD64 and remove the windows-x86 test matrix entry. The win32 platform detection in test_wheels.py is left in place for potential future use. Made-with: Cursor
Update the CIBW_BUILD PR filter from cp38/cp313 to cp38/cp314 so the newest supported version is exercised on every pull request. Made-with: Cursor
Add set -euxo pipefail so a curl failure propagates through the pipe instead of being silently swallowed. Add --fail and --retry 3 to curl, and verify libomp.dylib exists after extraction. Made-with: Cursor
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.
Summary
cibuildwheelnow builds cp314 wheels on all platforms,setup-pythonprovisions 3.14 for testing, and the PR filter exercisescp38+cp314as the extremal versions.cp*t-*is added toCIBW_SKIPto avoid untestable artifacts.CIBW_ARCHS_WINDOWS: AMD64restricts builds to 64-bit, and thewindows-x86test matrix entry is removed.Made with Cursor