Merge pull request #238 from radarhere/numpy_versions

Limit numpy on 32-bit to 1.21.5 for Python 3.8 and 3.9
This commit is contained in:
Hugo van Kemenade 2022-01-02 08:55:54 +02:00 committed by GitHub
commit 9e81644097
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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