Skip to content

Commit

Permalink
Fix dependency bound on scipy.
Browse files Browse the repository at this point in the history
  • Loading branch information
anntzer committed Sep 9, 2020
1 parent e872126 commit b8a11e9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Here you can see the full list of changes between each hmmlearn release.
next
----

- Bumped previously incorrect dependency bound on scipy to 0.19.
- Bug fix for 'params' argument usage in GMMHMM.
- Warn when an explicitly set attribute would be overridden by
``init_params_``.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def build_extensions(self):
install_requires=[
"numpy>=1.10", # np.broadcast_to.
"scikit-learn>=0.16", # sklearn.utils.check_array.
"scipy>=0.15", # scipy.special.logsumexp(..., keepdims=True).
"scipy>=0.19", # scipy.special.logsumexp.
],
extras_require={
"tests": ["pytest"],
Expand Down

0 comments on commit b8a11e9

Please sign in to comment.