From d4cbf9978f739c00e8fba341d6f4fd9221b5a280 Mon Sep 17 00:00:00 2001 From: Wenzel Jakob Date: Fri, 6 Oct 2023 22:49:36 +0200 Subject: [PATCH] removed Python 3.12 patch version from GHA script --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 47b3307a..b8bf34b8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,7 +21,7 @@ jobs: fail-fast: false matrix: os: ['ubuntu-latest', 'windows-2022', 'macos-latest'] - python: ['3.8', '3.9', '3.10', '3.11', '3.12.0', 'pypy3.9-v7.3.12', 'pypy3.10-v7.3.12'] + python: ['3.8', '3.9', '3.10', '3.11', '3.12', 'pypy3.9-v7.3.12', 'pypy3.10-v7.3.12'] name: "Python ${{ matrix.python }} / ${{ matrix.os }}" runs-on: ${{ matrix.os }}