Skip to content

Commit

Permalink
Merge 24f82b3 into 5ba86d6
Browse files Browse the repository at this point in the history
  • Loading branch information
jlaura committed Sep 26, 2018
2 parents 5ba86d6 + 24f82b3 commit 2988175
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ install:
- conda config --add channels usgs-astrogeology
- conda config --add channels conda-forge
- if $HAS_GDAL; then
conda install libgdal gdal numpy pyproj h5py pvl scipy protobuf affine jinja2 networkx pandas sqlalchemy pyyaml ncurses pytest pytest-cov sh coveralls nbsphinx;
conda env update -n test -f environment.yml;
else
conda install numpy pyproj h5py pvl scipy protobuf affine jinja2 networkx pandas sqlalchemy pyyaml ncurses pytest pytest-cov sh coveralls nbsphinx;
conda env update -n test -f environment_noGDAL.yml;
fi

script:
Expand Down
9 changes: 6 additions & 3 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ channels:
- conda-forge
- usgs-astrogeology
dependencies:
- libgdal
- gdal
- libgdal
- gdal
- numpy
- pyproj
- h5py
Expand All @@ -19,4 +19,7 @@ dependencies:
- pyyaml
- ncurses
- pytest
- pytest-cov
- pytest-cov
- sh
- coveralls
- nbsphinx
23 changes: 23 additions & 0 deletions environment_noGDAL.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: plio
channels:
- conda-forge
- usgs-astrogeology
dependencies:
- numpy
- pyproj
- h5py
- pvl
- scipy
- protobuf
- affine
- jinja2
- networkx
- pandas
- sqlalchemy
- pyyaml
- ncurses
- pytest
- pytest-cov
- sh
- coveralls
- nbsphinx

0 comments on commit 2988175

Please sign in to comment.