From afd6562d7673de699cc31df224179a55678eeb19 Mon Sep 17 00:00:00 2001 From: Chris Markiewicz Date: Mon, 17 Jul 2023 20:00:35 -0400 Subject: [PATCH] CI: Add 3.12 pre-release tests --- .github/workflows/pre-release.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pre-release.yml b/.github/workflows/pre-release.yml index 630f09d99..4431c7135 100644 --- a/.github/workflows/pre-release.yml +++ b/.github/workflows/pre-release.yml @@ -33,7 +33,7 @@ jobs: strategy: matrix: os: ['ubuntu-latest', 'windows-latest', 'macos-latest'] - python-version: ["3.9", "3.10", "3.11"] + python-version: ["3.9", "3.10", "3.11", "3.12"] architecture: ['x64', 'x86'] install: ['pip'] check: ['test'] @@ -54,6 +54,8 @@ jobs: architecture: x86 - os: macos-latest architecture: x86 + - python-version: '3.12' + architecture: x86 env: DEPENDS: ${{ matrix.depends }} @@ -72,6 +74,7 @@ jobs: with: python-version: ${{ matrix.python-version }} architecture: ${{ matrix.architecture }} + allow-prereleases: true - name: Display Python version run: python -c "import sys; print(sys.version)" - name: Create virtual environment