From dd2e1ba5d16fb1adcd8303f7ae3e6fb9c896ed1e Mon Sep 17 00:00:00 2001 From: "Michael R. Crusoe" Date: Thu, 4 Apr 2024 16:44:06 +0200 Subject: [PATCH] podman nor singularity support is experimental --- cwltool/argparser.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cwltool/argparser.py b/cwltool/argparser.py index 50dd3a14f..f9d98e32d 100644 --- a/cwltool/argparser.py +++ b/cwltool/argparser.py @@ -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( @@ -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.", @@ -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",