Skip to content

Commit 1c6200e

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

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

conda-recipe-cf/meta.yaml

+1
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

+1
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

+2-2
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)