Skip to content

Commit

Permalink
ci: Disable Python 3.13 wheel building
Browse files Browse the repository at this point in the history
Python 3.13 is not supported by wxPython yet so it is pointless for
Printrun to provide wheels for it for now.
  • Loading branch information
rockstorm101 committed Aug 25, 2024
1 parent 1bef6ee commit 2024b0e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 2024b0e

Please sign in to comment.