Skip to content

podman nor singularity/apptainer support is experimental #1991

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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