Skip to content

Commit 645ed80

Browse files
committed
Relax required conda-build and conda-index versions
1 parent 3f1915d commit 645ed80

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/conda-package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
echo "WHEELS_OUTPUT_FOLDER=$GITHUB_WORKSPACE${{ runner.os == 'Linux' && '/' || '\\' }}" >> $GITHUB_ENV
7676
7777
- name: Install conda-build
78-
run: mamba install conda-build=${{ env.CONDA_BUILD_VERSION}}
78+
run: mamba install conda-build"<=${{ env.CONDA_BUILD_VERSION}}"
7979

8080
- name: Build conda package
8181
run: conda build --no-test --python ${{ matrix.python }} --numpy 2.0 ${{ env.CHANNELS }} conda-recipe
@@ -140,7 +140,7 @@ jobs:
140140
activate-environment: ${{ env.TEST_ENV_NAME }}
141141

142142
- name: Install conda-index
143-
run: mamba install conda-index=${{ env.CONDA_INDEX_VERSION }}
143+
run: mamba install conda-index"<=${{ env.CONDA_INDEX_VERSION }}"
144144

145145
- name: Create conda channel
146146
run: |

0 commit comments

Comments
 (0)