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

Commit e168f90

Browse files
authored
Merge pull request #207 from radarhere/pypy_numpy
Limit numpy on 64-bit pypy 3.7 as well
2 parents d70abd5 + 172a58d commit e168f90

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

config.sh

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,8 +147,12 @@ function run_tests {
147147
brew install openblas
148148
echo -e "[openblas]\nlibraries = openblas\nlibrary_dirs = /usr/local/opt/openblas/lib" >> ~/.numpy-site.cfg
149149
fi
150-
if [[ "$MB_PYTHON_VERSION" == pypy3.7-* ]] && [[ $(uname -m) == "i686" ]]; then
151-
python3 -m pip install numpy==1.19.5
150+
if [[ "$MB_PYTHON_VERSION" == pypy3.7-* ]]; then
151+
if [[ $(uname -m) == "i686" ]]; then
152+
python3 -m pip install numpy==1.19.5
153+
else
154+
python3 -m pip install numpy==1.20.3
155+
fi
152156
else
153157
python3 -m pip install numpy
154158
fi

0 commit comments

Comments
 (0)