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

Merge branch 'fixes' into 'master'

Improve remote connection handling and remove alway_yes when developing locally

See merge request !62
parents df659899 04bb3f1e
No related branches found
No related tags found
1 merge request!62Improve remote connection handling and remove alway_yes when developing locally
Pipeline #30800 passed
......@@ -15,6 +15,9 @@ quiet: true #!final
show_channel_urls: true #!final
anaconda_upload: false #!final
ssl_verify: false #!final
remote_connect_timeout_secs: 120.0 #!final
remote_max_retries: 50 #!final
remote_read_timeout_secs: 180.0 #!final
channels:
- defaults
'''
......
......@@ -141,6 +141,8 @@ def create(name, recipe_dir, python, overwrite, condarc, use_local, config,
conda_config = make_conda_config(config, python, append_file, condarc_options)
deps = parse_dependencies(recipe_dir, conda_config)
# when creating a local development environment, remove the always_yes option
del condarc_options["always_yes"]
status = conda_create(conda, name, overwrite, condarc_options, deps,
dry_run, use_local)
echo_normal('Execute on your shell: "conda activate %s"' % name)
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