Skip to content
Snippets Groups Projects
Commit 30dcecc3 authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

Print defaults on cmdline

parent afadbd0a
No related branches found
No related tags found
No related merge requests found
...@@ -96,8 +96,8 @@ def main(): ...@@ -96,8 +96,8 @@ def main():
parser = argparse.ArgumentParser(description='Creates a new conda environment with the build/run/test dependencies of a package') parser = argparse.ArgumentParser(description='Creates a new conda environment with the build/run/test dependencies of a package')
parser.add_argument('name', help='name of the target environment to create') parser.add_argument('name', help='name of the target environment to create')
parser.add_argument('python', help='version of python to build the environment for', nargs='?', default='3.6') parser.add_argument('python', help='version of python to build the environment for [default: %(default)s]', nargs='?', default='3.6')
parser.add_argument('path', help='path to the directory containing the conda recipe', nargs='?', default='conda') parser.add_argument('path', help='path to the directory containing the conda recipe [default: %(default)s]', nargs='?', default='conda')
args = parser.parse_args() args = parser.parse_args()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment