Add Python 3.13 support and bump CANA to v1.0.1#56
Merged
Conversation
- Bump schematodes from 1.0.0 to 1.0.1 (adds Python 3.13 support via PyO3 0.22) - Add Python 3.13 to CI test matrix - Update CI actions (checkout v4, setup-python v5) Fixes #52 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
The pre-compiled C files were generated by an older Cython that uses Python C API functions changed in 3.13: - _PyLong_AsByteArray signature changed (5 -> 6 args) - _PyGen_SetStopIterationValue removed Regenerated with Cython 3.2.4 to fix compilation on Python 3.13. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
The exact-pinned requirements.txt has old versions (e.g. pandas 2.2.2) that don't have Python 3.13 wheels. Instead, let `pip install .` resolve compatible versions via setup.py's install_requires which uses >= constraints. 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
requirements.txt(adds Python 3.13 support via PyO3 0.22)cutils.c,cboolean_canalization.c) with Cython 3 for Python 3.13 compatibilityFixes #52
Test plan
🤖 Generated with Claude Code