Merged
Conversation
PyO3 0.21 only supports Python up to 3.12. Bumping to 0.22 adds Python 3.13 support while maintaining backward compatibility with the existing gil-refs API (no code changes needed). Also bumps maturin build requirement from 0.14 to 1.x to ensure proper Python 3.13 wheel builds, and updates CI actions to latest versions (checkout v4, setup-python v5, upload/download-artifact v4). Fixes #8 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
The --find-interpreter flag discovers all Python versions on CI runners, including Python 3.14 which PyO3 0.22 doesn't support. Specify explicit interpreter versions (3.10-3.13) to avoid this. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
On Windows, maturin needs the actual Python interpreters installed for each version. Install 3.10-3.13 via setup-python so maturin can find them when building wheels with -i. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
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
No code changes to
lib.rs— PyO3 0.22 still supports thegil-refsAPI used in the codebase (though deprecated; a follow-up issue will track migration toBoundAPI).Fixes #8
Test plan
maturin buildsucceeds with Python 3.13 locallypytestpasses on Python 3.13 locallypytestpasses on Python 3.11 locally (backward compat)🤖 Generated with Claude Code