From 83907807234890f34a4bea399c55e96b08e3f54d Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Tue, 30 Sep 2014 21:30:16 -0500 Subject: [PATCH] Fix typo in travis preventing mpl 1.0 from installing --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 8fea2c54..191a60e0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -46,7 +46,7 @@ before_install: source activate test; fi - travis_retry pip install wheel; - - if [[ $END != python=2.6* ]]; then + - if [[ $ENV != python=2.6* ]]; then travis_retry pip install --no-index --find-links=http://wheels.scikit-image.org/ matplotlib; else pip install matplotlib==1.0;