From 2024b0efab44c84d566df366ff98b3a9ef6bb805 Mon Sep 17 00:00:00 2001 From: Rock Storm Date: Sun, 25 Aug 2024 19:30:18 +0200 Subject: [PATCH] ci: Disable Python 3.13 wheel building Python 3.13 is not supported by wxPython yet so it is pointless for Printrun to provide wheels for it for now. --- .github/workflows/build-wheels.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-wheels.yml b/.github/workflows/build-wheels.yml index 66f497e0..2dff6582 100644 --- a/.github/workflows/build-wheels.yml +++ b/.github/workflows/build-wheels.yml @@ -29,9 +29,9 @@ jobs: env: # we only support what's supported by wxPython, therefore we skip: # * PyPy Python implementation - # * Python 3.6 and 3.7 versions + # * Python 3.6, 3.7 and 3.13 versions # * musl C implementation - CIBW_SKIP: "pp* cp36* cp37* *-musllinux*" + CIBW_SKIP: "pp* cp36* cp37* cp313* *-musllinux*" # produce ARM wheels on Linux in addition to 32 and 64 bit CIBW_ARCHS_LINUX: auto aarch64 # produce wheels for macOS to support both Intel and Apple silicon