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 07bf12f commit 14f6a34Copy full SHA for 14f6a34
1 file changed
.github/workflows/wheels-dependencies.sh
@@ -130,9 +130,15 @@ if [[ -n "$IS_MACOS" ]]; then
130
# libxau and libxdmcp cause an issue on macOS < 11
131
# remove cairo to fix building harfbuzz on arm64
132
# remove lcms2 and libpng to fix building openjpeg on arm64
133
- # remove zstd to avoid inclusion on x86_64
+ # remove jpeg-turbo to avoid inclusion on arm64
134
+ # remove webp and zstd to avoid inclusion on x86_64
135
# curl from brew requires zstd, use system curl
136
brew remove --ignore-dependencies libpng libtiff libxcb libxau libxdmcp curl cairo lcms2 zstd
137
+ if [[ "$CIBW_ARCHS" == "arm64" ]]; then
138
+ brew remove --ignore-dependencies jpeg-turbo
139
+ else
140
+ brew remove --ignore-dependencies webp
141
+ fi
142
143
brew install pkg-config
144
fi
0 commit comments