Skip to content

Add tests for grib idx & reinflate #528

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

Merged
merged 9 commits into from
Jan 23, 2025
Merged
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
3 changes: 2 additions & 1 deletion ci/environment-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ dependencies:
- requests
- aiohttp
- pytest-cov
- fsspec
- pytest-subtests
- fsspec<=2024.12.0
- dask
- scipy
- s3fs
Expand Down
10 changes: 6 additions & 4 deletions ci/environment-py310.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,12 @@ dependencies:
- requests
- aiohttp
- pytest-cov
- fsspec
- pytest-subtests
- fsspec<=2024.12.0
- dask
- scipy
- s3fs
- gcsfs
- python-blosc
- flake8
- black
Expand All @@ -31,6 +33,6 @@ dependencies:
- pyopenssl
- tifffile
- netCDF4
- pip:
- git+https://github.com/fsspec/filesystem_spec
- ipfsspec
# - pip:
# - git+https://github.com/fsspec/filesystem_spec
# - ipfsspec
8 changes: 5 additions & 3 deletions ci/environment-py311.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,12 @@ dependencies:
- requests
- aiohttp
- pytest-cov
- fsspec
- pytest-subtests
- fsspec<=2024.12.0
- dask
- scipy
- s3fs
- gcsfs
- python-blosc
- flake8
- fastparquet
Expand All @@ -32,5 +34,5 @@ dependencies:
- tifffile
- rioxarray
- netCDF4
- pip:
- git+https://github.com/fsspec/filesystem_spec
# - pip:
# - git+https://github.com/fsspec/filesystem_spec
8 changes: 5 additions & 3 deletions ci/environment-py312.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ dependencies:
- requests
- aiohttp
- pytest-cov
- fsspec
- pytest-subtests
- fsspec<=2024.12.0
- gcsfs
- dask
- scipy
- s3fs
Expand All @@ -32,5 +34,5 @@ dependencies:
- tifffile
- rioxarray
- netCDF4
- pip:
- git+https://github.com/fsspec/filesystem_spec
# - pip:
# - git+https://github.com/fsspec/filesystem_spec
1 change: 0 additions & 1 deletion kerchunk/_grib_idx.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
""" # noqa: E501


import ujson
import itertools
import os
Expand Down
8 changes: 5 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ classifiers = [


dependencies = [
"fsspec",
"fsspec<=2024.12.0",
"numcodecs",
"numpy",
"ujson",
Expand All @@ -36,18 +36,20 @@ netcdf3 = ["scipy"]
dev = [
"cftime",
"dask",
"fastparquet",
"fastparquet>=2024.11.0",
"h5netcdf",
"h5py",
"jinja2",
"mypy",
"pytest",
"s3fs",
"gcsfs",
"types-ujson",
"xarray>=2024.10.0",
"cfgrib",
"scipy",
"netcdf4"
"netcdf4",
"pytest-subtests",
]

[project.urls]
Expand Down
Loading
Loading