Skip to content

Commit 3f8a1c1

Browse files
committed
Updated FreeType to 2.14.1 on macOS
1 parent 4aef5d0 commit 3f8a1c1

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/wheels-dependencies.sh

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,11 @@ ARCHIVE_SDIR=pillow-depends-main
9393
# Package versions for fresh source builds. Version numbers with "Patched"
9494
# annotations have a source code patch that is required for some platforms. If
9595
# you change those versions, ensure the patch is also updated.
96-
FREETYPE_VERSION=2.13.3
96+
if [[ -n "$IOS_SDK" ]]; then
97+
FREETYPE_VERSION=2.13.3
98+
else
99+
FREETYPE_VERSION=2.14.1
100+
fi
97101
HARFBUZZ_VERSION=11.5.0
98102
LIBPNG_VERSION=1.6.50
99103
JPEGTURBO_VERSION=3.1.2
@@ -314,6 +318,10 @@ function build {
314318

315319
if [[ -n "$IS_MACOS" ]]; then
316320
# Custom freetype build
321+
if [[ -z "$IOS_SDK" ]]; then
322+
build_simple sed 4.9 https://mirrors.middlendian.com/gnu/sed
323+
fi
324+
317325
build_simple freetype $FREETYPE_VERSION https://download.savannah.gnu.org/releases/freetype tar.gz --with-harfbuzz=no
318326
else
319327
build_freetype

0 commit comments

Comments
 (0)