With h5py 3 one of the loompy tests fails, because `h5py.File` is not given the file mode `a` and thus won't create the file. In tests/test_file_attribute_manager.py#L18 `h5py.File(f.name, 'a')` should be used to avoid the test failure.
With h5py 3 one of the loompy tests fails, because
h5py.Fileis not given the file modeaand thus won't create the file.In tests/test_file_attribute_manager.py#L18
h5py.File(f.name, 'a')should be used to avoid the test failure.