We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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.
h5py.File
a
In tests/test_file_attribute_manager.py#L18 h5py.File(f.name, 'a') should be used to avoid the test failure.
h5py.File(f.name, 'a')
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
With h5py 3 one of the loompy tests fails, because
h5py.File
is not given the file modea
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.The text was updated successfully, but these errors were encountered: