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

20 lines
498 B
Bash
Raw Normal View History

2019-09-22 23:09:59 +03:00
#!/bin/bash
set -e
brew install libtiff libjpeg openjpeg libimagequant webp little-cms2 freetype libraqm
2019-09-22 23:09:59 +03:00
2020-10-29 14:41:29 +03:00
PYTHONOPTIMIZE=0 python3 -m pip install cffi
python3 -m pip install coverage
python3 -m pip install defusedxml
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
2020-06-21 10:03:15 +03:00
2022-08-26 11:09:18 +03:00
python3 -m pip install numpy
2019-09-22 23:09:59 +03:00
# extra test images
pushd depends && ./install_extra_test_images.sh && popd