Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions conda-recipe-cf/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,12 @@ requirements:
- {{ compiler('c') }}
host:
- python
- setuptools
- setuptools >=77
- mkl-devel
- cython
- numpy
run:
- python
- mkl
- mkl-service
- numpy

Expand All @@ -41,6 +40,6 @@ test:

about:
home: http://github.com/IntelPython/mkl_fft
license: BSD-3
license: BSD-3-Clause
license_file: LICENSE.txt
summary: NumPy-based implementation of Fast Fourier Transform using Intel (R) Math Kernel Library
5 changes: 2 additions & 3 deletions conda-recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,12 @@ requirements:
- {{ compiler('c') }}
host:
- python
- setuptools
- setuptools >=77
- mkl-devel
- cython
- numpy-base
run:
- python
- mkl
- mkl-service
- {{ pin_compatible('numpy') }}

Expand All @@ -41,6 +40,6 @@ test:

about:
home: http://github.com/IntelPython/mkl_fft
license: BSD-3
license: BSD-3-Clause
license_file: LICENSE.txt
summary: NumPy-based implementation of Fast Fourier Transform using Intel (R) Math Kernel Library
7 changes: 3 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=64", "Cython", "numpy"]
requires = ["setuptools>=77", "Cython", "numpy", "mkl-devel"]

[project]
authors = [
Expand All @@ -35,7 +35,6 @@ classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved",
"Programming Language :: C",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
Expand All @@ -50,11 +49,11 @@ classifiers = [
"Operating System :: POSIX",
"Operating System :: Unix"
]
dependencies = ["numpy >=1.26.4", "mkl", "mkl-service"]
dependencies = ["numpy>=1.26.4", "mkl-service"]
description = "MKL-based FFT transforms for NumPy arrays"
dynamic = ["version"]
keywords = ["DFTI", "FFT", "Fourier", "MKL"]
license = {text = "BSD"}
license = "BSD-3-Clause"
name = "mkl_fft"
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">=3.9,<3.13"
Expand Down
Loading