From 0355a0ca15879572c6745327eced00012b11f19c Mon Sep 17 00:00:00 2001 From: Matthew Avaylon Date: Tue, 17 Sep 2024 08:20:26 -0700 Subject: [PATCH] Release 0.9.0 (#218) * Update CHANGELOG.md * Update test_gallery.py * Update CHANGELOG.md --------- Co-authored-by: Steph Prince <40640337+stephprince@users.noreply.github.com> --- CHANGELOG.md | 2 +- test_gallery.py | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f42b76c5..a5be75c0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/test_gallery.py b/test_gallery.py index 282f2b6b..c03fa19b 100644 --- a/test_gallery.py +++ b/test_gallery.py @@ -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 @@ -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())