Skip to content

Commit 014972a

Browse files
committed
test
1 parent 42e416f commit 014972a

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

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

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,18 @@ runs:
130130
if [[ "${PYTHON_VERSION:-}" == "3.14t" ]]; then
131131
export PYTHON_VERSION=3.14.0rc1
132132
export CONDA_EXTRA_PARAM=" python-freethreading -c conda-forge/label/python_rc -c conda-forge"
133+
134+
# temp code testing only
135+
if [[ "$(uname)" == Darwin ]]; then
136+
# required to be able to downgrade on MacOS arm64
137+
conda install -y python=3.9
138+
if [[ -n "$(conda list | grep conda-anaconda-telemetry)" ]]; then
139+
conda uninstall -y conda-anaconda-telemetry conda-anaconda-tos
140+
fi
141+
conda install -y conda=24.7.1 conda-libmamba-solver=24.1.0
142+
else
143+
conda install -y conda=24.7.1
144+
fi
133145
fi
134146
if [[ "${PYTHON_VERSION:-}" == "3.13t" ]]; then
135147
export PYTHON_VERSION=3.13

0 commit comments

Comments
 (0)