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
45 changes: 0 additions & 45 deletions .travis.yml

This file was deleted.

3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
* 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)

### Changed
* 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)

### Removed
* Dropped support for Python 3.9 [gh-118](https://github.com/IntelPython/mkl-service/pull/118)
* 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)
Expand Down
10 changes: 8 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,13 @@

[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=77", "Cython", "wheel>=0.45.1", "build>=1.2.2"]
requires = [
"setuptools>=77",
"Cython",
"wheel>=0.45.1",
"build>=1.2.2",
"mkl-devel"
Comment thread
ndgrigorian marked this conversation as resolved.
]

[project]
authors = [
Expand All @@ -50,7 +56,7 @@ classifiers = [
"Operating System :: POSIX",
"Operating System :: Unix"
]
dependencies = []
dependencies = ["mkl"]
Comment thread
ndgrigorian marked this conversation as resolved.
description = "Python hooks for Intel® oneAPI Math Kernel Library (oneMKL) runtime control settings"
dynamic = ["version"]
keywords = ["MKL"]
Expand Down
Loading