From 82176abea05c03ee127b3de4d4670c5301b0fcc0 Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Mon, 6 Oct 2014 05:20:23 -0500 Subject: [PATCH] Only install pyamg on py2.6 and py2.7 --- .travis.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 190d2830..81dabf69 100644 --- a/.travis.yml +++ b/.travis.yml @@ -94,7 +94,10 @@ script: - if [[ $ENV != python=3.4* ]]; then travis_retry easy_install SimpleITK; fi - - travis_retry pip install pyamg + # PyAMG is only available on Py2.6 and Py2.7 + - if [[ $ENV == python=2.* ]]; then + travis_retry pip install pyamg; + fi - travis_retry pip install --no-deps astropy # Matplotlib settings - must be updated after PyQt is installed