Conversation
Builds x86_64 wheels for CPython 3.9-3.13 with cibuildwheel on version tags and on demand, smoke-tests that every compiled module imports from the repaired wheel, and attaches wheels plus sdist to the GitHub Release on tags. This lets deployments pip install a prebuilt wheel instead of compiling the C++ extensions on every machine. Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_0165n5fATQ2icKWKHQXY6XEo
Owner
Author
|
CI status on The one check that is not is Build and publish Python distributions to TestPyPI, which has been sitting in "queued" for an hour. That workflow ( Generated by Claude Code |
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
Adds a
Build wheelsGitHub Actions workflow so cluster deployments canpip installa prebuilt wheel instead of compiling the C++ extensions on every machine.manylinux_2_28image (glibc ≥ 2.28, so RHEL/Rocky 8+, Ubuntu 20.04+ and similar).workflow_dispatch; also on PRs that touch the workflow file itself.Notes
manylinux_2_39(verified withauditwheel showon a local build), which is why this has to go through cibuildwheel rather than a plainpython -m build.auditwheel repairhas nothing to vendor.lib/maxvolpyis not covered: it's a separate package and itssetup.pyhard-codes-march=native, so a portable wheel for it needs a small patch first.🤖 Generated with Claude Code
https://claude.ai/code/session_0165n5fATQ2icKWKHQXY6XEo
Generated by Claude Code