From b653c19896d88e9cb1e71bb91753022f2dabaae5 Mon Sep 17 00:00:00 2001 From: Robin Kuzmin <9372582+kuzminrobin@users.noreply.github.com> Date: Wed, 26 Jul 2023 17:30:06 -0700 Subject: [PATCH] Working around https://github.com/conda/conda/issues/12928 (#801) --- build/pack-conda.ps1 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build/pack-conda.ps1 b/build/pack-conda.ps1 index a39e8e21e3..fdae1a5a30 100644 --- a/build/pack-conda.ps1 +++ b/build/pack-conda.ps1 @@ -9,6 +9,8 @@ if ("true" -eq $Env:SYSTEM_DEBUG) { Set-PSDebug -Trace 1; } +conda install --yes conda=23.5.2 # TODO(kuzminrobin, https://github.com/conda/conda/issues/12928): Remove this line after the bug is fixed. + # Print conda-info and capture the current platform. (conda info --json) | Tee-Object -Variable condaInfo; $CondaPlatform = $condaInfo `