Skip to content

Commit

Permalink
Update triad dependency (#27)
Browse files Browse the repository at this point in the history
* update triad dependency

* update
  • Loading branch information
goodwanghan authored Oct 6, 2020
1 parent 7d03f61 commit 8aebb53
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion adagio/instances.py
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ def run(self, spec: WorkflowSpec, conf: Dict[str, Any]) -> None:
def _parse_config(self, data: Any, tp: Type[WFMT], args: List[Any]) -> WFMT:
if isinstance(data, tp):
return data
return cast(WFMT, to_instance(data, tp, True, args))
return cast(WFMT, to_instance(data, expected_base_type=tp, args=args))


class TaskContext(object):
Expand Down
2 changes: 1 addition & 1 deletion adagio_version/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.2.1"
__version__ = "0.2.2"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
author_email="[email protected]",
keywords="adagio dag directed acyclic graph workflow",
url="http://github.com/fugue-project/adagio",
install_requires=["triad>=0.4.0"],
install_requires=["triad>=0.4.3"],
extras_require={},
classifiers=[
# "3 - Alpha", "4 - Beta" or "5 - Production/Stable"
Expand Down

0 comments on commit 8aebb53

Please sign in to comment.