From bebc4c45fc0f1070fd78ce2565ef73c48608bb7b Mon Sep 17 00:00:00 2001 From: Maarten van Gompel Date: Mon, 22 Sep 2025 20:41:40 +0200 Subject: [PATCH 1/2] ci: added python 3.13 to windows build --- .github/workflows/wheels.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index ad1eae3..520bc04 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -49,7 +49,7 @@ jobs: uses: PyO3/maturin-action@v1 with: target: ${{ matrix.target }} - args: --release --out dist -i 3.10 3.11 3.12 + args: --release --out dist -i 3.10 3.11 3.12 3.13 sccache: 'true' - name: Upload wheels uses: actions/upload-artifact@v4 From ece934f9d59dd3c7fdf2da065df99d3a8692150f Mon Sep 17 00:00:00 2001 From: Maarten van Gompel Date: Mon, 22 Sep 2025 20:56:33 +0200 Subject: [PATCH 2/2] ci: drop 32-bit windows support --- .github/workflows/wheels.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 520bc04..4d7b9a1 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -38,7 +38,7 @@ jobs: runs-on: windows-latest strategy: matrix: - target: [x64, x86] + target: [x64] steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5