From 749e85aa7ecd6c73982e8479265cdc5164e67717 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrik=20Sch=C3=B6nfeldt?= Date: Tue, 26 Nov 2024 20:47:34 +0100 Subject: [PATCH] Use only Python 3.10, 3.11 in GH tests For some reason, reporting for Python 3.12 does not work. --- .github/workflows/tox_pytests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tox_pytests.yml b/.github/workflows/tox_pytests.yml index 76b50a9cf..79683e2cb 100644 --- a/.github/workflows/tox_pytests.yml +++ b/.github/workflows/tox_pytests.yml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.10", "3.11", "3.12", "3.13"] + python-version: ["3.10", "3.11"] steps: - uses: actions/checkout@v1