Stop building wheels for MacOS (#19225)

This commit is contained in:
Andrew Morgan
2025-11-26 10:32:39 +00:00
committed by GitHub
parent ba65d8c351
commit 2741ead569
2 changed files with 3 additions and 1 deletions

View File

@@ -0,0 +1 @@
Stop building release wheels for MacOS.

View File

@@ -395,7 +395,8 @@ build-backend = "poetry.core.masonry.api"
# We skip:
# - free-threaded cpython builds: these are not currently supported.
# - i686: We don't support 32-bit platforms.
skip = "cp3??t-* *i686*"
# - *macosx*: we don't support building wheels for MacOS.
skip = "cp3??t-* *i686* *macosx*"
# Enable non-default builds. See the list of available options:
# https://cibuildwheel.pypa.io/en/stable/options#enable
#