Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Only install pyroma 4.0 in Cygwin #6759

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion .ci/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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