From 69131b410c0f2e101aa71bdbfacd9d1dbc2a6820 Mon Sep 17 00:00:00 2001 From: ndgrigorian <46709016+ndgrigorian@users.noreply.github.com> Date: Mon, 11 May 2026 13:34:31 -0700 Subject: [PATCH] Merge pull request #202 from IntelPython/fix/drop-pypi-mkl-runtime-dep Drop PyPI `mkl` runtime dep (fixes downstream `pip check`) --- conda-recipe-cf/meta.yaml | 2 ++ pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/conda-recipe-cf/meta.yaml b/conda-recipe-cf/meta.yaml index e2d14aa..af16a43 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 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"]