Skip to content

Commit 26b71a1

Browse files
committed
Run the tests on the Python that Home Assistant requires
The suite imports Home Assistant now, and 2026.8 needs Python 3.14.2, so the 3.13 runner could not install it at all.
1 parent 6498d49 commit 26b71a1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/validate.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- uses: actions/checkout@v4
3131
- uses: actions/setup-python@v5
3232
with:
33-
python-version: "3.13"
33+
python-version: "3.14"
3434
- run: pip install -r requirements_test.txt
3535
- run: python -m pytest tests/ -q
3636

@@ -41,7 +41,7 @@ jobs:
4141
- uses: actions/checkout@v4
4242
- uses: actions/setup-python@v5
4343
with:
44-
python-version: "3.13"
44+
python-version: "3.14"
4545
- run: pip install ruff
4646
# F821 catches a name used but never imported, which is exactly what
4747
# slipped through into a release and only surfaced as a runtime error

0 commit comments

Comments
 (0)