-
Notifications
You must be signed in to change notification settings - Fork 154
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Created testing environments and updated utests.py to use NCL from conda
- Loading branch information
Bill Ladwig
committed
Apr 1, 2019
1 parent
b293dca
commit d1f40ce
Showing
3 changed files
with
46 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Create full conda environment for development, including some useful tools | ||
name: testenv2 | ||
channels: | ||
- conda-forge | ||
dependencies: | ||
- python=2 | ||
- wrapt | ||
- numpy | ||
- matplotlib | ||
- netcdf4 | ||
- xarray | ||
- jupyter | ||
- sphinx | ||
- sphinx_rtd_theme | ||
- pycodestyle | ||
- cartopy | ||
- basemap | ||
- clang_osx-64 | ||
- gfortran_osx-64 | ||
- pynio | ||
- ncl | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Create full conda environment for development, including some useful tools | ||
name: testenv3 | ||
channels: | ||
- conda-forge | ||
dependencies: | ||
- python=3 | ||
- wrapt | ||
- numpy | ||
- matplotlib | ||
- netcdf4 | ||
- xarray | ||
- jupyter | ||
- sphinx | ||
- sphinx_rtd_theme | ||
- pycodestyle | ||
- cartopy | ||
- basemap | ||
- clang_osx-64 | ||
- gfortran_osx-64 | ||
- pynio | ||
- ncl | ||
|