diff --git a/ci/doc.yml b/ci/doc.yml index 76dd650..da70668 100644 --- a/ci/doc.yml +++ b/ci/doc.yml @@ -12,7 +12,7 @@ dependencies: - sphinx-copybutton - sphinx-design - numpydoc - - numpy<2.0.0 + - numpy - myst-parser - nbsphinx # Running examples diff --git a/ci/environment.yml b/ci/environment.yml index 0118d54..9f8164f 100644 --- a/ci/environment.yml +++ b/ci/environment.yml @@ -10,7 +10,7 @@ dependencies: - mercantile - mpich - netcdf4 - - numpy<2.0.0 + - numpy - pip - pooch - pre-commit diff --git a/pyproject.toml b/pyproject.toml index b753727..01b8248 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -33,7 +33,7 @@ dependencies = [ "pydantic>=1.10", "pyproj", "rasterio", - "numpy<2.0.0" + "numpy", ] [project.optional-dependencies] @@ -42,18 +42,10 @@ complete = [ "mercantile", "cftime", "scipy", - "rioxarray" -] -dask = [ - "dask[complete]", - "pyresample", -] -jupyter = [ - 'notebook', - 'ipytree>=0.2.2', - 'ipywidgets>=8.0.0', - 'matplotlib' + "rioxarray", ] +dask = ["dask[complete]", "pyresample"] +jupyter = ['notebook', 'ipytree>=0.2.2', 'ipywidgets>=8.0.0', 'matplotlib'] xesmf = ["xesmf>=0.8"] test = [ @@ -91,7 +83,6 @@ target-version = ['py310'] skip-string-normalization = true - [tool.ruff] line-length = 100 @@ -152,11 +143,7 @@ known-first-party = ["ndpyramid"] # Notebook ruff config [tool.ruff.lint.per-file-ignores] -"*.ipynb" = [ - "D100", - "E402", - "F401", -] +"*.ipynb" = ["D100", "E402", "F401"] [tool.pytest.ini_options]