From 5925d8a2dd2684b1bbe3c159053cdb15af8895c8 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sat, 20 May 2023 07:32:20 -0400 Subject: [PATCH] build: run tests on 3.12 ...and use pre-releases if needed --- .github/workflows/coverage.yml | 2 ++ .github/workflows/testsuite.yml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index ab0c1142a..ab94a83e3 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -48,6 +48,7 @@ jobs: - "3.9" - "3.10" - "3.11" + - "3.12" - "pypy-3.7" - "pypy-3.8" - "pypy-3.9" @@ -77,6 +78,7 @@ jobs: uses: "actions/setup-python@v4" with: python-version: "${{ matrix.python-version }}" + allow-prereleases: true cache: pip cache-dependency-path: 'requirements/*.pip' diff --git a/.github/workflows/testsuite.yml b/.github/workflows/testsuite.yml index b0f0ee6ca..8ab3608bc 100644 --- a/.github/workflows/testsuite.yml +++ b/.github/workflows/testsuite.yml @@ -49,6 +49,7 @@ jobs: - "3.9" - "3.10" - "3.11" + - "3.12" - "pypy-3.7" - "pypy-3.9" exclude: @@ -65,6 +66,7 @@ jobs: uses: "actions/setup-python@v4" with: python-version: "${{ matrix.python-version }}" + allow-prereleases: true cache: pip cache-dependency-path: 'requirements/*.pip'