mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-11 12:17:14 +03:00
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:
commit
9e81644097
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue
Block a user