Skip to content

Commit 81a90ee

Browse files
authored
Merge pull request #188 from IntelPython/drop-mkl-service-dependency
Replace `mkl-service` dependency with `mkl`
2 parents c53aa5b + baaa463 commit 81a90ee

4 files changed

Lines changed: 6 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111
### Changed
1212
* Import ufuncs explicitly in `__init__.py` and add `__all__` to module [gh-177](https://github.com/IntelPython/mkl_umath/pull/177)
1313
* Made conda recipe dependency on numpy configurable through `USE_NUMPY_BASE` environment variable [gh-181](https://github.com/IntelPython/mkl_umath/pull/181)
14+
* Removed `mkl-service` as a dependency in favor of `mkl`, as `mkl-service` is not used in `mkl_umath` directly [gh-188](https://github.com/IntelPython/mkl_umath/pull/188)
1415

1516
### Fixed
1617
* Build with ICX compiler from 2026.0 release [gh-155](https://github.com/IntelPython/mkl_umath/pull/155)

conda-recipe-cf/meta.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@ requirements:
3131
- numpy
3232
run:
3333
- python
34+
- python-gil # [py>=314]
35+
- {{ pin_compatible('mkl') }}
36+
- {{ pin_compatible('numpy') }}
3437
- {{ pin_compatible('intel-cmplr-lib-rt') }}
3538

3639
test:

conda-recipe/meta.yaml

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

pyproject.toml

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

0 commit comments

Comments
 (0)