summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2018-01-17 10:28:03 -0700
committerCharles Harris <charlesr.harris@gmail.com>2018-01-17 12:19:23 -0700
commite404eedce6fa218932ff9305382e310ca2f7ec22 (patch)
treeb1d76e59270d2965eca2533eecd5814aa402efa5 /tools
parenta6705ebf502504465047faee75fced6280a1231f (diff)
downloadnumpy-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-xtools/travis-test.sh7
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()