Skip to content

Commit

Permalink
Merge branch 'dev' into gallery
Browse files Browse the repository at this point in the history
  • Loading branch information
mavaylon1 authored Oct 28, 2024
2 parents 8331a5a + 46bdb77 commit c1458c8
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
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

0 comments on commit c1458c8

Please sign in to comment.