Skip to content
Snippets Groups Projects
Commit 18207dc9 authored by Benjamin Bertrand's avatar Benjamin Bertrand
Browse files

Remove default_channels

By default, we have:
default_channels:
  - https://repo.anaconda.com/pkgs/main
  - https://repo.anaconda.com/pkgs/r

Set it to an empty list to make sure repo.anaconda.com
is not accessed (there shouldn't be any connection to it from the TN).

JIRA INFRA-1560 #action In Progress
parent e62683d3
No related branches found
No related tags found
No related merge requests found
Pipeline #25658 passed
...@@ -23,6 +23,7 @@ def test_condarc_file(host): ...@@ -23,6 +23,7 @@ def test_condarc_file(host):
channels: channels:
- conda-forge - conda-forge
- anaconda-main - anaconda-main
default_channels: []
auto_update_conda: False auto_update_conda: False
use_only_tar_bz2: True""" use_only_tar_bz2: True"""
else: else:
...@@ -32,6 +33,7 @@ channels: ...@@ -32,6 +33,7 @@ channels:
- ics-conda - ics-conda
- conda-forge - conda-forge
- anaconda-main - anaconda-main
default_channels: []
auto_update_conda: False auto_update_conda: False
use_only_tar_bz2: True""" use_only_tar_bz2: True"""
......
...@@ -3,5 +3,6 @@ channels: ...@@ -3,5 +3,6 @@ channels:
{% for channel in conda_channels %} {% for channel in conda_channels %}
- {{ channel }} - {{ channel }}
{% endfor %} {% endfor %}
default_channels: []
auto_update_conda: False auto_update_conda: False
use_only_tar_bz2: True use_only_tar_bz2: True
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