Skip to content

Commit 51dd3ba

Browse files
committed
add scipy to runtime dependency
1 parent d3f7e2d commit 51dd3ba

File tree

6 files changed

+8
-5
lines changed

6 files changed

+8
-5
lines changed

.github/workflows/conda-package-cf.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ jobs:
132132
- name: Install mkl_fft
133133
run: |
134134
CHANNELS="-c $GITHUB_WORKSPACE/channel ${{ env.CHANNELS }}"
135-
conda create -n ${{ env.TEST_ENV_NAME }} python=${{ matrix.python_ver }} ${{ matrix.numpy }} $PACKAGE_NAME pytest scipy $CHANNELS
135+
conda create -n ${{ env.TEST_ENV_NAME }} python=${{ matrix.python_ver }} ${{ matrix.numpy }} $PACKAGE_NAME pytest $CHANNELS
136136
# Test installed packages
137137
conda list -n ${{ env.TEST_ENV_NAME }}
138138
@@ -295,7 +295,7 @@ jobs:
295295
FOR /F "tokens=* USEBACKQ" %%F IN (`python -c "%SCRIPT%"`) DO (
296296
SET PACKAGE_VERSION=%%F
297297
)
298-
SET "TEST_DEPENDENCIES=pytest scipy"
298+
SET "TEST_DEPENDENCIES=pytest"
299299
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 }}
300300
301301
- name: Report content of test environment

.github/workflows/conda-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ jobs:
296296
FOR /F "tokens=* USEBACKQ" %%F IN (`python -c "%SCRIPT%"`) DO (
297297
SET PACKAGE_VERSION=%%F
298298
)
299-
SET "TEST_DEPENDENCIES=pytest scipy"
299+
SET "TEST_DEPENDENCIES=pytest"
300300
conda install -n ${{ env.TEST_ENV_NAME }} ${{ env.PACKAGE_NAME }}=%PACKAGE_VERSION% %TEST_DEPENDENCIES% python=${{ matrix.python }} -c ${{ env.workdir }}/channel ${{ env.CHANNELS }}
301301
302302
- name: Report content of test environment

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,5 @@ __pycache__/
77

88
mkl_fft/_pydfti.c
99
mkl_fft/_pydfti.cpython*.so
10+
mkl_fft/_pydfti.*-win_amd64.pyd
1011
mkl_fft/src/mklfft.c

conda-recipe-cf/meta.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ requirements:
2626
- python
2727
- mkl-service
2828
- numpy
29+
- scipy
2930

3031
test:
3132
commands:

conda-recipe/meta.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ requirements:
2626
- python
2727
- mkl-service
2828
- {{ pin_compatible('numpy') }}
29+
- scipy
2930

3031
test:
3132
commands:

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ classifiers = [
4949
"Operating System :: POSIX",
5050
"Operating System :: Unix"
5151
]
52-
dependencies = ["numpy>=1.26.4", "mkl-service"]
52+
dependencies = ["numpy>=1.26.4", "mkl-service", "scipy"]
5353
description = "MKL-based FFT transforms for NumPy arrays"
5454
dynamic = ["version"]
5555
keywords = ["DFTI", "FFT", "Fourier", "MKL"]
@@ -59,7 +59,7 @@ readme = {file = "README.md", content-type = "text/markdown"}
5959
requires-python = ">=3.9,<3.13"
6060

6161
[project.optional-dependencies]
62-
test = ["pytest", "scipy"]
62+
test = ["pytest"]
6363

6464
[project.urls]
6565
Download = "http://github.com/IntelPython/mkl_fft"

0 commit comments

Comments
 (0)