File tree Expand file tree Collapse file tree
.github/actions/setup-binary-builds Expand file tree Collapse file tree Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments