Skip to content
This repository was archived by the owner on Oct 8, 2024. It is now read-only.

Commit b424d2f

Browse files
committed
Added multibuild workaround
1 parent 113eecf commit b424d2f

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

config.sh

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,15 @@ LIBWEBP_VERSION=1.2.0
1818
BZIP2_VERSION=1.0.8
1919
LIBXCB_VERSION=1.14
2020

21+
function pyinst_fname_for_version {
22+
local inst_ext=$(pyinst_ext_for_version $1)
23+
if [ "${PLAT:-}" == "arm64" ]; then
24+
echo "python-$1-macos11.${inst_ext}"
25+
else
26+
echo "python-$1-macosx$2.${inst_ext}"
27+
fi
28+
}
29+
2130
function pre_build {
2231
# Any stuff that you need to do before you start building the wheels
2332
# Runs in the root directory of this repository.

0 commit comments

Comments
 (0)