Skip to content

Commit

Permalink
Remove Breathe special-casing
Browse files Browse the repository at this point in the history
  • Loading branch information
vyasr committed Dec 30, 2024
1 parent a207cf9 commit 55e2a23
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,7 @@ make_conda_env() {
local -r new_env_path="$(realpath -m "/tmp/${env_file_name}")";
local -r old_env_path="$(realpath -m "${HOME}/.conda/envs/${env_file_name}")";

# the '--exclude <(echo breathe)' can be removed when https://github.com/conda-forge/breathe-feedstock/pull/64 is merged
rapids-make-conda-dependencies --exclude <(echo breathe) "${OPTS[@]}" > "${new_env_path}";
rapids-make-conda-dependencies "${OPTS[@]}" > "${new_env_path}";

if test -f "${new_env_path}" && test "$(wc -l "${new_env_path}" | cut -d' ' -f1)" -gt 0; then

Expand Down

0 comments on commit 55e2a23

Please sign in to comment.