Skip to content

Commit

Permalink
lower bound datacube version
Browse files Browse the repository at this point in the history
  • Loading branch information
Ariana Barzinpour committed Jan 30, 2025
1 parent d62f32c commit a1e2902
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion odc/stac/eo3/_eo3converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ def _item_to_ds(
if cfg is None:
cfg = {}

md: RasterCollectionMetadata | None = getattr(product, "_md", None)
md: Optional[RasterCollectionMetadata] = getattr(product, "_md", None)
uuid_cfg = cfg.get("uuid", {})
ds_uuid = _compute_uuid(
item, mode=uuid_cfg.get("mode", "auto"), extras=uuid_cfg.get("extras", [])
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ docs =
matplotlib-inline
pandas
distributed
datacube
datacube>=1.8.8
ipython
ipykernel

Expand Down

0 comments on commit a1e2902

Please sign in to comment.