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

Pin Zarr for tests #460

Merged
merged 4 commits into from
May 8, 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
3 changes: 1 addition & 2 deletions .github/workflows/dev-gallery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,8 @@ jobs:
pip install pytest-cov
- name: Install package
run: |
pip install -e .
pip install -e ".[dandi]"
pip install git+https://github.com/neurodatawithoutborders/pynwb@dev
pip install dandi
- name: Download testing data and set config path
run: |
dandi download "https://gui-staging.dandiarchive.org/#/dandiset/204919"
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/streaming-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,7 @@ jobs:
run: pip install pytest

- name: Install package
run: |
pip install .
pip install dandi
run: pip install ".[dandi]"
- name: Install HDMF-zarr # temporary
run: pip install hdmf-zarr
- name: Install latest HDMF # temporary
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,7 @@ jobs:
pip install pytest-cov

- name: Install package
run: |
pip install .
pip install dandi
run: pip install ".[dandi]"
- name: Download testing data and set config path
run: |
dandi download "https://gui-staging.dandiarchive.org/#/dandiset/204919"
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/version-gallery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,8 @@ jobs:
pip install pytest-cov
- name: Install package
run: |
pip install -e .
pip install -e ".[dandi]"
pip install pynwb==${{ matrix.pynwb-version }}
pip install dandi
- name: Download testing data and set config path
run: |
dandi download "https://gui-staging.dandiarchive.org/#/dandiset/204919"
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@
package_dir={"": "src"},
include_package_data=True, # Includes files described in MANIFEST.in in the installation
install_requires=install_requires,
extras_require=dict(dandi=["dandi>=0.39.2"], zarr=["hdmf_zarr>=0.3.0"]),
# zarr<2.18.0 because of https://github.com/NeurodataWithoutBorders/nwbinspector/pull/460
extras_require=dict(dandi=["dandi>=0.39.2", "zarr<2.18.0"], zarr=["hdmf_zarr>=0.3.0", "zarr<2.18.0"]),
entry_points={"console_scripts": ["nwbinspector=nwbinspector.nwbinspector:inspect_all_cli"]},
license="BSD-3-Clause",
classifiers=[
Expand Down
Loading