Skip to content

Commit

Permalink
fix(ci): unpin conda-build<25
Browse files Browse the repository at this point in the history
  • Loading branch information
qin-yu committed Jan 22, 2025
1 parent 47aa72e commit 008ab35
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/build-and-publish-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,16 @@ jobs:
shell: bash -l {0}
run: conda info --envs

# Disable `anaconda_telemetry` to avoid errors (issue 379)
- name: Configure Conda
run: |
echo "anaconda_telemetry: false" > ~/.condarc
# Build the PlantSeg Conda package (for screenshots in documentation)
- name: Build PlantSeg Package
shell: bash -l {0}
run: |
conda install -q "conda-build<25"
conda install -q conda-build
conda build -c conda-forge conda-recipe
# Create a Conda environment for PlantSeg
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-and-test-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
- name: Build PlantSeg Package
shell: bash -l {0}
run: |
conda install -q "conda-build<25"
conda install -q conda-build
conda build -c conda-forge conda-recipe
# Create a Conda environment for testing
Expand Down

0 comments on commit 008ab35

Please sign in to comment.