Skip to content

Commit

Permalink
Bump to version 0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
haasad committed Jun 18, 2021
1 parent 612006d commit 96a7b01
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 6 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,5 @@ __pycache__
*~
*.egg-info
.flake8
build
dist
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ PyPardiso provides a `spsolve` and a `factorized` method that are significantly

## Changelog

__v0.3.2__

* Change requirements in setup.py to fix [failing conda-forge build](https://github.com/conda-forge/staged-recipes/pull/15106#discussion_r654696146)

__v0.3.1__

- Revert to the old way of detecting the mkl_rt library on osx, since psutil doesn't work (see [#14])
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.1"
version: "0.3.2"

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.1'
__version__ = '0.3.2'
__all__ = ['PyPardisoSolver', 'spsolve', 'factorized', 'ps']
5 changes: 1 addition & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='pypardiso',
version="0.3.1",
version="0.3.2",
packages=['pypardiso'],
install_requires=['mkl-service', 'numpy', 'scipy', 'psutil'],
author="Adrian Haas",
Expand All @@ -20,10 +20,7 @@
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Visualization',
],
)

0 comments on commit 96a7b01

Please sign in to comment.