pipen-cli-gbatch 0.0.1__tar.gz → 0.0.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.

Potentially problematic release.


This version of pipen-cli-gbatch might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: pipen-cli-gbatch
3
- Version: 0.0.1
3
+ Version: 0.0.2
4
4
  Summary: A pipen cli plugin to run command via Google Cloud Batch
5
5
  License: MIT
6
6
  Author: pwwang
@@ -79,7 +79,7 @@ from pipen.cli import CLIPlugin
79
79
  from pipen.scheduler import GbatchScheduler
80
80
  from pipen_poplog import LogsPopulator
81
81
 
82
- __version__ = "0.0.1"
82
+ __version__ = "0.0.2"
83
83
  __all__ = ("CliGbatchPlugin", "CliGbatchDaemon")
84
84
 
85
85
 
@@ -11,6 +11,12 @@ flags = ["--view-logs"]
11
11
  choices = ["all", "stdout", "stderr"]
12
12
  help = "View the logs of a job."
13
13
 
14
+ [[mutually_exclusive_groups.arguments]]
15
+ flags = ["--version"]
16
+ action = "store_true"
17
+ default = false
18
+ help = "Show the version of the pipen-cli-gbatch package."
19
+
14
20
  [[arguments]]
15
21
  flags = ["--name"]
16
22
  type = "str"
@@ -38,12 +44,6 @@ action = "store_true"
38
44
  default = false
39
45
  help = "Treat the command as a plain command, not a pipen pipeline, so we don't grab workdir/outdir and replace them with mounted paths from the command."
40
46
 
41
- [[arguments]]
42
- flags = ["--version"]
43
- action = "store_true"
44
- default = false
45
- help = "Show the version of the pipen-cli-gbatch package."
46
-
47
47
  [[groups]]
48
48
  title = "Key Options"
49
49
  description = "The key options to run the command."
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "pipen-cli-gbatch"
3
- version = "0.0.1"
3
+ version = "0.0.2"
4
4
  description = "A pipen cli plugin to run command via Google Cloud Batch"
5
5
  authors = [
6
6
  {name = "pwwang",email = "pwwang@pwwang.com"}