mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-10 19:56:47 +03:00
18 lines
368 B
Bash
Executable File
18 lines
368 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
brew install libtiff libjpeg openjpeg libimagequant webp little-cms2 freetype
|
|
|
|
PYTHONOPTIMIZE=0 pip install cffi
|
|
pip install coverage
|
|
pip install olefile
|
|
pip install -U pytest
|
|
pip install -U pytest-cov
|
|
pip install pyroma
|
|
pip install test-image-results
|
|
pip install numpy
|
|
|
|
# extra test images
|
|
pushd depends && ./install_extra_test_images.sh && popd
|