pypeline-runner 1.18.1__tar.gz → 1.18.2__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.
- {pypeline_runner-1.18.1 → pypeline_runner-1.18.2}/PKG-INFO +2 -1
- {pypeline_runner-1.18.1 → pypeline_runner-1.18.2}/pyproject.toml +2 -2
- pypeline_runner-1.18.2/src/pypeline/__init__.py +1 -0
- pypeline_runner-1.18.1/src/pypeline/__init__.py +0 -1
- {pypeline_runner-1.18.1 → pypeline_runner-1.18.2}/LICENSE +0 -0
- {pypeline_runner-1.18.1 → pypeline_runner-1.18.2}/README.md +0 -0
- {pypeline_runner-1.18.1 → pypeline_runner-1.18.2}/src/pypeline/__run.py +0 -0
- {pypeline_runner-1.18.1 → pypeline_runner-1.18.2}/src/pypeline/bootstrap/__init__.py +0 -0
- {pypeline_runner-1.18.1 → pypeline_runner-1.18.2}/src/pypeline/bootstrap/run.py +0 -0
- {pypeline_runner-1.18.1 → pypeline_runner-1.18.2}/src/pypeline/domain/__init__.py +0 -0
- {pypeline_runner-1.18.1 → pypeline_runner-1.18.2}/src/pypeline/domain/artifacts.py +0 -0
- {pypeline_runner-1.18.1 → pypeline_runner-1.18.2}/src/pypeline/domain/config.py +0 -0
- {pypeline_runner-1.18.1 → pypeline_runner-1.18.2}/src/pypeline/domain/execution_context.py +0 -0
- {pypeline_runner-1.18.1 → pypeline_runner-1.18.2}/src/pypeline/domain/pipeline.py +0 -0
- {pypeline_runner-1.18.1 → pypeline_runner-1.18.2}/src/pypeline/domain/project_slurper.py +0 -0
- {pypeline_runner-1.18.1 → pypeline_runner-1.18.2}/src/pypeline/inputs_parser.py +0 -0
- {pypeline_runner-1.18.1 → pypeline_runner-1.18.2}/src/pypeline/kickstart/__init__.py +0 -0
- {pypeline_runner-1.18.1 → pypeline_runner-1.18.2}/src/pypeline/kickstart/create.py +0 -0
- {pypeline_runner-1.18.1 → pypeline_runner-1.18.2}/src/pypeline/kickstart/templates/project/.gitignore +0 -0
- {pypeline_runner-1.18.1 → pypeline_runner-1.18.2}/src/pypeline/kickstart/templates/project/pypeline.ps1 +0 -0
- {pypeline_runner-1.18.1 → pypeline_runner-1.18.2}/src/pypeline/kickstart/templates/project/pypeline.yaml +0 -0
- {pypeline_runner-1.18.1 → pypeline_runner-1.18.2}/src/pypeline/kickstart/templates/project/pyproject.toml +0 -0
- {pypeline_runner-1.18.1 → pypeline_runner-1.18.2}/src/pypeline/kickstart/templates/project/steps/my_step.py +0 -0
- {pypeline_runner-1.18.1 → pypeline_runner-1.18.2}/src/pypeline/kickstart/templates/project/west.yaml +0 -0
- {pypeline_runner-1.18.1 → pypeline_runner-1.18.2}/src/pypeline/main.py +0 -0
- {pypeline_runner-1.18.1 → pypeline_runner-1.18.2}/src/pypeline/py.typed +0 -0
- {pypeline_runner-1.18.1 → pypeline_runner-1.18.2}/src/pypeline/pypeline.py +0 -0
- {pypeline_runner-1.18.1 → pypeline_runner-1.18.2}/src/pypeline/steps/__init__.py +0 -0
- {pypeline_runner-1.18.1 → pypeline_runner-1.18.2}/src/pypeline/steps/create_venv.py +0 -0
- {pypeline_runner-1.18.1 → pypeline_runner-1.18.2}/src/pypeline/steps/env_setup_script.py +0 -0
- {pypeline_runner-1.18.1 → pypeline_runner-1.18.2}/src/pypeline/steps/scoop_install.py +0 -0
- {pypeline_runner-1.18.1 → pypeline_runner-1.18.2}/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.18.
|
|
3
|
+
Version: 1.18.2
|
|
4
4
|
Summary: Configure and execute pipelines with Python (similar to GitHub workflows or Jenkins pipelines).
|
|
5
5
|
License: MIT
|
|
6
6
|
Author: cuinixam
|
|
@@ -20,6 +20,7 @@ Classifier: Topic :: Software Development :: Libraries
|
|
|
20
20
|
Requires-Dist: py-app-dev (>=2.10,<3.0)
|
|
21
21
|
Requires-Dist: pyyaml (>=6.0,<7.0)
|
|
22
22
|
Requires-Dist: typer (>=0,<1)
|
|
23
|
+
Requires-Dist: west (>=1.0,<2.0)
|
|
23
24
|
Project-URL: Bug Tracker, https://github.com/cuinixam/pypeline/issues
|
|
24
25
|
Project-URL: Changelog, https://github.com/cuinixam/pypeline/blob/main/CHANGELOG.md
|
|
25
26
|
Project-URL: Documentation, https://pypeline-runner.readthedocs.io
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "pypeline-runner"
|
|
3
|
-
version = "1.18.
|
|
3
|
+
version = "1.18.2"
|
|
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"
|
|
@@ -30,13 +30,13 @@ python = "^3.10"
|
|
|
30
30
|
py-app-dev = "^2.10"
|
|
31
31
|
typer = "^0"
|
|
32
32
|
pyyaml = "^6.0"
|
|
33
|
+
west = "^1.0"
|
|
33
34
|
|
|
34
35
|
[tool.poetry.group.dev.dependencies]
|
|
35
36
|
pytest = "^8.3"
|
|
36
37
|
pytest-cov = "^6.0"
|
|
37
38
|
pre-commit = "^4.0"
|
|
38
39
|
ruff = "^0.9"
|
|
39
|
-
west = "^1.3"
|
|
40
40
|
|
|
41
41
|
[tool.poetry.group.docs.dependencies]
|
|
42
42
|
myst-parser = ">=0.16"
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "1.18.2"
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "1.18.1"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pypeline_runner-1.18.1 → pypeline_runner-1.18.2}/src/pypeline/kickstart/templates/project/west.yaml
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|