Skip to content
This repository has been archived by the owner on Aug 27, 2024. It is now read-only.

Commit

Permalink
Downgrade conda
Browse files Browse the repository at this point in the history
This PR temporarily downgrades conda to a version prior to `24.3.0`.

This is necessary because `24.3.0` removed support for `conda env create --force`, which we use.

See the links below for more details:

- https://github.com/conda/conda/blob/main/CHANGELOG.md#2430-2024-03-12
- conda/conda#13634
  • Loading branch information
ajschmidt8 committed Mar 27, 2024
1 parent 2de9dfd commit 6026301
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ umask 002
# install expected Python version
mamba install -y -n base python="${PYTHON_VERSION}"
mamba update --all -y -n base
# TODO: remove pin after `conda env create --force` usage is removed across
# RAPIDS
mamba install -y "conda<24.3"
if [[ "$LINUX_VER" == "rockylinux"* ]]; then
yum install -y findutils
yum clean all
Expand Down

0 comments on commit 6026301

Please sign in to comment.