Skip to content

Commit

Permalink
unpin numpy version (#153)
Browse files Browse the repository at this point in the history
  • Loading branch information
andersy005 authored Nov 22, 2024
1 parent 764494e commit d42401a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 20 deletions.
2 changes: 1 addition & 1 deletion ci/doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ dependencies:
- sphinx-copybutton
- sphinx-design
- numpydoc
- numpy<2.0.0
- numpy
- myst-parser
- nbsphinx
# Running examples
Expand Down
2 changes: 1 addition & 1 deletion ci/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ dependencies:
- mercantile
- mpich
- netcdf4
- numpy<2.0.0
- numpy
- pip
- pooch
- pre-commit
Expand Down
23 changes: 5 additions & 18 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ dependencies = [
"pydantic>=1.10",
"pyproj",
"rasterio",
"numpy<2.0.0"
"numpy",
]

[project.optional-dependencies]
Expand All @@ -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 = [
Expand Down Expand Up @@ -91,7 +83,6 @@ target-version = ['py310']
skip-string-normalization = true



[tool.ruff]

line-length = 100
Expand Down Expand Up @@ -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]
Expand Down

0 comments on commit d42401a

Please sign in to comment.