From fa88242ad5b4da602e975ea3bd1056a6b0c1fa90 Mon Sep 17 00:00:00 2001 From: Ashley Barnes <53282288+ashjbarnes@users.noreply.github.com> Date: Wed, 25 Sep 2024 14:10:02 -0600 Subject: [PATCH] Update pyproject.toml New (24-9-0) xarray update causes error when calling bathymetry. A "strict" flag is added to one of the dask function calls which causes a crash. Need to freeze the version of xarray to fix for now, until we patch ahead of updating to new xarray version --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index dacad296..e9609ddc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,7 +14,7 @@ dependencies = [ "netCDF4", "numpy >= 1.17.0, < 2.0.0", "scipy >= 1.2.0", - "xarray", + "xarray == 2024.7.0", "xesmf >= 0.8.4", "f90nml >= 1.4.1", ]