diff options
author | Ralf Gommers <ralf.gommers@gmail.com> | 2020-04-28 10:58:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-28 10:58:24 +0200 |
commit | e67737e2e63e36161c8f80715c0a347e46a06d91 (patch) | |
tree | 361b2b8e1f91a5222d60ef033dd7f39e28b77b89 | |
parent | 7e3fd81c039b0e22715c4e6eb63439bdf5a620bf (diff) | |
parent | d9a2ba3bb321097f04d631523d9d9cef8698160e (diff) | |
download | numpy-e67737e2e63e36161c8f80715c0a347e46a06d91.tar.gz |
Merge pull request #16094 from mattip/pypy-7.3.1
TST: use latest released PyPy instead of nightly builds
-rwxr-xr-x | tools/pypy-test.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/pypy-test.sh b/tools/pypy-test.sh index e98c12587..9da1ba5f8 100755 --- a/tools/pypy-test.sh +++ b/tools/pypy-test.sh @@ -6,8 +6,8 @@ set -o pipefail # Print expanded commands set -x -sudo apt-get -yq update -sudo apt-get -yq install libatlas-base-dev liblapack-dev gfortran-5 python3-urllib3 +#sudo apt-get -yq update +#sudo apt-get -yq install libatlas-base-dev liblapack-dev gfortran-5 python3-urllib3 F77=gfortran-5 F90=gfortran-5 \ # Download the proper OpenBLAS x64 precompiled library @@ -27,8 +27,8 @@ include_dirs = $target/lib:$LIB runtime_library_dirs = $target/lib EOF -echo getting PyPy 3.6 nightly -wget -q http://buildbot.pypy.org/nightly/py3.6/pypy-c-jit-latest-linux64.tar.bz2 -O pypy.tar.bz2 +echo getting PyPy 3.6-v7.3.1 +wget -q https://downloads.python.org/pypy/pypy3.6-v7.3.1-linux64.tar.bz2 -O pypy.tar.bz2 mkdir -p pypy3 (cd pypy3; tar --strip-components=1 -xf ../pypy.tar.bz2) pypy3/bin/pypy3 -mensurepip |