We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8602e86 commit 6f2d3ebCopy full SHA for 6f2d3eb
cibuildwheel/platforms/macos.py
@@ -289,8 +289,11 @@ def setup_python(
289
# For arm64, the minimal deployment target is 11.0.
290
# On x86_64 (or universal2), use 10.9 as a default.
291
# CPython 3.12.6+ needs 10.13.
292
+ # CPython 3.14.0 needs 10.15.
293
if config_is_arm64:
294
default_target = "11.0"
295
+ elif Version(python_configuration.version) >= Version("3.14"):
296
+ default_target = "10.15"
297
elif Version(python_configuration.version) >= Version("3.12"):
298
default_target = "10.13"
299
elif python_configuration.identifier.startswith("pp") and Version(
0 commit comments