Conversation
The release pipeline was broken because build_wheels (a prerequisite for
upload_pypi) could not succeed:
* Replace the macos-11 runner, removed by GitHub on 2024-06-28, with
macos-13 (Intel) and macos-14 (Apple silicon).
* Bump pypa/cibuildwheel v2.21.3 -> v3.4.1 so the advertised cp314
(Python 3.14) target actually builds (requires cibuildwheel >= 3.1.0).
* Skip free-threaded builds (CIBW_SKIP=*t-*); the C extension is not
validated for the free-threading ABI.
README updates:
* Document that prebuilt wheels are now published to PyPI; source build
(C compiler) is only a fallback.
* Replace the dead Travis CI badge with a GitHub Actions badge and drop
the defunct Gitter badge.
* Refresh the tox environments list and sample output, and describe the
actual release workflow (multi-platform wheels + sdist via Trusted
Publishing).
Co-authored-by: Cursor <cursoragent@cursor.com>
Bump the build_wheels Linux matrix entry from ubuntu-22.04 to ubuntu-24.04. Linux wheels are built inside manylinux containers, so the host runner is swapped (not duplicated) to avoid producing redundant wheels. Co-authored-by: Cursor <cursoragent@cursor.com>
Contributor
Author
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.
The release pipeline was broken because build_wheels (a prerequisite for upload_pypi) could not succeed:
README updates: