From e108952f0b2a483ceceacc5a8d1fbcf769bf9810 Mon Sep 17 00:00:00 2001 From: David Brochart Date: Wed, 9 Oct 2024 10:51:09 +0200 Subject: [PATCH] Don't publish wheels for Windows on Python 3.13 (#174) --- .github/workflows/publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index ce8cae6..25364e5 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -43,9 +43,9 @@ jobs: matrix: platform: - target: x64 - interpreter: 3.8 3.9 3.10 3.11 3.12 3.13 + interpreter: 3.8 3.9 3.10 3.11 3.12 - target: x86 - interpreter: 3.8 3.9 3.10 3.11 3.12 3.13 + interpreter: 3.8 3.9 3.10 3.11 3.12 steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5