Skip to content

Commit 7d7f16f

Browse files
authored
Use conda 25.3.0 instead of 24.7.1 in setup-binary-builds
1 parent 173dfd6 commit 7d7f16f

1 file changed

Lines changed: 1 addition & 16 deletions

File tree

.github/actions/setup-binary-builds/action.yml

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -126,22 +126,7 @@ runs:
126126
set -euxo pipefail
127127
CONDA_ENV="${RUNNER_TEMP}/conda_environment_${GITHUB_RUN_ID}"
128128
export CONDA_EXTRA_PARAM=""
129-
130-
if [[ "${PYTHON_VERSION:-}" == *t || "${PYTHON_VERSION:-}" == 3.14* ]]; then
131-
# downgrade conda version for python 3.13t, 3.14t, 3.14 install.
132-
# TODO: remove this once python 3.13t, 3.14t, 3.14 is fully supported on conda
133-
# Please see : https://github.com/conda/conda/issues/14554
134-
if [[ "$(uname)" == Darwin ]]; then
135-
# required to be able to downgrade on MacOS arm64
136-
conda install -y python=3.9
137-
if [[ -n "$(conda list | grep conda-anaconda-telemetry)" ]]; then
138-
conda uninstall -y conda-anaconda-telemetry conda-anaconda-tos
139-
fi
140-
conda install -y conda=24.7.1 conda-libmamba-solver=24.1.0
141-
else
142-
conda install -y conda=24.7.1
143-
fi
144-
fi
129+
conda install -y conda=25.3.0
145130
146131
# shellcheck disable=SC2153
147132
case $PYTHON_VERSION in

0 commit comments

Comments
 (0)