From aaf9c0fefd346f631059637a20d062f8cea2f126 Mon Sep 17 00:00:00 2001 From: Andrew Murray Date: Fri, 25 Nov 2022 18:37:58 +1100 Subject: [PATCH] Only install pyroma 4.0 in Cygwin --- .ci/install.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.ci/install.sh b/.ci/install.sh index 518b66acc23..461b1d546a1 100755 --- a/.ci/install.sh +++ b/.ci/install.sh @@ -34,9 +34,9 @@ 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 -python3 -m pip install pyroma if [[ $(uname) != CYGWIN* ]]; then + python3 -m pip install pyroma python3 -m pip install numpy # PyQt6 doesn't support PyPy3 @@ -57,5 +57,6 @@ if [[ $(uname) != CYGWIN* ]]; then # extra test images pushd depends && ./install_extra_test_images.sh && popd else + python3 -m pip install pyroma==4.0 cd depends && ./install_extra_test_images.sh && cd .. fi