From a6a3747155093294883cd03781d965a839675324 Mon Sep 17 00:00:00 2001 From: Matt Topol Date: Fri, 24 Jul 2026 12:16:12 -0400 Subject: [PATCH] fix(dev/release): call conda init before conda activate Ran into an issue when running `verify-release-candidate.sh` using `USE_CONDA=1`. Got an error specifying that we need to call `conda init` before `conda activate base`. After adding that line the verification was able to continue. --- dev/release/verify-release-candidate.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/dev/release/verify-release-candidate.sh b/dev/release/verify-release-candidate.sh index 3595c4a887..f34956c3d0 100755 --- a/dev/release/verify-release-candidate.sh +++ b/dev/release/verify-release-candidate.sh @@ -393,6 +393,7 @@ install_conda() { # Creating a separate conda environment . $prefix/etc/profile.d/conda.sh + conda init conda activate base }