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.
2 parents 485a062 + fb8db83 commit 86b42a9Copy full SHA for 86b42a9
1 file changed
.github/workflows/wheels-dependencies.sh
@@ -16,7 +16,7 @@ ARCHIVE_SDIR=pillow-depends-main
16
17
# Package versions for fresh source builds
18
FREETYPE_VERSION=2.13.2
19
-if [[ "$MB_ML_VER" != 2014 ]]; then
+if [[ -n "$IS_MACOS" ]] || ([[ "$MB_ML_VER" != 2014 ]] && [[ -z "$SANITIZER" ]]); then
20
HARFBUZZ_VERSION=10.0.1
21
else
22
HARFBUZZ_VERSION=8.5.0
@@ -156,12 +156,10 @@ if [[ -n "$IS_MACOS" ]]; then
156
fi
157
158
brew install meson pkg-config
159
-elif [[ "$MB_ML_LIBC" == "manylinux" ]]; then
160
- if [[ "$HARFBUZZ_VERSION" != 8.5.0 ]]; then
161
- yum install -y meson
162
- fi
163
-else
+elif [[ -n "$IS_ALPINE" ]]; then
164
apk add meson
+elif [[ "$HARFBUZZ_VERSION" != 8.5.0 ]]; then
+ yum install -y meson
165
166
167
wrap_wheel_builder build
0 commit comments