Skip to content

Commit 762be9e

Browse files
scripts/gh_release.py: avoid problems when building macos-arm64 wheels.
We no longer set inputs_wheels_macos_arm64 by default. This avoids building cross-compiled arm64 wheels on Github's macos-13, which compare different to native arm64 wheels built on Github's macos-14.
1 parent 2d68701 commit 762be9e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/gh_release.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ def get_bool(name, default=0):
175175
inputs_wheels_linux_aarch64 = get_bool('inputs_wheels_linux_aarch64', inputs_wheels_default)
176176
inputs_wheels_linux_auto = get_bool('inputs_wheels_linux_auto', inputs_wheels_default)
177177
inputs_wheels_linux_pyodide = get_bool('inputs_wheels_linux_pyodide', 0)
178-
inputs_wheels_macos_arm64 = get_bool('inputs_wheels_macos_arm64', inputs_wheels_default)
178+
inputs_wheels_macos_arm64 = get_bool('inputs_wheels_macos_arm64', 0)
179179
inputs_wheels_macos_auto = get_bool('inputs_wheels_macos_auto', inputs_wheels_default)
180180
inputs_wheels_windows_auto = get_bool('inputs_wheels_windows_auto', inputs_wheels_default)
181181
inputs_wheels_cps = os.environ.get('inputs_wheels_cps')

0 commit comments

Comments
 (0)