diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2018-01-17 10:28:03 -0700 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2018-01-17 12:19:23 -0700 |
commit | e404eedce6fa218932ff9305382e310ca2f7ec22 (patch) | |
tree | b1d76e59270d2965eca2533eecd5814aa402efa5 /tools | |
parent | a6705ebf502504465047faee75fced6280a1231f (diff) | |
download | numpy-e404eedce6fa218932ff9305382e310ca2f7ec22.tar.gz |
MAINT: Update zesty to artful for i386 testing
The zesty release hit end of life Jan 13, 2018 and it seems that travis
ci tests are failing due to a failure to fetch it. This updates to use
artful. When the bionic LTS comes out in April, we should update again.
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/travis-test.sh | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/tools/travis-test.sh b/tools/travis-test.sh index ca9f236a2..bd9f79c22 100755 --- a/tools/travis-test.sh +++ b/tools/travis-test.sh @@ -89,14 +89,13 @@ setup_chroot() sudo chroot $DIR bash -c "apt-get update" # faster operation with preloaded eatmydata - sudo chroot $DIR bash -c "apt-get install -qq -y --force-yes eatmydata" + sudo chroot $DIR bash -c "apt-get install -qq -y eatmydata" echo '/usr/$LIB/libeatmydata.so' | \ sudo tee -a $DIR/etc/ld.so.preload # install needed packages - sudo chroot $DIR bash -c "apt-get install -qq -y --force-yes \ - libatlas-dev libatlas-base-dev gfortran \ - python-dev python-nose python-pip cython" + sudo chroot $DIR bash -c "apt-get install -qq -y \ + libatlas-base-dev gfortran python-dev python-nose python-pip cython" } run_test() |