From 7e4f80679eb2fbb76183edadc4c6efa33ef161e3 Mon Sep 17 00:00:00 2001 From: "Edgar R. M" Date: Wed, 9 Aug 2023 14:13:31 -0600 Subject: [PATCH] Add Python 3.12 to test matrix (#728) --- .github/workflows/tests.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index e8c604f3..29b61033 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -33,7 +33,7 @@ jobs: strategy: matrix: os: [Ubuntu, MacOS, Windows] - python-version: [3.7, 3.8, 3.9, "3.10", "3.11"] + python-version: [3.7, 3.8, 3.9, "3.10", "3.11", "3.12"] defaults: run: shell: bash @@ -45,6 +45,7 @@ jobs: uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} + allow-prereleases: true - name: Get full Python version id: full-python-version