From 74ef03ad6056b0fc00435f5b02e05748020c5628 Mon Sep 17 00:00:00 2001 From: Aaron Barany Date: Wed, 4 Oct 2023 15:15:42 -0700 Subject: [PATCH] Build wheel for Windows on Python 3.12 --- .github/workflows/CI.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index a43dfd0..1af21e9 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -148,13 +148,18 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-python@v4 with: - python-version: "3.x" + python-version: | + 3.8 + 3.9 + 3.10 + 3.11 + 3.12 architecture: ${{ matrix.target }} - name: Build wheels uses: PyO3/maturin-action@v1 with: target: ${{ matrix.target }} - args: --release --out dist --interpreter '3.8 3.9 3.10 3.11' + args: --release --out dist --interpreter '3.8 3.9 3.10 3.11 3.12' - name: Upload wheels uses: actions/upload-artifact@v3 with: