Skip to content

Commit d98611d

Browse files
committed
update README and version
1 parent fe05cb9 commit d98611d

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ ItemCollection.
5757
| description | string | Optional description of the process configuration |
5858
| collections | Map<str, str> | A mapping of output collection name to a JSONPath pattern (for matching Items) |
5959
| upload_options | UploadOptions | Options used when uploading assets to a remote server |
60-
| tasks | List[TaskConfig] | Ordered List of task configurations |
60+
| tasks | List[TaskConfig] OR Map<str, Dict> | Ordered List of task configurations |
6161

6262
## TaskConfig Object
6363

@@ -68,6 +68,9 @@ A Task Configuration contains information for running a specific task.
6868
| name | str | **REQUIRED** Name of the task |
6969
| parameters | Map<str, str> | Dictionary of keyword parameters that will be passed to the Tasks `process` function |
7070

71+
Using a Dictionary for task_configs ("task_name": <ParametersDict>) is deprecated. Convert to
72+
List of TaskConfig objects
73+
7174
#### collections
7275

7376
The collections dictionary provides a collection ID and JSONPath pattern for matching against STAC Items.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
setup(
1414
name="stactask",
15-
version="0.1.0b2",
15+
version="0.1.0b3",
1616
description=(
1717
"STAC Task class provides a class interface for running custom algorithms on STAC Items"
1818
),

0 commit comments

Comments
 (0)