Skip to content
This repository was archived by the owner on Oct 8, 2024. It is now read-only.

Commit 9e81644

Browse files
authored
Merge pull request #238 from radarhere/numpy_versions
Limit numpy on 32-bit to 1.21.5 for Python 3.8 and 3.9
2 parents 02f9db5 + 5b1d6a8 commit 9e81644

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

config.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,8 @@ function run_tests {
147147
python3 -m pip install numpy==1.20.3
148148
elif [[ "$MB_PYTHON_VERSION" == 3.10 ]] && [[ $(uname -m) == "i686" ]]; then
149149
python3 -m pip install numpy==1.21.4
150+
elif [[ "$MB_PYTHON_VERSION" == 3.8 || "$MB_PYTHON_VERSION" == 3.9 ]] && [[ $(uname -m) == "i686" ]]; then
151+
python3 -m pip install numpy==1.21.5
150152
else
151153
python3 -m pip install numpy
152154
fi

0 commit comments

Comments
 (0)