Skip to content

Commit

Permalink
Releasing v 0.4.10
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-camilleri committed Sep 11, 2020
1 parent d44e198 commit 1c13749
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion mpctools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
"""

__author__ = "Michael P. J. Camilleri"
__version__ = "0.4.09"
__version__ = "0.4.10"
2 changes: 1 addition & 1 deletion mpctools/extensions/npext.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ def run_lengths(a, how="I", return_values=False, return_positions=False):
"""
# Prepare
# We fist compute assuming that we are going to use everything! This allows us to have correct
# position information We also need to convert arrays of NaN to lists so that NaN works.
# position information. We also need to convert arrays of NaN to lists so that NaN works.
# This will slow down but cannot be helped.
if type(a) == np.ndarray:
a = [i if not np.isnan(i) else np.nan for i in a.flatten()]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
license="GNU GPL",
keywords=["extensions", "parallel", "utilities"],
url="https://github.com/michael-camilleri/mpctools",
download_url="https://github.com/michael-camilleri/mpctools/archive/v_0409.tar.gz",
download_url="https://github.com/michael-camilleri/mpctools/archive/v_0410.tar.gz",
long_description=long_description,
long_description_content_type="text/markdown",
data_files=[("", ["LICENSE"])],
Expand Down

0 comments on commit 1c13749

Please sign in to comment.