From ceb1428848fa1cf9d1d3684099340083bfbe7760 Mon Sep 17 00:00:00 2001
From: Adam Paquette <acp263@nau.edu>
Date: Wed, 27 Dec 2017 12:23:51 -0700
Subject: [PATCH] Added scipy dependency to travis file

---
 .travis.yml | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index 6d32e5b..17a2190 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -7,7 +7,7 @@ branches:
 os:
   - linux
   - osx
-  
+
 env:
   - PYTHON_VERSION=3.5
   - PYTHON_VERSION=3.6
@@ -30,24 +30,24 @@ before_install:
   # Create the env
   - conda create -q -n test python=$PYTHON_VERSION
   - source activate test
-  
+
 install:
   - conda config --add channels conda-forge
   - conda config --add channels jlaura
-  - conda install -c conda-forge gdal h5py 
-  - conda install pandas sqlalchemy pyyaml networkx affine protobuf
+  - conda install -c conda-forge gdal h5py
+  - conda install pandas sqlalchemy pyyaml networkx affine protobuf scipy
   - pip install pvl
 
   # Development installation
   - conda install pytest  pytest-cov sh anaconda-client
-  
+
 script:
   - pytest --cov=plio
 
 after_success:
   - coveralls
   # Need to do the build in the root
-  - source deactivate 
+  - source deactivate
   - conda install conda-build anaconda-client
   - conda config --set anaconda_upload yes
   - conda build --token $CONDA_UPLOAD_TOKEN --python $PYTHON_VERSION recipe
-- 
GitLab