We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b159086 commit 530e7f4Copy full SHA for 530e7f4
1 file changed
src/amuse/io/store_v2.py
@@ -740,11 +740,11 @@ def __init__(
740
if append_to_file:
741
if os.access(filename, os.F_OK) and not os.access(filename, os.W_OK):
742
raise Exception("Opening file for append but file {0} is not writeable".format(filename))
743
- self.hdf5file = h5py.File(filename,'a')
+ self.hdf5file = h5py.File(filename,'a',libver='latest')
744
elif open_for_writing:
745
- self.hdf5file = h5py.File(filename,'w')
+ self.hdf5file = h5py.File(filename,'w',libver='latest')
746
else:
747
- self.hdf5file = h5py.File(filename,'r')
+ self.hdf5file = h5py.File(filename,'r',libver='latest')
748
749
self.copy_history = copy_history
750
self.mapping_from_groupid_to_set = {}
0 commit comments