We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77904bd commit 56ae2eeCopy full SHA for 56ae2ee
1 file changed
.github/workflows/conda-package.yml
@@ -366,8 +366,11 @@ jobs:
366
)
367
SET "TEST_DEPENDENCIES=pytest"
368
conda install -n ${{ env.TEST_ENV_NAME }} ${{ env.PACKAGE_NAME }}=%PACKAGE_VERSION% %TEST_DEPENDENCIES% python=${{ matrix.python }} ${{ matrix.numpy }} -c ${{ env.workdir }}/channel ${{ env.CHANNELS }}
369
- conda install -n ${{ env.TEST_ENV_NAME }} scipy mkl-service -c ${{ env.workdir }}/channel ${{ env.CHANNELS }}
370
}
+ - name: Install additional test dependencies
371
+ shell: cmd /C CALL {0}
372
+ run: |
373
+ conda install -n ${{ env.TEST_ENV_NAME }} "scipy>=1.10" "mkl-service" -c ${{ env.workdir }}/channel ${{ env.CHANNELS }}
374
- name: Report content of test environment
375
shell: cmd /C CALL {0}
376
run: |
0 commit comments