From 9fce6690b3666160681833540de6c55e922de5eb Mon Sep 17 00:00:00 2001 From: Ryan Grout Date: Sat, 22 Sep 2018 00:14:59 -0500 Subject: [PATCH] Use documented travis environment variable for python version --- etc/ci-install.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/etc/ci-install.sh b/etc/ci-install.sh index e09dbccf..47f7670e 100644 --- a/etc/ci-install.sh +++ b/etc/ci-install.sh @@ -3,7 +3,7 @@ set -x # Install dependencies # Use conda **ONLY** for numpy and pandas (if not pulling from master), this # speeds up the builds a lot. Use the normal pip install for the rest. -conda create -n odo numpy=1.11.2 python=$python +conda create -n odo numpy=1.11.2 python=${TRAVIS_PYTHON_VERSION} source activate odo # update setuptools and pip @@ -24,5 +24,3 @@ pip install -r etc/requirements_ci.txt # datashape pip install git+git://github.com/blaze/datashape.git - -pip list