Skip to content

Commit

Permalink
Bump to v0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
haasad committed Jun 3, 2021
1 parent f68bd1c commit 82def7d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ PyPardiso provides a `spsolve` and a `factorized` method that are significantly

## Changelog

__v0.3.1__

- Revert to the old way of detecting the mkl_rt library on osx, since psutil doesn't work (see [#14])

__v0.3.0__

- Changed how pypardiso detects the __mkl_rt__ library to fix a breaking change on windwos with [mkl 2021.2.0](https://anaconda.org/conda-forge/mkl). See [#12](https://github.com/haasad/PyPardisoProject/issues/12) for details.
Expand Down
2 changes: 1 addition & 1 deletion meta.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package:
name: pypardiso
version: "0.3.0"
version: "0.3.1"

source:
git_rev: origin/master
Expand Down
2 changes: 1 addition & 1 deletion pypardiso/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
from .scipy_aliases import spsolve, factorized
from .scipy_aliases import pypardiso_solver as ps

__version__ = '0.3.0'
__version__ = '0.3.1'
__all__ = ['PyPardisoSolver', 'spsolve', 'factorized', 'ps']
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='pypardiso',
version="0.3.0",
version="0.3.1",
packages=['pypardiso'],
author="Adrian Haas",
author_email="[email protected]",
Expand Down

0 comments on commit 82def7d

Please sign in to comment.