diff options
author | Warren Weckesser <warren.weckesser@gmail.com> | 2020-03-15 10:50:12 -0400 |
---|---|---|
committer | Warren Weckesser <warren.weckesser@gmail.com> | 2020-03-15 10:50:12 -0400 |
commit | dc9d3f9708155bb85a47ebbec3f5c6aeac6ca735 (patch) | |
tree | a74522d52116fa9494317497a922ae416ded373e /tools | |
parent | 27d01c959d7bf49ae3cf7be4e1d48bb59da3f40b (diff) | |
download | numpy-dc9d3f9708155bb85a47ebbec3f5c6aeac6ca735.tar.gz |
MAINT: CI: Run 'apt-get update' in tools/pypy-test.sh
Run 'apt-get update' before 'apt-get install ...'
This should fix the failure to build PyPy in the Linux_PyPy3
azure pipelines CI test.
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/pypy-test.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/pypy-test.sh b/tools/pypy-test.sh index 5e77d8046..e98c12587 100755 --- a/tools/pypy-test.sh +++ b/tools/pypy-test.sh @@ -6,6 +6,7 @@ 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 F77=gfortran-5 F90=gfortran-5 \ |