pipeline-eds 0.2.13__py3-none-any.whl → 0.2.14__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.
- pipeline/cli.py +6 -5
- {pipeline_eds-0.2.13.dist-info → pipeline_eds-0.2.14.dist-info}/METADATA +1 -1
- {pipeline_eds-0.2.13.dist-info → pipeline_eds-0.2.14.dist-info}/RECORD +6 -6
- {pipeline_eds-0.2.13.dist-info → pipeline_eds-0.2.14.dist-info}/LICENSE +0 -0
- {pipeline_eds-0.2.13.dist-info → pipeline_eds-0.2.14.dist-info}/WHEEL +0 -0
- {pipeline_eds-0.2.13.dist-info → pipeline_eds-0.2.14.dist-info}/entry_points.txt +0 -0
pipeline/cli.py
CHANGED
@@ -20,22 +20,23 @@ from pipeline.env import SecretConfig
|
|
20
20
|
from pipeline.workspace_manager import WorkspaceManager
|
21
21
|
|
22
22
|
### Versioning
|
23
|
+
CLI_APP_NAME = "pipeline"
|
23
24
|
def print_version(value: bool):
|
24
25
|
if value:
|
25
26
|
try:
|
26
|
-
typer.secho(f"
|
27
|
+
typer.secho(f"{CLI_APP_NAME} {PIPELINE_VERSION}",fg=typer.colors.GREEN, bold=True)
|
27
28
|
except PackageNotFoundError:
|
28
29
|
typer.echo("Version info not found")
|
29
30
|
raise typer.Exit()
|
30
31
|
try:
|
31
|
-
|
32
|
-
__version__ = version(
|
32
|
+
PIPELINE_VERSION = version(CLI_APP_NAME)
|
33
|
+
__version__ = version({CLI_APP_NAME})
|
33
34
|
except PackageNotFoundError:
|
34
|
-
|
35
|
+
PIPELINE_VERSION = "unknown"
|
35
36
|
|
36
37
|
try:
|
37
38
|
from importlib.metadata import version
|
38
|
-
__version__ = version(
|
39
|
+
__version__ = version({CLI_APP_NAME})
|
39
40
|
except PackageNotFoundError:
|
40
41
|
# fallback if running from source
|
41
42
|
try:
|
@@ -5,7 +5,7 @@ pipeline/api/eds.py,sha256=M7XkSwDKb2wGs5j69yaAS8-5JwGbLfs6uVz70RjG6WQ,43714
|
|
5
5
|
pipeline/api/rjn.py,sha256=Fhbc3tE_WgUywVJimnLzhWnxyMzGiIUu54hRFR3sdUA,7102
|
6
6
|
pipeline/api/status_api.py,sha256=KJG7e4GXmTjqQxK3LFUcdAxj1jqzvNLJ0f9-tuisk00,202
|
7
7
|
pipeline/calls.py,sha256=FexXJK0_fwgQMPx9dy5eFai_6xqVOsOGoEUw8yP3eSU,4187
|
8
|
-
pipeline/cli.py,sha256=
|
8
|
+
pipeline/cli.py,sha256=NYBHPC7Wk3hbSN1RxsGXjfnseBI1Napn70LBDF1Lduc,10713
|
9
9
|
pipeline/configrationmanager.py,sha256=UPqa91117jNm59vvTBE7sET1ThisqRf6B2Dhtk7x9tM,624
|
10
10
|
pipeline/decorators.py,sha256=5fIIVqxSvQFaSI4ZkqPd3yqajzDxaRhgYwlC1jD2k5A,411
|
11
11
|
pipeline/env.py,sha256=Ibs0K_wluUTJXCcBjUofZ1jexks-UmJ0dvbXhWPLdJ0,1922
|
@@ -56,8 +56,8 @@ workspaces/eds_to_rjn/scripts/daemon_runner.py,sha256=gBCYrJ-FYPCTt_l5O07_YNrrGj
|
|
56
56
|
workspaces/eds_to_rjn/secrets/README.md,sha256=tWf2bhopA0C08C8ImtHNZoPde9ub-sLMjX6EMe7lyJw,600
|
57
57
|
workspaces/eds_to_rjn/secrets/secrets-example.yaml,sha256=qKGrKsKBC0ulDQRVbr1zkfNlr8WPWK4lg5GAvTqZ-T4,365
|
58
58
|
workspaces/eds_to_termux/..txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
59
|
-
pipeline_eds-0.2.
|
60
|
-
pipeline_eds-0.2.
|
61
|
-
pipeline_eds-0.2.
|
62
|
-
pipeline_eds-0.2.
|
63
|
-
pipeline_eds-0.2.
|
59
|
+
pipeline_eds-0.2.14.dist-info/entry_points.txt,sha256=jmU0FQ7-2AHXhKcj4TXPn61xLbHlycHA2lkDlRZT-pg,124
|
60
|
+
pipeline_eds-0.2.14.dist-info/LICENSE,sha256=LKdx0wS1t9vFZpbRhDg_iLQ6ny-XsXRwhKAoCfrF6iA,1501
|
61
|
+
pipeline_eds-0.2.14.dist-info/METADATA,sha256=pTVOUltpX9wKH12UZKp5K0i1P-laAIw9hqmhBA8Jk5k,9974
|
62
|
+
pipeline_eds-0.2.14.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
63
|
+
pipeline_eds-0.2.14.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|