From 785e427aeb07b3c53c01bbb66397d73bc65e55f1 Mon Sep 17 00:00:00 2001 From: Tim Swast Date: Mon, 11 Jun 2018 07:47:43 -0700 Subject: [PATCH] TST: Lock miniconda version The latest version of miniconda seems to be having a hard time with the `google.cloud` and `google.api_core` namespaced packages again. Hopefully reverting back to an old version of miniconda fixes it. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index cbd76951..e4c62bb7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -25,7 +25,7 @@ install: if [ -f "$REQ.pip" ]; then pip install --upgrade nox-automation ; else - wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh; + wget http://repo.continuum.io/miniconda/Miniconda3-4.3.30-Linux-x86_64.sh -O miniconda.sh; bash miniconda.sh -b -p $HOME/miniconda ; export PATH="$HOME/miniconda/bin:$PATH" ; hash -r ;