Align supported Python versions to 3.13/3.14 across packaging and CI#220
Open
Copilot wants to merge 4 commits into
Open
Align supported Python versions to 3.13/3.14 across packaging and CI#220Copilot wants to merge 4 commits into
Copilot wants to merge 4 commits into
Conversation
Copilot created this pull request from a session on behalf of
timlaing
May 27, 2026 18:34
View session
timlaing
approved these changes
May 27, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
Aligns the project’s declared and tested Python support to Python 3.13/3.14 so packaging metadata, lint/tooling configuration, tox settings, and CI coverage are consistent.
Changes:
- Update packaging/tooling metadata to target Python 3.13+ (including
requires-python, Ruff target, and classifiers). - Expand tox and CI test matrices to run on both Python 3.13 and 3.14.
- Adjust Home Assistant dev tooling: lower the dev pin in
requirements_dev.txtand refine the HA-dev workflow install/test classification behavior.
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| requirements_dev.txt | Lowers the pinned homeassistant dev dependency version to align with the supported Python range. |
| pyproject.toml | Updates requires-python to >=3.13, sets Ruff target to py313, adds a 3.13 classifier, and expands tox envs + GH Actions tox mapping. |
| .github/workflows/tests.yml | Expands the test workflow matrix to run on Python 3.13 and 3.14. |
| .github/workflows/home-assistant-dev.yml | Updates HA-dev dependency installation flow and adds pytest outcome classification + conditional workflow failure for integration incompatibility. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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 the project’s declared Python support to 3.13 and 3.14 so packaging constraints and CI expectations are consistent. It removes the previous 3.14-only constraint mismatch.
Packaging metadata and tooling alignment
requires-pythonto>=3.13inpyproject.tomlpy313Programming Language :: Python :: 3.13classifier["lint", "3.14"]to["lint", "3.13", "3.14"]CI coverage update
3.13and3.14Dependency constraint adjustment
homeassistantdev pin inrequirements_dev.txtfrom2026.5.1to2026.2.3to align with the updated Python support range