From e1819293f535eab73ca5e5c114fe3ed11bf5e738 Mon Sep 17 00:00:00 2001 From: Vincent Date: Mon, 16 Sep 2024 12:05:07 +0100 Subject: [PATCH] co: add Python 3.13 support to workflow for wheel build --- .github/workflows/wheel.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/wheel.yml b/.github/workflows/wheel.yml index d809fb854..5ed5ec1fc 100644 --- a/.github/workflows/wheel.yml +++ b/.github/workflows/wheel.yml @@ -17,7 +17,7 @@ jobs: strategy: fail-fast: false matrix: - python: [ "3.9", "3.10", "3.11", "3.12" ] + python: [ "3.9", "3.10", "3.11", "3.12", "3.13" ] runs-on: windows-2019 steps: @@ -31,6 +31,7 @@ jobs: with: python-version: ${{ matrix.python }} cache: 'pip' + allow-prereleases: true - name: Set up MSVC uses: ilammy/msvc-dev-cmd@v1