From 450359ac872d8c58e06a14a3bd0cd5ad1ec508b5 Mon Sep 17 00:00:00 2001 From: Paul Romano Date: Fri, 18 Jan 2019 08:25:58 -0600 Subject: [PATCH] Make sure numpy gets upgraded on Travis --- tools/ci/travis-install.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tools/ci/travis-install.sh b/tools/ci/travis-install.sh index 670f28f33b..10c168d129 100755 --- a/tools/ci/travis-install.sh +++ b/tools/ci/travis-install.sh @@ -9,11 +9,10 @@ if [[ $DAGMC = 'y' ]]; then ./tools/ci/travis-install-dagmc.sh fi -# Upgrade pip before doing anything else +# Upgrade pip, pytest, numpy before doing anything else pip install --upgrade pip - -# pytest installed by default -- make sure we get latest pip install --upgrade pytest +pip install --upgrade numpy # Install mpi4py for MPI configurations if [[ $MPI == 'y' ]]; then