Pillow/.github/workflows/macos-install.sh
Andrew Murray 1c032ff5db Revert "Install NumPy with OpenBLAS"
This reverts commit c82483e35a.
2022-11-10 10:37:22 +11:00

20 lines
498 B
Bash
Executable File

#!/bin/bash
set -e
brew install libtiff libjpeg openjpeg libimagequant webp little-cms2 freetype libraqm
PYTHONOPTIMIZE=0 python3 -m pip install cffi
python3 -m pip install coverage
python3 -m pip install defusedxml
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
python3 -m pip install pyroma
python3 -m pip install numpy
# extra test images
pushd depends && ./install_extra_test_images.sh && popd