There was an error while loading. Please reload this page.
1 parent 42e416f commit 014972aCopy full SHA for 014972a
1 file changed
.github/actions/setup-binary-builds/action.yml
@@ -130,6 +130,18 @@ runs:
130
if [[ "${PYTHON_VERSION:-}" == "3.14t" ]]; then
131
export PYTHON_VERSION=3.14.0rc1
132
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
145
fi
146
if [[ "${PYTHON_VERSION:-}" == "3.13t" ]]; then
147
export PYTHON_VERSION=3.13
0 commit comments