From d41ed434077bf1465884b15f3b10471e90f8377a Mon Sep 17 00:00:00 2001 From: Jennings Zhang Date: Fri, 16 Apr 2021 00:26:10 -0400 Subject: [PATCH] Remove --verbosity flag --- chrisapp/base.py | 3 --- setup.py | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/chrisapp/base.py b/chrisapp/base.py index 6797b82..3c3a626 100755 --- a/chrisapp/base.py +++ b/chrisapp/base.py @@ -247,9 +247,6 @@ def __init__(self): ArgumentParser.add_argument(self, '--meta', action=AppMetaDataAction, dest='meta', default=False, help='print app meta data and exit') - ArgumentParser.add_argument(self, '-v', '--verbosity', action='store', type=str, - dest='verbosity', default="0", - help='verbosity level for the app') ArgumentParser.add_argument(self, '--man', action=ManPageAction, dest='man', default=False, help="show the app's man page and exit") diff --git a/setup.py b/setup.py index bea64c3..d8b0af6 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name = 'chrisapp', - version = '2.5.2', + version = '3.0.0-rc.1', description = 'Superclass for Chris plugin apps', long_description = readme, author = 'FNNDSC',