-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
downgrade version of esmf package to fix bug described in pangeo-data…
- Loading branch information
1 parent
8bfc403
commit 7382be7
Showing
1 changed file
with
5 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,10 +5,13 @@ | |
# Last Updated: 2023-11-08 ([email protected]) | ||
# Notes: Adds Python package to read Tripolar grids | ||
# Updated xesmf version from 0.3.0 because <0.7.1 does not work with mamba | ||
# Downgrade esmf to 8.3.1 due to know bug described in this issue: | ||
# https://github.com/pangeo-data/xESMF/issues/246 | ||
# Python Packages: | ||
# netcdf4==1.6.2 | ||
# xarray==2022.3.0 | ||
# xesmf==0.8.2 | ||
# esmf==8.3.1 | ||
# | ||
# Other Content: None | ||
################################################################################ | ||
|
@@ -26,3 +29,5 @@ mamba create -y --clone ${BASE_ENV} --name ${ENV_NAME} | |
mamba install -y --name ${ENV_NAME} -c conda-forge netcdf4==1.6.2 | ||
mamba install -y --name ${ENV_NAME} -c conda-forge xarray==2022.3.0 | ||
mamba install -y --name ${ENV_NAME} -c conda-forge xesmf==0.8.2 | ||
mamba install -y --name ${ENV_NAME} -c conda-forge esmf==8.3.1 | ||
|