mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-12-25 09:26:16 +03:00
20 lines
450 B
Bash
20 lines
450 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
sudo installer -pkg /Library/Developer/CommandLineTools/Packages/macOS_SDK_headers_for_macOS_10.14.pkg -target /
|
||
|
|
||
|
brew install libtiff libjpeg webp little-cms2
|
||
|
|
||
|
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
|