We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0ad951 commit 0fe0430Copy full SHA for 0fe0430
2 files changed
setup.py
@@ -12,7 +12,7 @@
12
13
setup(
14
name="stactask",
15
- version="0.1.0b4",
+ version="0.1.0b5",
16
description=(
17
"STAC Task class provides a class interface for running custom algorithms on STAC Items"
18
),
stactask/task.py
@@ -147,6 +147,8 @@ def add_software_version(cls, items: List[Dict]):
147
i["stac_extensions"] = []
148
i["stac_extensions"].append(processing_ext)
149
i["stac_extensions"] = list(set(i["stac_extensions"]))
150
+ if "properties" not in i:
151
+ i["properties"] = {}
152
i["properties"]["processing:software"] = {cls.name: cls.version}
153
return items
154
0 commit comments