Extend CI and package metadata for Python 3.13/3.14 support#360
Merged
Extend CI and package metadata for Python 3.13/3.14 support#360
Conversation
Co-authored-by: alexlib <747110+alexlib@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Improve GitHub workflows to include Python 3.13 and 3.14
Extend CI and package metadata for Python 3.13/3.14 support
Mar 10, 2026
There was a problem hiding this comment.
Pull request overview
Expands OpenPIV’s declared and exercised Python version support by updating CI and distribution metadata to include Python 3.13/3.14.
Changes:
- Extend GitHub Actions test matrix to run on Python 3.13 and 3.14.
- Add Python 3.14 Trove classifier in both
pyproject.tomlandsetup.pyto align published metadata.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
.github/workflows/testing.yml |
Expands CI Python version matrix to include 3.13/3.14. |
pyproject.toml |
Adds Python 3.14 classifier to Poetry package metadata. |
setup.py |
Adds Python 3.14 classifier to setuptools metadata. |
Comments suppressed due to low confidence (1)
.github/workflows/testing.yml:14
- The CI workflow pins Poetry to 1.5.0, but the committed
poetry.lockwas generated by Poetry 2.3.2 (seepoetry.lock:1). Poetry 1.5.0 may fail to read/install from this lock file, and adding 3.13/3.14 will make CI failures more likely. Please align the workflow to use a Poetry version compatible with the lock file (e.g., bump to 2.3.2+), or regenerate the lock with the pinned Poetry version and keep them in sync.
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
poetry-version: [1.5.0]
steps:
- uses: actions/checkout@v6
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.
This updates project automation and packaging metadata to cover Python 3.13 and 3.14. The goal is to ensure these versions are exercised in CI and explicitly declared as supported for distribution metadata.
CI coverage expansion
.github/workflows/testing.ymltest matrix to run on Python 3.13 and 3.14 in addition to existing versions.Packaging metadata alignment
pyproject.tomlandsetup.pyso published metadata matches CI-supported interpreter versions.✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.