Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
* Import ufuncs explicitly in `__init__.py` and add `__all__` to module [gh-177](https://github.com/IntelPython/mkl_umath/pull/177)
* Made conda recipe dependency on numpy configurable through `USE_NUMPY_BASE` environment variable [gh-181](https://github.com/IntelPython/mkl_umath/pull/181)
* 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)

### Fixed
* Build with ICX compiler from 2026.0 release [gh-155](https://github.com/IntelPython/mkl_umath/pull/155)
Expand Down
3 changes: 3 additions & 0 deletions conda-recipe-cf/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ requirements:
- numpy
run:
- python
- python-gil # [py>=314]
Comment thread
ndgrigorian marked this conversation as resolved.
- {{ pin_compatible('mkl') }}
- {{ pin_compatible('numpy') }}
- {{ pin_compatible('intel-cmplr-lib-rt') }}

test:
Expand Down
2 changes: 1 addition & 1 deletion conda-recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ requirements:
run:
- python
- python-gil # [py>=314]
- mkl-service
- {{ pin_compatible('mkl') }}
- {{ pin_compatible('intel-cmplr-lib-rt') }}
{% if use_numpy_base %}
- numpy-base
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ classifiers = [
"Operating System :: POSIX",
"Operating System :: Unix"
]
dependencies = ["numpy >=1.26.4", "mkl-service"]
dependencies = ["numpy >=1.26.4", "mkl"]
description = "Intel (R) MKL-based universal functions for NumPy arrays"
dynamic = ["version"]
keywords = ["mkl_umath"]
Expand Down
Loading