pypeline-runner 1.5.0__py3-none-any.whl → 1.6.0__py3-none-any.whl
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/__init__.py +1 -1
- pypeline/pypeline.py +5 -5
- {pypeline_runner-1.5.0.dist-info → pypeline_runner-1.6.0.dist-info}/METADATA +1 -1
- {pypeline_runner-1.5.0.dist-info → pypeline_runner-1.6.0.dist-info}/RECORD +7 -7
- {pypeline_runner-1.5.0.dist-info → pypeline_runner-1.6.0.dist-info}/LICENSE +0 -0
- {pypeline_runner-1.5.0.dist-info → pypeline_runner-1.6.0.dist-info}/WHEEL +0 -0
- {pypeline_runner-1.5.0.dist-info → pypeline_runner-1.6.0.dist-info}/entry_points.txt +0 -0
pypeline/__init__.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "1.
|
|
1
|
+
__version__ = "1.6.0"
|
pypeline/pypeline.py
CHANGED
|
@@ -57,14 +57,14 @@ class PipelineLoader(Generic[TExecutionContext]):
|
|
|
57
57
|
run_command = step_config.run.split(" ") if isinstance(step_config.run, str) else step_config.run
|
|
58
58
|
step_class = PipelineLoader._create_run_command_step_class(run_command, step_class_name)
|
|
59
59
|
else:
|
|
60
|
-
raise UserNotificationException(f"Step '{step_class_name}' has no 'module' nor 'file' nor `run` defined.
|
|
60
|
+
raise UserNotificationException(f"Step '{step_class_name}' has no 'module' nor 'file' nor `run` defined. Please check your pipeline configuration.")
|
|
61
61
|
result.append(PipelineStepReference[TExecutionContext](group_name, cast(Type[PipelineStep[TExecutionContext]], step_class), step_config.config))
|
|
62
62
|
return result
|
|
63
63
|
|
|
64
64
|
@staticmethod
|
|
65
65
|
def _load_user_step(python_file: Path, step_class_name: str) -> Type[PipelineStep[ExecutionContext]]:
|
|
66
66
|
# Create a module specification from the file path
|
|
67
|
-
spec = spec_from_file_location(f"user__{
|
|
67
|
+
spec = spec_from_file_location(f"user__{python_file.stem}", python_file)
|
|
68
68
|
if spec and spec.loader:
|
|
69
69
|
step_module = module_from_spec(spec)
|
|
70
70
|
# Import the module
|
|
@@ -72,9 +72,9 @@ class PipelineLoader(Generic[TExecutionContext]):
|
|
|
72
72
|
try:
|
|
73
73
|
step_class = getattr(step_module, step_class_name)
|
|
74
74
|
except AttributeError:
|
|
75
|
-
raise UserNotificationException(f"Could not load class '{step_class_name}' from file '{python_file}'.
|
|
75
|
+
raise UserNotificationException(f"Could not load class '{step_class_name}' from file '{python_file}'. Please check your pipeline configuration.") from None
|
|
76
76
|
return step_class
|
|
77
|
-
raise UserNotificationException(f"Could not load file '{python_file}'.
|
|
77
|
+
raise UserNotificationException(f"Could not load file '{python_file}'. Please check the file for any errors.")
|
|
78
78
|
|
|
79
79
|
@staticmethod
|
|
80
80
|
def _load_module_step(module_name: str, step_class_name: str) -> Type[PipelineStep[ExecutionContext]]:
|
|
@@ -84,7 +84,7 @@ class PipelineLoader(Generic[TExecutionContext]):
|
|
|
84
84
|
except ImportError:
|
|
85
85
|
raise UserNotificationException(f"Could not load module '{module_name}'. Please check your pipeline configuration.") from None
|
|
86
86
|
except AttributeError:
|
|
87
|
-
raise UserNotificationException(f"Could not load class '{step_class_name}' from module '{module_name}'.
|
|
87
|
+
raise UserNotificationException(f"Could not load class '{step_class_name}' from module '{module_name}'. Please check your pipeline configuration.") from None
|
|
88
88
|
return step_class
|
|
89
89
|
|
|
90
90
|
@staticmethod
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
pypeline/__init__.py,sha256=
|
|
1
|
+
pypeline/__init__.py,sha256=8EjIC8Er4Bn8PhErizTXrZVYTgb6tHgj00LrrBVNYXA,22
|
|
2
2
|
pypeline/__run.py,sha256=TCdaX05Qm3g8T4QYryKB25Xxf0L5Km7hFOHe1mK9vI0,350
|
|
3
3
|
pypeline/domain/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
4
|
pypeline/domain/artifacts.py,sha256=qXshnk9umi0AVGV4m5iEiy_MQ5Ad2LDZwI8OULU-qMk,1355
|
|
@@ -18,13 +18,13 @@ pypeline/kickstart/templates/project/scoopfile.json,sha256=DcfZ8jYf9hmPHM-AWwnPK
|
|
|
18
18
|
pypeline/kickstart/templates/project/steps/my_step.py,sha256=_zx01qAVuwn6IMPBUBwKY-IBjS9Gs2m-d51L9sayGug,733
|
|
19
19
|
pypeline/main.py,sha256=GtuOgB9OeNFgbWLHZux80fppYQVwMYNFZoZhDIlJW9c,3457
|
|
20
20
|
pypeline/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
21
|
-
pypeline/pypeline.py,sha256=
|
|
21
|
+
pypeline/pypeline.py,sha256=ADg_HlVA6LxZX1jq2GJw-bRCsy1cWixTQcTzDNufauw,9198
|
|
22
22
|
pypeline/steps/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
23
23
|
pypeline/steps/create_venv.py,sha256=vTPSA0gGGzq_QhI1jAgsGchS2s8_ZpEtnWcb0uL8BHE,1934
|
|
24
24
|
pypeline/steps/scoop_install.py,sha256=_YdoCMXLON0eIwck8PJOcNhayx_ka1krBAidw_oRuFE,3373
|
|
25
25
|
pypeline/steps/west_install.py,sha256=hPyr28ksdKsQ0tv0gMNytzupgk1IgjN9CpmaBdX5zps,1947
|
|
26
|
-
pypeline_runner-1.
|
|
27
|
-
pypeline_runner-1.
|
|
28
|
-
pypeline_runner-1.
|
|
29
|
-
pypeline_runner-1.
|
|
30
|
-
pypeline_runner-1.
|
|
26
|
+
pypeline_runner-1.6.0.dist-info/LICENSE,sha256=sKxdoqSmW9ezvPvt0ZGJbneyA0SBcm0GiqzTv2jN230,1066
|
|
27
|
+
pypeline_runner-1.6.0.dist-info/METADATA,sha256=W1G0C5EOOD3lelRR3o4TDHkx_QY7K9ShxtwCXlr-FA4,7154
|
|
28
|
+
pypeline_runner-1.6.0.dist-info/WHEEL,sha256=IYZQI976HJqqOpQU6PHkJ8fb3tMNBFjg-Cn-pwAbaFM,88
|
|
29
|
+
pypeline_runner-1.6.0.dist-info/entry_points.txt,sha256=pe1u0uuhPI_yeQ0KjEw6jK-EvQfPcZwBSajgbAdKz1o,47
|
|
30
|
+
pypeline_runner-1.6.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|