From 8c70b2f4c0871bb386edb4e8e0c7ec85746479c0 Mon Sep 17 00:00:00 2001 From: Jamie Morton Date: Tue, 15 Oct 2019 12:38:55 -0400 Subject: [PATCH 1/3] changing matplotlib backend --- .travis.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 0fe45e8..cf0c40c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,8 +5,7 @@ language: python env: - PYVERSION=3.5 USE_CYTHON=TRUE MAKE_DOC=TRUE before_install: - - "export DISPLAY=:99.0" - - "sh -e /etc/init.d/xvfb start" + - export MPLBACKEND='Agg' - wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh - chmod +x miniconda.sh - ./miniconda.sh -b From 669867d8f8a4d21c15fd7e8488f16b40ccb5436c Mon Sep 17 00:00:00 2001 From: Jamie Morton Date: Tue, 15 Oct 2019 12:45:12 -0400 Subject: [PATCH 2/3] something weird with conda update --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index cf0c40c..e59174d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,7 +10,8 @@ before_install: - chmod +x miniconda.sh - ./miniconda.sh -b - export PATH=/home/travis/miniconda3/bin:$PATH - - conda update --yes conda + - conda config --set always_yes yes + - conda update -q conda - conda info -a install: - wget -q https://raw.githubusercontent.com/qiime2/environment-files/master/latest/staging/qiime2-latest-py36-linux-conda.yml From b24d69d59919431db962f673b37b0f9d4398287b Mon Sep 17 00:00:00 2001 From: Jamie Morton Date: Tue, 15 Oct 2019 12:57:56 -0400 Subject: [PATCH 3/3] dumb conda --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index e59174d..1280960 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,6 +11,7 @@ before_install: - ./miniconda.sh -b - export PATH=/home/travis/miniconda3/bin:$PATH - conda config --set always_yes yes + - conda install -c anaconda setuptools - conda update -q conda - conda info -a install: