Add support for Python 3.14#219
Merged
Merged
Conversation
Bump requires-python upper bound to <3.15 and add 3.14 to the CI test matrix. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
|
|
Elad-Zaharan
approved these changes
Jun 16, 2026
natangqm
added a commit
that referenced
this pull request
Jun 18, 2026
* Release v0.6.0 Bump version to 0.6.0 and finalize changelog. Add missing changelog entries for Python version support changes that landed since v0.5.0: - Added support for Python 3.13 and 3.14 (#214, #219) - Removed support for Python 3.9 (#214) Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * Fix release build: bump build Python from 3.9 to 3.12 The package build (reusable-build.yaml) ran on Python 3.9, but requires-python is >=3.10 since #214 dropped 3.9 support. `pip install -e .[build]` would abort on 3.9, breaking both the draft-release build and the PyPI publish build. The wheel is py3-none-any (pure Python), so any supported version builds an equivalent artifact. Co-Authored-By: Claude Opus 4.8 (1M context) <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
requires-pythonupper bound from<3.14to<3.15inpyproject.toml"3.14"to the CI test matrix default in.github/workflows/run_tests.yamlNotes
numpy,scipy,qm-qua,typeguard,qualibrate-config) ship 3.14-compatible wheels — the CI run on this PR will confirm.[tool.black] target-version = ["py310"]left unchanged (it's the minimum target, not a cap).reusable-build.yaml) still builds on 3.9 — that's the build host only, unrelated to runtime support, so left as-is.🤖 Generated with Claude Code