mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-12-28 19:06:18 +03:00
Merge pull request #207 from radarhere/pypy_numpy
Limit numpy on 64-bit pypy 3.7 as well
This commit is contained in:
commit
e168f90e0f
|
@ -147,8 +147,12 @@ function run_tests {
|
||||||
brew install openblas
|
brew install openblas
|
||||||
echo -e "[openblas]\nlibraries = openblas\nlibrary_dirs = /usr/local/opt/openblas/lib" >> ~/.numpy-site.cfg
|
echo -e "[openblas]\nlibraries = openblas\nlibrary_dirs = /usr/local/opt/openblas/lib" >> ~/.numpy-site.cfg
|
||||||
fi
|
fi
|
||||||
if [[ "$MB_PYTHON_VERSION" == pypy3.7-* ]] && [[ $(uname -m) == "i686" ]]; then
|
if [[ "$MB_PYTHON_VERSION" == pypy3.7-* ]]; then
|
||||||
python3 -m pip install numpy==1.19.5
|
if [[ $(uname -m) == "i686" ]]; then
|
||||||
|
python3 -m pip install numpy==1.19.5
|
||||||
|
else
|
||||||
|
python3 -m pip install numpy==1.20.3
|
||||||
|
fi
|
||||||
else
|
else
|
||||||
python3 -m pip install numpy
|
python3 -m pip install numpy
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue
Block a user