Pillow/.github/workflows/macos-install.sh

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
791 B
Bash
Raw Normal View History

2019-09-22 23:09:59 +03:00
#!/bin/bash
set -e
2024-08-19 13:50:45 +03:00
if [[ "$ImageOS" == "macos13" ]]; then
brew uninstall gradle maven
fi
2024-01-30 23:10:22 +03:00
brew install \
freetype \
ghostscript \
libimagequant \
libjpeg \
libtiff \
little-cms2 \
openjpeg \
webp
if [[ "$ImageOS" == "macos13" ]]; then
brew install --ignore-dependencies libraqm
else
brew install libraqm
fi
2023-09-18 15:31:50 +03:00
export PKG_CONFIG_PATH="/usr/local/opt/openblas/lib/pkgconfig"
2019-09-22 23:09:59 +03:00
2020-10-29 14:41:29 +03:00
python3 -m pip install coverage
python3 -m pip install defusedxml
python3 -m pip install ipython
2020-10-29 14:41:29 +03:00
python3 -m pip install olefile
python3 -m pip install -U pytest
python3 -m pip install -U pytest-cov
python3 -m pip install -U pytest-timeout
2020-10-29 14:41:29 +03:00
python3 -m pip install pyroma
python3 -m pip install numpy
2019-09-22 23:09:59 +03:00
# extra test images
pushd depends && ./install_extra_test_images.sh && popd