Skip to content

Commit

Permalink
podman nor singularity support is experimental
Browse files Browse the repository at this point in the history
  • Loading branch information
mr-c committed Apr 4, 2024
1 parent 5fadbb4 commit dd2e1ba
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions cwltool/argparser.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def arg_parser() -> argparse.ArgumentParser:
"--parallel",
action="store_true",
default=False,
help="[experimental] Run jobs in parallel. ",
help="Run jobs in parallel. ",
)
envgroup = parser.add_mutually_exclusive_group()
envgroup.add_argument(
Expand Down Expand Up @@ -448,8 +448,8 @@ def arg_parser() -> argparse.ArgumentParser:
"--singularity",
action="store_true",
default=False,
help="[experimental] Use "
"Singularity runtime for running containers. "
help="Use "
"Singularity or Apptainer runtime for running containers. "
"Requires Singularity v2.6.1+ and Linux with kernel "
"version v3.18+ or with overlayfs support "
"backported.",
Expand All @@ -458,7 +458,7 @@ def arg_parser() -> argparse.ArgumentParser:
"--podman",
action="store_true",
default=False,
help="[experimental] Use " "Podman runtime for running containers. ",
help="Use Podman runtime for running containers. ",
)
dockergroup.add_argument(
"--no-container",
Expand Down

0 comments on commit dd2e1ba

Please sign in to comment.