mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-11 04:07:21 +03:00
25 lines
938 B
Bash
Executable File
25 lines
938 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
brew install libtiff libjpeg openjpeg libimagequant webp little-cms2 freetype openblas libraqm
|
|
|
|
PYTHONOPTIMIZE=0 python3 -m pip install cffi
|
|
python3 -m pip install coverage
|
|
python3 -m pip install olefile
|
|
python3 -m pip install -U pytest
|
|
python3 -m pip install -U pytest-cov
|
|
python3 -m pip install pyroma
|
|
python3 -m pip install test-image-results
|
|
|
|
echo -e "[openblas]\nlibraries = openblas\nlibrary_dirs = /usr/local/opt/openblas/lib" >> ~/.numpy-site.cfg
|
|
# TODO Remove condition when numpy supports 3.10
|
|
if ! [ "$GHA_PYTHON_VERSION" == "3.10-dev" ]; then python3 -m pip install numpy ; fi
|
|
|
|
# TODO Remove when 3.8 / 3.9 includes setuptools 49.3.2+:
|
|
if [ "$GHA_PYTHON_VERSION" == "3.8" ]; then python3 -m pip install -U "setuptools>=49.3.2" ; fi
|
|
if [ "$GHA_PYTHON_VERSION" == "3.9" ]; then python3 -m pip install -U "setuptools>=49.3.2" ; fi
|
|
|
|
# extra test images
|
|
pushd depends && ./install_extra_test_images.sh && popd
|