From 6798206a262d68e22132e46f67a95d51b4ed291f Mon Sep 17 00:00:00 2001 From: pavlemarinkovic Date: Fri, 2 Feb 2024 11:10:34 +0100 Subject: [PATCH] Fix positional arguments in sbpack --- sbpack/pack.py | 6 +++--- sbpack/version.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/sbpack/pack.py b/sbpack/pack.py index 49c8709..17195e2 100644 --- a/sbpack/pack.py +++ b/sbpack/pack.py @@ -391,15 +391,15 @@ def main(): parser = argparse.ArgumentParser() parser.add_argument( - "profile", "--profile", + "profile", help="SB platform profile as set in the SB API credentials file." ) parser.add_argument( - "appid", "--appid", + "appid", help="Takes the form {user}/{project}/{app_id}." ) parser.add_argument( - "cwl_path", "--cwl-path", + "cwl_path", help="Path or URL to the main CWL file to be uploaded." ) parser.add_argument( diff --git a/sbpack/version.py b/sbpack/version.py index e9f089a..52cc802 100644 --- a/sbpack/version.py +++ b/sbpack/version.py @@ -1 +1 @@ -__version__ = "2024.1.4rc1" +__version__ = "2024.2.2rc1"