Do not install NumPy 1.19.0 on macOS PyPy

This commit is contained in:
Andrew Murray 2020-06-21 13:43:48 +10:00
parent 34d77a7578
commit f01a6743ac
2 changed files with 7 additions and 1 deletions

View File

@ -11,7 +11,11 @@ pip install -U pytest
pip install -U pytest-cov
pip install pyroma
pip install test-image-results
pip install numpy
if [[ $PYTHON_VERSION == "pypy3" ]]; then
pip install numpy!=1.19.0
else
pip install numpy
fi
# extra test images
pushd depends && ./install_extra_test_images.sh && popd

View File

@ -73,6 +73,8 @@ jobs:
if: startsWith(matrix.os, 'macOS')
run: |
.github/workflows/macos-install.sh
env:
PYTHON_VERSION: ${{ matrix.python-version }}
- name: Build
run: |