Limit numpy on 32-bit to 1.21.5 for Python 3.8 and 3.9

This commit is contained in:
Andrew Murray 2022-01-02 15:18:37 +11:00
parent 02f9db5ce9
commit 5b1d6a8753

View File

@ -147,6 +147,8 @@ function run_tests {
python3 -m pip install numpy==1.20.3
elif [[ "$MB_PYTHON_VERSION" == 3.10 ]] && [[ $(uname -m) == "i686" ]]; then
python3 -m pip install numpy==1.21.4
elif [[ "$MB_PYTHON_VERSION" == 3.8 || "$MB_PYTHON_VERSION" == 3.9 ]] && [[ $(uname -m) == "i686" ]]; then
python3 -m pip install numpy==1.21.5
else
python3 -m pip install numpy
fi