Skip to content

Commit 0bcf17b

Browse files
committed
Bump version number
1 parent 467b801 commit 0bcf17b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

mpi4py_fft/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
For more information, see `documentation <https://mpi4py-fft.readthedocs.io>`_.
1717
1818
"""
19-
__version__ = '2.0.0'
19+
__version__ = '2.0.1'
2020
__author__ = 'Lisandro Dalcin and Mikael Mortensen'
2121

2222
from .distarray import DistArray, newDistArray, Function

mpi4py_fft/io/h5py_file.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def write(self, step, fields, **kw):
9191
>>> T = PFFT(comm, (15, 16, 17))
9292
>>> u = newDistArray(T, forward_output=False, val=1)
9393
>>> v = newDistArray(T, forward_output=False, val=2)
94-
>>> f = HDF5File('h5filename.h5')
94+
>>> f = HDF5File('h5filename.h5', mode='w')
9595
>>> f.write(0, {'u': [u, (u, [slice(None), 4, slice(None)])],
9696
... 'v': [v, (v, [slice(None), 5, 5])]})
9797
>>> f.write(1, {'u': [u, (u, [slice(None), 4, slice(None)])],

0 commit comments

Comments
 (0)