Conversation
Add Python 3.13 to the GitHub Actions test matrix so CI runs on both 3.12 and 3.13. Add the 3.13 classifier to pyproject.toml. Part of PyAutoLabs/PyAutoConf#89. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
The previous commit skipped all [optional] deps on 3.13 but tests need numba and pynufft. Only tensorflow-probability lacks 3.13 wheels. Also add fail-fast: false so both matrix jobs always run. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
pynufft's build process tries to compile scipy from source in an isolated build environment, failing without system OpenBLAS. Install only numba on 3.13; pynufft remains available via [optional] on 3.12. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Pip's resolver backtracks through scipy, h5py, contourpy versions on 3.13 because exact-pinned deps constrain the solution space. Pre-install the heavy compiled packages from binary wheels first. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
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
Add Python 3.13 to the CI matrix and classifiers. On 3.13, optional extras are skipped and numba is installed directly (pynufft's build process tries to compile scipy from source in an isolated environment, which fails without system OpenBLAS). Both 3.12 and 3.13 pass.
API Changes
None — internal changes only.
Test Plan
🤖 Generated with Claude Code