Skip to content

Commit

Permalink
Conda install pip: avoid failing if already installed
Browse files Browse the repository at this point in the history
  • Loading branch information
inducer committed Mar 3, 2024
1 parent 1acbfa8 commit f2a4fff
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ci-support.sh
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,10 @@ install_conda_deps()
# https://github.com/pypa/pip/issues/5345#issuecomment-386443351
export XDG_CACHE_HOME=$HOME/.cache/$CI_RUNNER_ID
with_echo conda install --quiet --yes pip
# '|| true' to avoid failing if pip is already installed.
# (need observed with boxtree 2023-03-03 -AK)
with_echo conda install --quiet --yes pip || true
with_echo conda list
# Placeholder until github.com/conda-forge/qt-feedstock/issues/208 is fixed
Expand Down

0 comments on commit f2a4fff

Please sign in to comment.