Added PyPy3.8

This commit is contained in:
Andrew Murray 2022-02-21 12:32:29 +11:00
parent b8ceb43863
commit edbfb3c6d0
2 changed files with 3 additions and 5 deletions

View File

@ -17,7 +17,7 @@ jobs:
fail-fast: false fail-fast: false
matrix: matrix:
os: [ "ubuntu-20.04", "macos-latest" ] os: [ "ubuntu-20.04", "macos-latest" ]
python: [ "pypy3.7-7.3.7", "3.7", "3.8", "3.9", "3.10" ] python: [ "pypy3.7-7.3.8", "pypy3.8-7.3.8", "3.7", "3.8", "3.9", "3.10" ]
platform: [ "x86_64", "i686" ] platform: [ "x86_64", "i686" ]
macos-target: [ "10.10" ] macos-target: [ "10.10" ]
exclude: exclude:
@ -75,7 +75,7 @@ jobs:
fail-fast: false fail-fast: false
matrix: matrix:
os: [ "ubuntu-20.04", "macos-latest" ] os: [ "ubuntu-20.04", "macos-latest" ]
python: [ "pypy3.7-7.3.7", "3.7", "3.8", "3.9", "3.10" ] python: [ "pypy3.7-7.3.8", "pypy3.8-7.3.8", "3.7", "3.8", "3.9", "3.10" ]
platform: [ "x86_64", "i686" ] platform: [ "x86_64", "i686" ]
macos-target: [ "10.10" ] macos-target: [ "10.10" ]
exclude: exclude:

View File

@ -165,9 +165,7 @@ 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.* || "$MB_PYTHON_VERSION" == 3.10 ]] && [[ $(uname -m) == "i686" ]]; then
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 python3 -m pip install numpy==1.21.4
elif [[ "$MB_PYTHON_VERSION" == 3.8 || "$MB_PYTHON_VERSION" == 3.9 ]] && [[ $(uname -m) == "i686" ]]; then elif [[ "$MB_PYTHON_VERSION" == 3.8 || "$MB_PYTHON_VERSION" == 3.9 ]] && [[ $(uname -m) == "i686" ]]; then
python3 -m pip install numpy==1.21.5 python3 -m pip install numpy==1.21.5