pypeline-runner 1.4.0__tar.gz → 1.5.0__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 (30) hide show
  1. {pypeline_runner-1.4.0 → pypeline_runner-1.5.0}/PKG-INFO +2 -2
  2. {pypeline_runner-1.4.0 → pypeline_runner-1.5.0}/pyproject.toml +2 -2
  3. pypeline_runner-1.5.0/src/pypeline/__init__.py +1 -0
  4. {pypeline_runner-1.4.0 → pypeline_runner-1.5.0}/src/pypeline/domain/execution_context.py +3 -0
  5. pypeline_runner-1.4.0/src/pypeline/__init__.py +0 -1
  6. {pypeline_runner-1.4.0 → pypeline_runner-1.5.0}/LICENSE +0 -0
  7. {pypeline_runner-1.4.0 → pypeline_runner-1.5.0}/README.md +0 -0
  8. {pypeline_runner-1.4.0 → pypeline_runner-1.5.0}/src/pypeline/__run.py +0 -0
  9. {pypeline_runner-1.4.0 → pypeline_runner-1.5.0}/src/pypeline/domain/__init__.py +0 -0
  10. {pypeline_runner-1.4.0 → pypeline_runner-1.5.0}/src/pypeline/domain/artifacts.py +0 -0
  11. {pypeline_runner-1.4.0 → pypeline_runner-1.5.0}/src/pypeline/domain/config.py +0 -0
  12. {pypeline_runner-1.4.0 → pypeline_runner-1.5.0}/src/pypeline/domain/pipeline.py +0 -0
  13. {pypeline_runner-1.4.0 → pypeline_runner-1.5.0}/src/pypeline/domain/project_slurper.py +0 -0
  14. {pypeline_runner-1.4.0 → pypeline_runner-1.5.0}/src/pypeline/kickstart/__init__.py +0 -0
  15. {pypeline_runner-1.4.0 → pypeline_runner-1.5.0}/src/pypeline/kickstart/create.py +0 -0
  16. {pypeline_runner-1.4.0 → pypeline_runner-1.5.0}/src/pypeline/kickstart/templates/project/.gitignore +0 -0
  17. {pypeline_runner-1.4.0 → pypeline_runner-1.5.0}/src/pypeline/kickstart/templates/project/bootstrap.ps1 +0 -0
  18. {pypeline_runner-1.4.0 → pypeline_runner-1.5.0}/src/pypeline/kickstart/templates/project/poetry.toml +0 -0
  19. {pypeline_runner-1.4.0 → pypeline_runner-1.5.0}/src/pypeline/kickstart/templates/project/pypeline.ps1 +0 -0
  20. {pypeline_runner-1.4.0 → pypeline_runner-1.5.0}/src/pypeline/kickstart/templates/project/pypeline.yaml +0 -0
  21. {pypeline_runner-1.4.0 → pypeline_runner-1.5.0}/src/pypeline/kickstart/templates/project/pyproject.toml +0 -0
  22. {pypeline_runner-1.4.0 → pypeline_runner-1.5.0}/src/pypeline/kickstart/templates/project/scoopfile.json +0 -0
  23. {pypeline_runner-1.4.0 → pypeline_runner-1.5.0}/src/pypeline/kickstart/templates/project/steps/my_step.py +0 -0
  24. {pypeline_runner-1.4.0 → pypeline_runner-1.5.0}/src/pypeline/main.py +0 -0
  25. {pypeline_runner-1.4.0 → pypeline_runner-1.5.0}/src/pypeline/py.typed +0 -0
  26. {pypeline_runner-1.4.0 → pypeline_runner-1.5.0}/src/pypeline/pypeline.py +0 -0
  27. {pypeline_runner-1.4.0 → pypeline_runner-1.5.0}/src/pypeline/steps/__init__.py +0 -0
  28. {pypeline_runner-1.4.0 → pypeline_runner-1.5.0}/src/pypeline/steps/create_venv.py +0 -0
  29. {pypeline_runner-1.4.0 → pypeline_runner-1.5.0}/src/pypeline/steps/scoop_install.py +0 -0
  30. {pypeline_runner-1.4.0 → pypeline_runner-1.5.0}/src/pypeline/steps/west_install.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: pypeline-runner
3
- Version: 1.4.0
3
+ Version: 1.5.0
4
4
  Summary: Configure and execute pipelines with Python (similar to GitHub workflows or Jenkins pipelines).
5
5
  License: MIT
6
6
  Author: cuinixam
@@ -17,7 +17,7 @@ Classifier: Programming Language :: Python :: 3.11
17
17
  Classifier: Programming Language :: Python :: 3.12
18
18
  Classifier: Programming Language :: Python :: 3.13
19
19
  Classifier: Topic :: Software Development :: Libraries
20
- Requires-Dist: py-app-dev (>=2.3.3,<3.0.0)
20
+ Requires-Dist: py-app-dev (>=2.5,<3.0)
21
21
  Requires-Dist: pyyaml (>=6.0,<7.0)
22
22
  Requires-Dist: typer (>=0.12,<0.13)
23
23
  Project-URL: Bug Tracker, https://github.com/cuinixam/pypeline/issues
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "pypeline-runner"
3
- version = "1.4.0"
3
+ version = "1.5.0"
4
4
  description = "Configure and execute pipelines with Python (similar to GitHub workflows or Jenkins pipelines)."
5
5
  authors = ["cuinixam <me@cuinixam.com>"]
6
6
  license = "MIT"
@@ -27,7 +27,7 @@ pypeline = "pypeline.main:main"
27
27
 
28
28
  [tool.poetry.dependencies]
29
29
  python = "^3.10"
30
- py-app-dev = "^2.3.3"
30
+ py-app-dev = "^2.5"
31
31
  typer = "^0.12"
32
32
  pyyaml = "^6.0"
33
33
 
@@ -0,0 +1 @@
1
+ __version__ = "1.5.0"
@@ -3,6 +3,7 @@ from dataclasses import dataclass, field
3
3
  from pathlib import Path
4
4
  from typing import List, Optional
5
5
 
6
+ from py_app_dev.core.data_registry import DataRegistry
6
7
  from py_app_dev.core.subprocess import SubprocessExecutor
7
8
 
8
9
  from .artifacts import ProjectArtifactsLocator
@@ -13,6 +14,8 @@ class ExecutionContext:
13
14
  project_root_dir: Path
14
15
  # Keep track of all install directories, updated by any step for the subsequent steps
15
16
  install_dirs: List[Path] = field(default_factory=list)
17
+ # Data registry to exchange data of any type
18
+ data_registry: DataRegistry = field(default_factory=DataRegistry)
16
19
 
17
20
  def add_install_dirs(self, install_dirs: List[Path]) -> None:
18
21
  self.install_dirs.extend(install_dirs)
@@ -1 +0,0 @@
1
- __version__ = "1.4.0"
File without changes