From bcfe61495b803a79a198699f2acd9d4c0d309d3e Mon Sep 17 00:00:00 2001 From: Andrew Murray Date: Sun, 5 Apr 2020 13:14:08 +1000 Subject: [PATCH] Update pip to fix pyqt5 install --- .ci/install.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.ci/install.sh b/.ci/install.sh index 8e819631a..180fa6582 100755 --- a/.ci/install.sh +++ b/.ci/install.sh @@ -7,6 +7,7 @@ sudo apt-get -qq install libfreetype6-dev liblcms2-dev python3-tk\ ghostscript libffi-dev libjpeg-turbo-progs libopenjp2-7-dev\ cmake imagemagick libharfbuzz-dev libfribidi-dev +pip install --upgrade pip PYTHONOPTIMIZE=0 pip install cffi pip install coverage pip install olefile @@ -20,7 +21,7 @@ if [[ $TRAVIS_PYTHON_VERSION == 3.* ]]; then # "ERROR: Could not find a version that satisfies the requirement pyqt5" if [[ $TRAVIS_CPU_ARCH == "amd64" ]]; then sudo apt-get -qq install pyqt5-dev-tools - pip install pyqt5!=5.14.1 + pip install pyqt5 fi fi