Skip to content

Commit 56ae2ee

Browse files
committed
separate out scipy and mkl-service installation
1 parent 77904bd commit 56ae2ee

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/conda-package.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -366,8 +366,11 @@ jobs:
366366
)
367367
SET "TEST_DEPENDENCIES=pytest"
368368
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 }}
370369
}
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 }}
371374
- name: Report content of test environment
372375
shell: cmd /C CALL {0}
373376
run: |

0 commit comments

Comments
 (0)