From 6b79e740ee144098ab83b91c9bc3ad26388bc9f5 Mon Sep 17 00:00:00 2001 From: konstantin Date: Fri, 7 Nov 2025 13:10:11 +0100 Subject: [PATCH] chore(ci): also test Python 3.14; run linter in Python 3.14 instead of 3.13 --- .github/workflows/tests.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 04e06d2..c4b9cad 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -42,7 +42,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 with: - python-version: "3.13" + python-version: "3.14" - name: "Install tox" run: | pip install tox @@ -59,7 +59,7 @@ jobs: strategy: fail-fast: true matrix: - 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 - uses: actions/setup-python@v5