Skip to content

Commit

Permalink
Adding changes to fix travis CI
Browse files Browse the repository at this point in the history
  • Loading branch information
josephhardinee committed Jan 24, 2017
1 parent a116a61 commit 8175c7c
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions continuous_integration/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,23 +29,30 @@ conda create -n testenv --yes pip python=$PYTHON_VERSION
source activate testenv

# Install dependencies
conda install --yes numpy scipy matplotlib netcdf4 nose sphinx numpydoc h5py
conda install --yes numpy scipy matplotlib netcdf4 nose sphinx numpydoc hdf4=4.2.12
conda install --yes sphinx_rtd_theme


if [[ $PYTHON_VERSION == '2.7' ]]; then
conda install --yes sphinx numpydoc h5py
conda install --yes sphinx numpydoc hdf4=4.2.12
conda install --yes sphinx_rtd_theme
pip install sphinxcontrib-bibtex
pip install xmltodict
pip install pytmatrix
fi
if [[ $PYTHON_VERSION == '3.4' ]]; then
pip install pytmatrix
conda install --yes hdf4=4.2.12
fi
if [[ $PYTHON_VERSION == '3.5' ]]; then
pip install pytmatrix
conda install --yes hdf4=4.2.12
fi
if [[ $PYTHON_VERSION == '3.6' ]]; then
pip install pytmatrix
conda install --yes hdf4=4.2.12
fi


# install coverage modules
pip install nose-cov
Expand Down

0 comments on commit 8175c7c

Please sign in to comment.