Skip to content

Commit 4c82f48

Browse files
committed
relax mkl-devel condition
1 parent 8f0ec6d commit 4c82f48

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/conda-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ jobs:
307307
FOR /F "tokens=* USEBACKQ" %%F IN (`python -c "%SCRIPT%"`) DO (
308308
SET PACKAGE_VERSION=%%F
309309
)
310-
SET "TEST_DEPENDENCIES=pytest scipy"
310+
SET "TEST_DEPENDENCIES=pytest scipy numpy>=1.26"
311311
conda install -n ${{ env.TEST_ENV_NAME }} ${{ env.PACKAGE_NAME }}=%PACKAGE_VERSION% %TEST_DEPENDENCIES% python=${{ matrix.python }} -c ${{ env.workdir }}/channel ${{ env.CHANNELS }}
312312
313313
- name: Report content of test environment

conda-recipe/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ requirements:
2020
- python
2121
- setuptools >=77
2222
- mkl-devel
23-
- mkl-devel 2024.2.* # [py==39]
2423
- cython
2524
- numpy-base
2625
run:
@@ -33,6 +32,7 @@ test:
3332
- pytest -v --pyargs mkl_fft
3433
requires:
3534
- pytest
35+
- numpy >=1.26
3636
- scipy >=1.10
3737
imports:
3838
- mkl_fft

0 commit comments

Comments
 (0)