From 8170f3a17e41afbf98ed6330c08a552b2ca57925 Mon Sep 17 00:00:00 2001 From: xaleryb Date: Mon, 11 May 2026 20:08:18 +0000 Subject: [PATCH 1/2] Drop PyPI `mkl` runtime dep (fixes downstream `pip check`) --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index a17d776..fda3e40 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -50,7 +50,7 @@ classifiers = [ "Operating System :: POSIX", "Operating System :: Unix" ] -dependencies = ["numpy>=1.26.4", "mkl"] +dependencies = ["numpy>=1.26.4"] description = "MKL-based FFT transforms for NumPy arrays" dynamic = ["version"] keywords = ["DFTI", "FFT", "Fourier", "MKL"] From 850d7938abb3eb54d571ba18cd6403fd6ccbaad7 Mon Sep 17 00:00:00 2001 From: xaleryb Date: Mon, 11 May 2026 20:12:10 +0000 Subject: [PATCH 2/2] Add pip check to conda-recipe-cf test suite --- conda-recipe-cf/meta.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/conda-recipe-cf/meta.yaml b/conda-recipe-cf/meta.yaml index 6d3a174..033bae7 100644 --- a/conda-recipe-cf/meta.yaml +++ b/conda-recipe-cf/meta.yaml @@ -31,8 +31,10 @@ requirements: test: commands: + - pip check - pytest -v --pyargs mkl_fft requires: + - pip - pytest - scipy >=1.10 - mkl-service