From 512c2bfd4e1562b7d0968002b1c4c243f5e16f2f Mon Sep 17 00:00:00 2001 From: Anushan Fernando Date: Wed, 11 Sep 2024 10:02:32 -0700 Subject: [PATCH] Exclude netcdf4 version 1.7.1 due to buggy behaviour. See discussion on https://github.com/Unidata/netcdf4-python/issues/1343. PiperOrigin-RevId: 673435320 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 027c3839..f0f9df35 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -30,7 +30,7 @@ dependencies = [ "equinox @ git+https://github.com/patrick-kidger/equinox@1e601672d38d2c4d483535070a3572d8e8508a20", "PyYAML>=6.0.1", "xarray>=2023.12.0", - "netcdf4>=1.6.5", + "netcdf4>=1.6.5,!=1.7.1", "h5netcdf>=1.3.0", "scipy>=1.12.0", "jaxtyping>=0.2.28",