Skip to content
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
8 changes: 8 additions & 0 deletions pixi.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@ pytest-xdist = "*"
[feature.with-rasterio.dependencies]
rasterio = "*"

[feature.with-rusterize.dependencies]
# rusterize >=0.8 no longer depends on polars, but needs it for GeoDataFrame input
polars = "*"

[feature.with-rusterize.pypi-dependencies]
rusterize = ">=0.7.1"

Expand Down Expand Up @@ -73,6 +77,10 @@ furo = "*"
numpydoc = "*"
sphinxext-opengraph = "*"
xvec = "*"
polars = "*"

[feature.docs.pypi-dependencies]
rusterize = ">=0.7.1"

[feature.docs.tasks]
docs-build = { cmd = "sphinx-build -b html . _build/html", cwd = "docs" }
Expand Down
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,16 @@ dynamic=["version"]
[project.optional-dependencies]
dask = ["dask-geopandas"]
rasterize = ["rasterio"]
rusterize = ["rusterize>=0.7.1"]
# rusterize >=0.8 no longer depends on polars, but needs it for GeoDataFrame input
rusterize = ["rusterize>=0.7.1", "polars"]
exactextract = ["exactextract", "sparse"]
docs = [
"geodatasets",
"pooch",
"dask-geopandas",
"rasterio",
"rusterize>=0.7.1",
"polars", # needed by rusterize for GeoDataFrame input
"rioxarray",
"exactextract",
"sparse",
Expand Down
Loading