-
Notifications
You must be signed in to change notification settings - Fork 104
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add ability to specify channel overrides on the command line #49
Conversation
nargs="?", | ||
action="append", | ||
help="Additional channels to include in the solve. Requires the --override-channels flag", | ||
) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think you need a default value here too or args.channels is gonna raise down on line 469
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
changed the channels to allow None
conda_lock/conda_lock.py
Outdated
@@ -442,6 +481,8 @@ def main(): | |||
platforms=args.platform, | |||
no_mamba=args.no_mamba, | |||
include_dev_dependencies=args.dev_dependencies, | |||
channels=args.channels, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
delete this
No description provided.