Skip to content

Commit d87c1c1

Browse files
authored
Merge pull request python-pillow#8140 from radarhere/macos
Ignore brew dependencies for libraqm on macOS 13
2 parents cdd2bbe + dfd5356 commit d87c1c1

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/macos-install.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,15 @@ brew install \
77
ghostscript \
88
libimagequant \
99
libjpeg \
10-
libraqm \
1110
libtiff \
1211
little-cms2 \
1312
openjpeg \
1413
webp
14+
if [[ "$ImageOS" == "macos13" ]]; then
15+
brew install --ignore-dependencies libraqm
16+
else
17+
brew install libraqm
18+
fi
1519
export PKG_CONFIG_PATH="/usr/local/opt/openblas/lib/pkgconfig"
1620

1721
# TODO Update condition when cffi supports 3.13

0 commit comments

Comments
 (0)