summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGard Spreemann <gspreemann@gmail.com>2017-10-23 16:52:52 +0200
committerGard Spreemann <gspreemann@gmail.com>2017-10-23 16:52:52 +0200
commitda94ac5c18449abe5b8c25a3bf22cc1301dfa59f (patch)
tree7df979e218e93cdca69f2459a6d41c1a8263a0c2
parent7b56f566af508ee1b4ebb548870316a066fa4c2b (diff)
Typo. Version 0.0.9.v0.0.9
-rw-r--r--README.md4
-rw-r--r--phstuff/diphawrapper.py2
-rw-r--r--setup.py2
3 files changed, 4 insertions, 4 deletions
diff --git a/README.md b/README.md
index 03c42b9..171f1c4 100644
--- a/README.md
+++ b/README.md
@@ -35,8 +35,8 @@ following caveats:
Installation
-----
-Version 0.0.8 is available
-[here](https://nonempty.org/software/python-phstuff/phstuff-0.0.8.tar.gz). The
+Version 0.0.9 is available
+[here](https://nonempty.org/software/python-phstuff/phstuff-0.0.9.tar.gz). The
package can be installed using standard Python tools, for example by
doing `python setup.py install --user` or something similar.
diff --git a/phstuff/diphawrapper.py b/phstuff/diphawrapper.py
index 02f577c..f0a61de 100644
--- a/phstuff/diphawrapper.py
+++ b/phstuff/diphawrapper.py
@@ -221,7 +221,7 @@ def save_cubical(fname, array):
for n in array.shape:
f.write(struct.pack("<q", n))
- flat = array.flattened(order="F")
+ flat = array.flatten(order="F")
for w in flat:
f.write(struct.pack("<d", float(w)))
diff --git a/setup.py b/setup.py
index 7341148..b6280ba 100644
--- a/setup.py
+++ b/setup.py
@@ -1,7 +1,7 @@
from setuptools import setup
setup(name="phstuff",
- version="0.0.8", # Remember to update version and download
+ version="0.0.9", # Remember to update version and download
# information in README.md too!
description="Some persistent homology glue",
url="https://nonempty.org/software/python-phstuff",