From 159566e1a01353dbb80078a3f7f9149d560150d5 Mon Sep 17 00:00:00 2001 From: Peter Law Date: Sat, 16 Sep 2023 18:10:25 +0100 Subject: [PATCH] Add Python 3.12 as a tested platform --- .github/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e2cb23ac5..a565425dc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,8 +7,8 @@ jobs: strategy: matrix: os: [ubuntu-20.04, windows-2019] - python-version: ["3.11", "3.10", "3.9", "3.8", "3.7", "3.6"] - environment: ['3.8', '3.11', '3.10', '3.9', '3.7', '3.6', 'interpreter'] + python-version: ["3.12", "3.11", "3.10", "3.9", "3.8", "3.7", "3.6"] + environment: ['3.8', '3.12', '3.11', '3.10', '3.9', '3.7', '3.6', 'interpreter'] steps: - name: Checkout code uses: actions/checkout@v4 @@ -19,10 +19,12 @@ jobs: if: ${{ matrix.environment != 'interpreter' }} with: python-version: ${{ matrix.environment }} + allow-prereleases: true - uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} + allow-prereleases: true - name: Install dependencies run: 'pip install .[testing]'