"vscode:/vscode.git/clone" did not exist on "3e84be612077c4c4a82779aecb47bec2129ef39a"
Commit dc8fe402 authored by Isuru Fernando's avatar Isuru Fernando
Browse files

build x86_64 thin wheel by default with py3.10

parent b35c219f
...@@ -540,6 +540,10 @@ function wrap_wheel_builder { ...@@ -540,6 +540,10 @@ function wrap_wheel_builder {
(macos_arm64_cross_build_setup && $@) (macos_arm64_cross_build_setup && $@)
fi fi
else else
$@ if [[ "$(uname -m)" == "x86_64" ]]; then
(macos_intel_native_build_setup && $@)
else
(macos_intel_cross_build_setup && $@)
fi
fi fi
} }
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment