From 5cab2e7125e96a659b379a4b10920cad6f386841 Mon Sep 17 00:00:00 2001 From: Filipe Fernandes Date: Wed, 2 Aug 2023 08:01:23 -0300 Subject: [PATCH 1/3] unpin netcdf4 --- requirements.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 6d0150fb2..f4f56b305 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,6 @@ dask[array,distributed] jinja2 -# https://github.com/Unidata/netcdf4-python/issues/1175#issuecomment-1173142506 -netCDF4<1.6 +netCDF4>=1.6 numpy pynmea2 pytz From 9f673e09cb96b517bf5c850c17178815567e72f1 Mon Sep 17 00:00:00 2001 From: Filipe Fernandes Date: Wed, 2 Aug 2023 08:49:26 -0300 Subject: [PATCH 2/3] unpin pandas --- requirements.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index f4f56b305..714e544ec 100644 --- a/requirements.txt +++ b/requirements.txt @@ -6,8 +6,7 @@ pynmea2 pytz scipy xarray -# https://github.com/pydata/xarray/pull/7650 -pandas<2 +pandas zarr fsspec s3fs From 35edc8c4d5d95503b631e17c4af36abcdc6b15a8 Mon Sep 17 00:00:00 2001 From: Filipe Fernandes Date: Wed, 2 Aug 2023 14:45:48 -0300 Subject: [PATCH 3/3] test --- echopype/utils/coding.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/echopype/utils/coding.py b/echopype/utils/coding.py index 1c8a88ef5..04167ee31 100644 --- a/echopype/utils/coding.py +++ b/echopype/utils/coding.py @@ -15,7 +15,7 @@ } COMPRESSION_SETTINGS = { - "netcdf4": {"zlib": True, "complevel": 4}, + "netcdf4": {"zlib": False, "complevel": 4}, # zarr compressors were chosen based on xarray results "zarr": { "float": {"compressor": zarr.Blosc(cname="zstd", clevel=3, shuffle=2)},