Skip to content

Add guard for conda unistall of conda-anaconda-telemetry #6385

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 11, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/actions/setup-binary-builds/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -149,9 +149,11 @@ runs:
# TODO: remove this once python 3.13t is fully suported on conda
# Please see : https://github.com/conda/conda/issues/14554
if [[ "$(uname)" == Darwin ]]; then
# required to be able to downgrade on MacOS m1 side
# required to be able to downgrade on MacOS arm64
conda install -y python=3.9
conda uninstall -y conda-anaconda-telemetry conda-anaconda-tos
if [[ -n "$(conda list | grep conda-anaconda-telemetry)" ]]; then
conda uninstall -y conda-anaconda-telemetry conda-anaconda-tos
fi
fi
conda install -y conda=24.7.1 conda-libmamba-solver=24.1.0
fi
Expand Down
Loading