From f45c7c57be2a4cd7bd12fa4ff24ae68ce15b9e29 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 ff9568e..fba910f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -57,7 +57,7 @@ classifiers = [ "Operating System :: POSIX", "Operating System :: Unix" ] -dependencies = ["numpy >=1.26.4", "mkl"] +dependencies = ["numpy >=1.26.4"] description = "Intel (R) MKL-based universal functions for NumPy arrays" dynamic = ["version"] keywords = ["mkl_umath"] From 6fb665bfc465511b8c6bc92274678a44a992c0e7 Mon Sep 17 00:00:00 2001 From: xaleryb Date: Mon, 11 May 2026 20:12:12 +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 7771bd5..2657c2d 100644 --- a/conda-recipe-cf/meta.yaml +++ b/conda-recipe-cf/meta.yaml @@ -38,10 +38,12 @@ requirements: test: requires: + - pip - pytest source_files: - mkl_umath/tests/test_basic.py commands: + - pip check - pytest mkl_umath/tests/test_basic.py imports: - mkl_umath