From 19025b7b903143b5bddd94c5cb46ddc89925e7d3 Mon Sep 17 00:00:00 2001 From: Marcel Rosier Date: Sun, 9 Aug 2026 18:37:04 +0200 Subject: [PATCH] ci: re-add Python 3.14 to test matrix Python 3.14 was previously deferred (57c849c) because flake8/pyflakes was not yet 3.14-compatible. The project has since migrated from flake8 to ruff, which does not depend on Python's version support for linting. Local testing with Python 3.14 confirms all dependencies resolve and tests pass. --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 37712af..83ea9a2 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -13,7 +13,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest] - python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] + python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"] steps: - uses: actions/checkout@v4