Skip to content

Commit a61ec54

Browse files
authored
Merge pull request #1365 from minrk/disallow-defaults
exclude defaults channel by default
2 parents afaa6e3 + 288074d commit a61ec54

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

repo2docker/buildpacks/conda/install-base-env.bash

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ export PATH="${PWD}/bin:$PATH"
3030
cat <<EOT >> ${CONDA_DIR}/.condarc
3131
channels:
3232
- conda-forge
33-
- defaults
3433
auto_update_conda: false
3534
show_channel_urls: true
3635
update_dependencies: false

tests/conda/downgrade/verify

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ assert pkgs["xeus-cling"]["version"] == "0.6.0"
2727
# which in turn downgrades Python from >=3.9.16 to 3.9.6
2828

2929
assert pkgs["openssl"]["version"].startswith("1.1.1"), pkgs["openssl"]["version"]
30-
assert pkgs["python"]["version"] == "3.9.6", pkgs["python"]["version"]
30+
assert pkgs["python"]["version"] == "3.9.0", pkgs["python"]["version"]

0 commit comments

Comments
 (0)