From fb1c25fc506b0afceed2a0ac130437a92a4edf73 Mon Sep 17 00:00:00 2001 From: Oleksandr Pavlyk Date: Sun, 21 Apr 2019 11:53:10 -0500 Subject: [PATCH] bump up version to 2.0.1 --- CHANGES.rst | 5 +++++ mkl/__init__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index ff060b8..ed80d78 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -18,3 +18,8 @@ Improved argument checking, which raises an informative error. Loading the package with `import mkl` initializes Intel(R) MKL library to use LP64 interface (i.e. use of environment variable `MKL_INTERFACE` will not have effect). The choice of threading layer can be controlled with environment variable `MKL_THREADING_LAYER`. However the unset variable is interpreted differently that in Intel(R) MKL itself. If `mkl-service` detects that Gnu OpenMP has been loaded in Python space, the threading layer of Intle(R) MKL will be set to Gnu OpenMP, instead of Intel(R) OpenMP. + +2.0.0 +==== + +Work-around for VS 9.0 not having `inline` keyword, allowing the package to build on Windows for Python 2.7 diff --git a/mkl/__init__.py b/mkl/__init__.py index f4cf661..166152f 100644 --- a/mkl/__init__.py +++ b/mkl/__init__.py @@ -54,4 +54,4 @@ def __exit__(self, *args): from ._py_mkl_service import * -__version__ = '2.0.0' +__version__ = '2.0.1'