argo-kedro 0.1.4__tar.gz → 0.1.6__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (24) hide show
  1. {argo_kedro-0.1.4 → argo_kedro-0.1.6}/PKG-INFO +1 -1
  2. {argo_kedro-0.1.4 → argo_kedro-0.1.6}/argo_kedro/framework/cli/cli.py +8 -1
  3. {argo_kedro-0.1.4 → argo_kedro-0.1.6}/argo_kedro.egg-info/PKG-INFO +1 -1
  4. {argo_kedro-0.1.4 → argo_kedro-0.1.6}/pyproject.toml +1 -1
  5. {argo_kedro-0.1.4 → argo_kedro-0.1.6}/.gitignore +0 -0
  6. {argo_kedro-0.1.4 → argo_kedro-0.1.6}/.python-version +0 -0
  7. {argo_kedro-0.1.4 → argo_kedro-0.1.6}/LICENSE +0 -0
  8. {argo_kedro-0.1.4 → argo_kedro-0.1.6}/MANIFEST.in +0 -0
  9. {argo_kedro-0.1.4 → argo_kedro-0.1.6}/README.md +0 -0
  10. {argo_kedro-0.1.4 → argo_kedro-0.1.6}/argo_kedro/framework/__init__.py +0 -0
  11. {argo_kedro-0.1.4 → argo_kedro-0.1.6}/argo_kedro/framework/cli/__init__.py +0 -0
  12. {argo_kedro-0.1.4 → argo_kedro-0.1.6}/argo_kedro/pipeline/__init__.py +0 -0
  13. {argo_kedro-0.1.4 → argo_kedro-0.1.6}/argo_kedro/pipeline/fused_pipeline.py +0 -0
  14. {argo_kedro-0.1.4 → argo_kedro-0.1.6}/argo_kedro/runners/__init__.py +0 -0
  15. {argo_kedro-0.1.4 → argo_kedro-0.1.6}/argo_kedro/runners/fuse_runner.py +0 -0
  16. {argo_kedro-0.1.4 → argo_kedro-0.1.6}/argo_kedro/templates/argo_wf_spec.tmpl +0 -0
  17. {argo_kedro-0.1.4 → argo_kedro-0.1.6}/argo_kedro.egg-info/SOURCES.txt +0 -0
  18. {argo_kedro-0.1.4 → argo_kedro-0.1.6}/argo_kedro.egg-info/dependency_links.txt +0 -0
  19. {argo_kedro-0.1.4 → argo_kedro-0.1.6}/argo_kedro.egg-info/entry_points.txt +0 -0
  20. {argo_kedro-0.1.4 → argo_kedro-0.1.6}/argo_kedro.egg-info/requires.txt +0 -0
  21. {argo_kedro-0.1.4 → argo_kedro-0.1.6}/argo_kedro.egg-info/top_level.txt +0 -0
  22. {argo_kedro-0.1.4 → argo_kedro-0.1.6}/locally_building_guide.md +0 -0
  23. {argo_kedro-0.1.4 → argo_kedro-0.1.6}/setup.cfg +0 -0
  24. {argo_kedro-0.1.4 → argo_kedro-0.1.6}/uv.lock +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: argo-kedro
3
- Version: 0.1.4
3
+ Version: 0.1.6
4
4
  Summary: Kedro plugin for running pipelines on Argo Workflows
5
5
  Author-email: Laurens Vijnck <laurens@everycure.org>, Nelson Alfonso <nelson@everycure.org>
6
6
  License: MIT
@@ -154,14 +154,21 @@ def submit(
154
154
  kind=yaml_data["kind"],
155
155
  )
156
156
 
157
- resource.create(
157
+ response = resource.create(
158
158
  body=yaml_data,
159
159
  namespace=namespace
160
160
  )
161
+
162
+ workflow_name = response.metadata.name
163
+ LOGGER.info(f"Workflow submitted successfully: {workflow_name}")
164
+ LOGGER.info(f"View workflow at: https://argo.ai-platform.dev.everycure.org/workflows/{namespace}/{workflow_name}")
165
+
166
+ return workflow_name
161
167
 
162
168
 
163
169
  def save_argo_template(argo_template: str) -> str:
164
170
  file_path = Path("templates") / "argo-workflow-template.yml"
171
+ file_path.parent.mkdir(parents=True, exist_ok=True)
165
172
  with open(file_path, "w") as f:
166
173
  f.write(argo_template)
167
174
  return str(file_path)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: argo-kedro
3
- Version: 0.1.4
3
+ Version: 0.1.6
4
4
  Summary: Kedro plugin for running pipelines on Argo Workflows
5
5
  Author-email: Laurens Vijnck <laurens@everycure.org>, Nelson Alfonso <nelson@everycure.org>
6
6
  License: MIT
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
5
5
 
6
6
  [project]
7
7
  name = "argo-kedro"
8
- version = "0.1.4"
8
+ version = "0.1.6"
9
9
  description = "Kedro plugin for running pipelines on Argo Workflows"
10
10
  readme = "README.md"
11
11
  requires-python = ">=3.10"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes