Skip to content
New issue

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

Release 0.9.0 #218

Merged
merged 3 commits into from
Sep 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# HDMF-ZARR Changelog

## 0.9.0 (Upcoming)
## 0.9.0 (September 16, 2024)
### Enhancements
* Added support for appending a dataset of references. @mavaylon1 [#203](https://github.com/hdmf-dev/hdmf-zarr/pull/203)
* NWBZarrIO load_namespaces=True by default. @mavaylon1 [#204](https://github.com/hdmf-dev/hdmf-zarr/pull/204)
Expand Down
7 changes: 7 additions & 0 deletions test_gallery.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,10 @@ def _import_from_file(script):
_deprecation_warning_zarr_store = (
r"The NestedDirectoryStore is deprecated *"
)
_deprecation_warning_numpy = (
"__array__ implementation doesn't accept a copy keyword, so passing copy=False failed. "
"__array__ must implement 'dtype' and 'copy' keyword arguments."
)

def run_gallery_tests():
global TOTAL, FAILURES, ERRORS
Expand Down Expand Up @@ -149,6 +153,9 @@ def run_gallery_tests():
warnings.filterwarnings(
"ignore", message=_deprecation_warning_zarr_store, category=FutureWarning
)
warnings.filterwarnings(
"ignore", message=_deprecation_warning_numpy, category=DeprecationWarning
)
_import_from_file(script_abs)
except Exception:
print(traceback.format_exc())
Expand Down
Loading