Add Python 3.14 support, drop Python 3.10#1356
Merged
Conversation
Collaborator
Author
Status UpdatePython 3.14 was released on October 7, 2025. CI tests are currently failing because h5py doesn't have Python 3.14 wheels yet. Current Situation
Next StepsThis PR will remain in draft status until h5py 3.15 is released on PyPI. Once that happens, CI should pass and the PR can be marked ready for review. Tracking: h5py/h5py#2713 |
2dcbdf7 to
acec920
Compare
ff61919 to
3df2f32
Compare
- Add Python 3.14 classifier, remove Python 3.10 classifier - Change requires-python from ">=3.13,<3.14" to ">=3.13" - Fix formatting in dev dependencies list - Handle pandas 3.x copy-on-write ValueError in behavioral response tests - Add trailing newline to pr_code_changes.yaml Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
3df2f32 to
b0bb6b3
Compare
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
requires-pythonfrom>=3.13,<3.14to>=3.13(removes upper bound, allows 3.14+)Context
tables>=3.10.2constraint allows pip to select it when installing on 3.14Test results
Lint, documentation: passing. The 3 test failures (
test_reform_fiscal_impacts,test_dynamics_no_crash_simple,test_basic_behavioral_response_enabled) are pre-existing on main and not caused by this PR. Verified by opening a separate PR with zero code changes from main (PR #1510) which showed the exact same failures. These tests pass in the push-to-main workflow but fail in the PR workflow.