Skip to content

Commit dd2e1ba

Browse files
committed
podman nor singularity support is experimental
1 parent 5fadbb4 commit dd2e1ba

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

cwltool/argparser.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def arg_parser() -> argparse.ArgumentParser:
5050
"--parallel",
5151
action="store_true",
5252
default=False,
53-
help="[experimental] Run jobs in parallel. ",
53+
help="Run jobs in parallel. ",
5454
)
5555
envgroup = parser.add_mutually_exclusive_group()
5656
envgroup.add_argument(
@@ -448,8 +448,8 @@ def arg_parser() -> argparse.ArgumentParser:
448448
"--singularity",
449449
action="store_true",
450450
default=False,
451-
help="[experimental] Use "
452-
"Singularity runtime for running containers. "
451+
help="Use "
452+
"Singularity or Apptainer runtime for running containers. "
453453
"Requires Singularity v2.6.1+ and Linux with kernel "
454454
"version v3.18+ or with overlayfs support "
455455
"backported.",
@@ -458,7 +458,7 @@ def arg_parser() -> argparse.ArgumentParser:
458458
"--podman",
459459
action="store_true",
460460
default=False,
461-
help="[experimental] Use " "Podman runtime for running containers. ",
461+
help="Use Podman runtime for running containers. ",
462462
)
463463
dockergroup.add_argument(
464464
"--no-container",

0 commit comments

Comments
 (0)