Conversation
- move the matrix to supported 24.04/2022/14 runners and refresh checkout, artifact, and publish actions - bump cibuildwheel to 3.2.1 and explicitly target CPython 3.9 through 3.14 builds - document Python 3.12-3.14 support in the package classifiers
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| 'Programming Language :: Python :: 3.9', | ||
| 'Programming Language :: Python :: 3.10', | ||
| 'Programming Language :: Python :: 3.11', | ||
| 'Programming Language :: Python :: 3.12', | ||
| 'Programming Language :: Python :: 3.13', | ||
| 'Programming Language :: Python :: 3.14', |
There was a problem hiding this comment.
Avoid unsupported Python 3.14 classifier
The new classifier string 'Programming Language :: Python :: 3.14' is not yet recognised by PyPI’s Trove classifier list, so publishing a release will fail validation before any files are uploaded. Until PyPI adds this classifier, keep the list to versions that actually exist (3.12 and 3.13 are fine) or the upload_pypi job will 400 and block releases even though the wheel workflow succeeds.
Useful? React with 👍 / 👎.
Give each wheel job a unique artifact name and merge them when the release job downloads artifacts. Also name the sdist artifact explicitly so it can be fetched separately. This avoids the 409 artifact conflict macOS hit when multiple jobs all uploaded "artifact".
Closes #14