Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unpin netcdf4 and pandas to check what is breaking [all tests ci] #1111

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion echopype/utils/coding.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)},
Expand Down
6 changes: 2 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
dask[array,distributed]
jinja2
# https://github.com/Unidata/netcdf4-python/issues/1175#issuecomment-1173142506
netCDF4<1.6
netCDF4>=1.6
numpy
pynmea2
pytz
scipy
xarray
# https://github.com/pydata/xarray/pull/7650
pandas<2
pandas
zarr
fsspec
s3fs
Expand Down