Skip to content

Commit 750bca0

Browse files
committed
use mkl instead of mkl-service as dependency to get mkl
1 parent 1c79cb0 commit 750bca0

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/build-with-clang.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555

5656
- name: Install mkl_umath dependencies
5757
run: |
58-
pip install meson-python ninja cython cmake mkl-service
58+
pip install meson-python ninja cython cmake mkl
5959
pip install ${{ matrix.numpy_version }}
6060
6161
- name: List oneAPI folder content

.github/workflows/build-with-standard-clang.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747

4848
- name: Install mkl_umath dependencies
4949
run: |
50-
pip install meson-python ninja cmake cython mkl-service
50+
pip install meson-python ninja cmake cython mkl
5151
pip install mkl-devel
5252
pip install ${{ matrix.numpy_version }}
5353

conda-recipe-cf/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ requirements:
3838
run:
3939
- python
4040
- python-gil # [py>=314]
41-
- mkl-service
41+
- {{ pin_compatible('mkl') }}
4242
- {{ pin_compatible('numpy') }}
4343
- {{ pin_compatible('intel-cmplr-lib-rt') }}
4444

conda-recipe/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ requirements:
4242
run:
4343
- python
4444
- python-gil # [py>=314]
45-
- mkl-service
45+
- {{ pin_compatible('mkl') }}
4646
- {{ pin_compatible('intel-cmplr-lib-rt') }}
4747
{% if use_numpy_base %}
4848
- numpy-base

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ classifiers = [
5656
"Operating System :: POSIX",
5757
"Operating System :: Unix"
5858
]
59-
dependencies = ["numpy >=1.26.4", "mkl-service"]
59+
dependencies = ["numpy >=1.26.4", "mkl"]
6060
description = "Intel (R) MKL-based universal functions for NumPy arrays"
6161
dynamic = ["version"]
6262
keywords = ["mkl_umath"]

0 commit comments

Comments
 (0)