From 9c9d1ef45992bcb0b654261edb6e7f9aa2461ee8 Mon Sep 17 00:00:00 2001 From: Nils Vu Date: Wed, 13 May 2026 12:04:49 +0200 Subject: [PATCH 1/3] Test up to Py3.14 --- .github/workflows/Tests.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/Tests.yaml b/.github/workflows/Tests.yaml index 2f3a771..6f27ff3 100644 --- a/.github/workflows/Tests.yaml +++ b/.github/workflows/Tests.yaml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.9", "3.10", "3.11"] + python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"] steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 From a765b7ff1d4660496df8def07c8a82589bdff435 Mon Sep 17 00:00:00 2001 From: Nils Vu Date: Wed, 13 May 2026 12:05:59 +0200 Subject: [PATCH 2/3] Fix small bug in black config --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index b2a0918..b48f7b6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -35,7 +35,7 @@ where = ["src"] [tool.black] target-version = ["py39"] line-length = 80 -preview = "true" +preview = true enable-unstable-feature = ["string_processing"] [tool.isort] From c3f71d7f61193bc6df001fb6a672f654d23e4e4f Mon Sep 17 00:00:00 2001 From: Nils Vu Date: Wed, 13 May 2026 12:06:13 +0200 Subject: [PATCH 3/3] Add pytest annotations in GitHub CI --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index b48f7b6..7f1360c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,6 +23,7 @@ dev = [ "black", "isort", "pytest", + "pytest-github-actions-annotate-failures", ] docs = [ "sphinx>=7.2",