Skip to content

Commit 44dcb11

Browse files
authored
Merge pull request #177 from IntelPython/add-mkl-dependency
Add `mkl` dependency
2 parents 0cbe29b + 35a1926 commit 44dcb11

3 files changed

Lines changed: 11 additions & 47 deletions

File tree

.travis.yml

Lines changed: 0 additions & 45 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99
### Added
1010
* Added support for ISA constants `"avx10"` and `"avx512_e5"` and CNR constants `"avx10"` and `"avx10,strict"` [gh-175](https://github.com/IntelPython/mkl-service/pull/175)
1111

12+
### Changed
13+
* Added `mkl` as a runtime dependency and `mkl-devel` as build dependency in `pyproject.toml` [gh-177](https://github.com/IntelPython/mkl-service/pull/177)
14+
1215
### Removed
1316
* Dropped support for Python 3.9 [gh-118](https://github.com/IntelPython/mkl-service/pull/118)
1417
* Dropped support for `"ssse3"`, `"sse4_1"`, `"avx"`, `"avx512_mic"`, `"avx512_mic,strict"`, and `"avx512_mic_e1"` cbwr branches [gh-173](https://github.com/IntelPython/mkl-service/pull/173)

pyproject.toml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,13 @@
2525

2626
[build-system]
2727
build-backend = "setuptools.build_meta"
28-
requires = ["setuptools>=77", "Cython", "wheel>=0.45.1", "build>=1.2.2"]
28+
requires = [
29+
"setuptools>=77",
30+
"Cython",
31+
"wheel>=0.45.1",
32+
"build>=1.2.2",
33+
"mkl-devel"
34+
]
2935

3036
[project]
3137
authors = [
@@ -50,7 +56,7 @@ classifiers = [
5056
"Operating System :: POSIX",
5157
"Operating System :: Unix"
5258
]
53-
dependencies = []
59+
dependencies = ["mkl"]
5460
description = "Python hooks for Intel® oneAPI Math Kernel Library (oneMKL) runtime control settings"
5561
dynamic = ["version"]
5662
keywords = ["MKL"]

0 commit comments

Comments
 (0)