From 573cf07133c97c385097f8a80e4722bc9b3535ea Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 4 Sep 2024 00:38:36 +0000 Subject: [PATCH 1/3] Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows (#216) Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Ryan Ly --- .github/workflows/run_tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index 0f8d8f9b..c74c1ac9 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -175,7 +175,7 @@ jobs: python-version: '3.11' - name: Download wheel and source distributions from artifact - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: distributions path: dist From 0355a0ca15879572c6745327eced00012b11f19c Mon Sep 17 00:00:00 2001 From: Matthew Avaylon Date: Tue, 17 Sep 2024 08:20:26 -0700 Subject: [PATCH 2/3] 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()) From 46bdb7750ca7a85bcd27839e75487ee64035ce6f Mon Sep 17 00:00:00 2001 From: Ryan Ly Date: Thu, 19 Sep 2024 08:37:02 -0700 Subject: [PATCH 3/3] Update upload-artifact action to match download-artifact (#217) --- .github/workflows/run_tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index c74c1ac9..a4a42e6d 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -61,7 +61,7 @@ jobs: tox -e wheelinstall --recreate --installpkg dist/*-none-any.whl - name: Upload distribution as a workspace artifact if: ${{ matrix.upload-wheels }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: distributions path: dist