Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bob.admin
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
bob
bob.admin
Commits
30dcecc3
Commit
30dcecc3
authored
7 years ago
by
André Anjos
Browse files
Options
Downloads
Patches
Plain Diff
Print defaults on cmdline
parent
afadbd0a
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
conda/conda-bootstrap.py
+2
-2
2 additions, 2 deletions
conda/conda-bootstrap.py
with
2 additions
and
2 deletions
conda/conda-bootstrap.py
+
2
−
2
View file @
30dcecc3
...
@@ -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
()
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment