From 4bd0a350d68e0a3c778f5de279e48e640a320237 Mon Sep 17 00:00:00 2001 From: Trevor James Smith <10819524+Zeitsperre@users.noreply.github.com> Date: Wed, 23 Oct 2024 16:10:09 -0400 Subject: [PATCH] sync pins --- environment.yml | 4 ++-- src/rook/utils/atlas_fixes.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/environment.yml b/environment.yml index b00bf6b..473e1a8 100644 --- a/environment.yml +++ b/environment.yml @@ -4,7 +4,7 @@ channels: - defaults dependencies: - python >=3.9,<3.12 - - pywps >=4.6 + - pywps >=4.5.2,<4.7 - jinja2 >=3.1.4 - click >=8.1.7 - psutil >=6.0.0 @@ -16,7 +16,7 @@ dependencies: - dask >=2021.12 - netcdf4 >=1.4 - daops >=0.11.0,<0.12.0 - - clisops >=0.11.0 + - clisops >=0.14.0 - roocs-utils >=0.6.9,<0.7.0 - roocs-grids >=0.1.2 # workflow diff --git a/src/rook/utils/atlas_fixes.py b/src/rook/utils/atlas_fixes.py index a2ba1b4..000369a 100644 --- a/src/rook/utils/atlas_fixes.py +++ b/src/rook/utils/atlas_fixes.py @@ -16,7 +16,7 @@ def add_project_id(ds_id, ds): def fix_deflation(ds: Union[xr.Dataset, xr.DataArray]): - """See also: clisops.ops.base_operaton._remove_redundant_fill_values""" + """See also: clisops.ops.base_operation._remove_redundant_fill_values""" if isinstance(ds, xr.Dataset): var_list = list(ds.coords) + list(ds.data_vars) elif isinstance(ds, xr.DataArray):