Skip to content

Commit

Permalink
CI: Install dvc via conda on macOS (#8500)
Browse files Browse the repository at this point in the history
  • Loading branch information
seisman committed May 29, 2024
1 parent 1f89db9 commit e0bfaa0
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions ci/install-dependencies-macos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,14 @@ conda_packages="ghostscript=10.03.0"

# packages for build documentation
if [ "$BUILD_DOCS" = "true" ]; then
packages+=" dvc pngquant"
conda_packages+=" sphinx"
packages+=" pngquant"
conda_packages+=" sphinx dvc"
fi

# packages for running GMT tests
if [ "$RUN_TESTS" = "true" ]; then
packages+=" dvc graphicsmagick"
packages+=" graphicsmagick"
conda_packages+=" dvc"
fi

if [ "$PACKAGE" = "true" ]; then
Expand Down

0 comments on commit e0bfaa0

Please sign in to comment.