We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de4d624 commit 136ab89Copy full SHA for 136ab89
1 file changed
config.sh
@@ -133,9 +133,11 @@ function run_tests {
133
brew install openblas
134
echo -e "[openblas]\nlibraries = openblas\nlibrary_dirs = /usr/local/opt/openblas/lib" >> ~/.numpy-site.cfg
135
fi
136
- if [[ "$MB_PYTHON_VERSION" == pypy3.7-* ]]; then
+ if [[ "$MB_PYTHON_VERSION" == pypy3.7-* ]] && [[ $(uname -m) == "i686" ]]; then
137
python3 -m pip install numpy==1.20.3
138
- elif [[ "$MB_PYTHON_VERSION" != 3.10 ]] || [[ "$PLAT" != "x86_64" ]]; then
+ elif [[ "$MB_PYTHON_VERSION" == 3.10 ]] && [[ $(uname -m) == "i686" ]]; then
139
+ python3 -m pip install numpy==1.21.4
140
+ else
141
python3 -m pip install numpy
142
143
0 commit comments