Skip to content

Commit 7dca75c

Browse files
committed
conda: also add -c defaults in workflow
Not sure why I missed that in 3fd35cf. Anyway, it seems like the change only affected `conda build`, not `conda install` (yet).
1 parent f250b34 commit 7dca75c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/conda.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,14 +113,14 @@ jobs:
113113
- name: Install/Test raw package
114114
if: inputs.package == 'raw'
115115
run: |
116-
conda install -y pypdfium2_${{ inputs.package }} --override-channels -c ./conda_dist/ -c bblanchon
116+
conda install -y pypdfium2_${{ inputs.package }} --override-channels -c ./conda_dist/ -c bblanchon -c defaults
117117
python conda/raw/minitest.py
118118
119119
- name: Install/Test helpers package
120120
if: inputs.package == 'helpers'
121121
run: |
122122
conda install -y pytest pillow numpy
123-
conda install -y pypdfium2_${{ inputs.package }} --override-channels -c ./conda_dist/ -c pypdfium2-team -c bblanchon
123+
conda install -y pypdfium2_${{ inputs.package }} --override-channels -c ./conda_dist/ -c pypdfium2-team -c bblanchon -c defaults
124124
pytest tests/ tests_old/
125125
126126
publish:

0 commit comments

Comments
 (0)