Pillow/.ci/install.sh

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

75 lines
2.2 KiB
Bash
Raw Normal View History

2017-01-19 18:54:54 +03:00
#!/bin/bash
2020-04-06 15:23:41 +03:00
aptget_update()
{
if [ ! -z $1 ]; then
echo ""
echo "Retrying apt-get update..."
echo ""
fi
output=`sudo apt-get update 2>&1`
echo "$output"
if [[ $output == *[WE]:\ * ]]; then
return 1
fi
}
2022-02-02 07:14:31 +03:00
if [[ $(uname) != CYGWIN* ]]; then
aptget_update || aptget_update retry || aptget_update retry
fi
2020-04-06 15:23:41 +03:00
2017-01-19 18:54:54 +03:00
set -e
2022-02-02 07:14:31 +03:00
if [[ $(uname) != CYGWIN* ]]; then
sudo apt-get -qq install libfreetype6-dev liblcms2-dev python3-tk\
ghostscript libffi-dev libjpeg-turbo-progs libopenjp2-7-dev\
cmake meson imagemagick libharfbuzz-dev libfribidi-dev\
sway wl-clipboard libopenblas-dev
fi
python3 -m pip install --upgrade pip
python3 -m pip install --upgrade wheel
2023-11-08 14:58:58 +03:00
# TODO Update condition when cffi supports 3.13
if ! [[ "$GHA_PYTHON_VERSION" == "3.13" ]]; then PYTHONOPTIMIZE=0 python3 -m pip install cffi ; fi
2020-10-29 14:41:29 +03:00
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
2017-01-19 18:54:54 +03:00
2022-02-02 07:14:31 +03:00
if [[ $(uname) != CYGWIN* ]]; then
2023-11-08 14:58:58 +03:00
# TODO Update condition when NumPy supports 3.13
if ! [[ "$GHA_PYTHON_VERSION" == "3.13" ]]; then python3 -m pip install numpy ; fi
2017-01-19 18:54:54 +03:00
# PyQt6 doesn't support PyPy3
if [[ $GHA_PYTHON_VERSION == 3.* ]]; then
2023-04-11 14:13:49 +03:00
sudo apt-get -qq install libegl1 libxcb-cursor0 libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-randr0 libxcb-render-util0 libxcb-shape0 libxkbcommon-x11-0
python3 -m pip install pyqt6
2022-02-02 07:14:31 +03:00
fi
2017-01-19 18:54:54 +03:00
2023-10-21 19:42:48 +03:00
# Pyroma uses non-isolated build and fails with old setuptools
if [[
$GHA_PYTHON_VERSION == pypy3.9
|| $GHA_PYTHON_VERSION == 3.8
|| $GHA_PYTHON_VERSION == 3.9
]]; then
# To match pyproject.toml
python3 -m pip install "setuptools>=67.8"
fi
2022-02-02 07:14:31 +03:00
# webp
pushd depends && ./install_webp.sh && popd
2019-07-03 16:03:09 +03:00
2022-02-02 07:14:31 +03:00
# libimagequant
pushd depends && ./install_imagequant.sh && popd
# raqm
pushd depends && ./install_raqm.sh && popd
# extra test images
pushd depends && ./install_extra_test_images.sh && popd
else
cd depends && ./install_extra_test_images.sh && cd ..
fi