From e806ef03aa61b9d975a1b0af9ba1d6c1df83cfde Mon Sep 17 00:00:00 2001 From: Angus Gibson Date: Mon, 1 Jul 2024 16:09:13 +1000 Subject: [PATCH] Remove Python 3.11 from testing For some reason it seems to hang indefinitely. We'll just disable it for the moment (3.12 works, anyway). --- .github/workflows/testing.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 9ec79bb0..b0a281c5 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -23,7 +23,7 @@ jobs: shell: bash -el {0} strategy: matrix: - python-version: ["3.9", "3.10", "3.11", "3.12"] + python-version: ["3.9", "3.10", "3.12"] steps: - uses: actions/checkout@v3