Skip to content

Commit

Permalink
Merge pull request #8140 from radarhere/macos
Browse files Browse the repository at this point in the history
Ignore brew dependencies for libraqm on macOS 13
  • Loading branch information
hugovk committed Jun 15, 2024
2 parents cdd2bbe + dfd5356 commit d87c1c1
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/macos-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,15 @@ brew install \
ghostscript \
libimagequant \
libjpeg \
libraqm \
libtiff \
little-cms2 \
openjpeg \
webp
if [[ "$ImageOS" == "macos13" ]]; then
brew install --ignore-dependencies libraqm
else
brew install libraqm
fi
export PKG_CONFIG_PATH="/usr/local/opt/openblas/lib/pkgconfig"

# TODO Update condition when cffi supports 3.13
Expand Down

0 comments on commit d87c1c1

Please sign in to comment.