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

update asdf dependency to point to asdf-format main #6

Merged
merged 1 commit into from
May 22, 2023
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 setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ python_requires = >=3.8
setup_requires =
setuptools_scm
install_requires =
asdf @ git+https://github.com/braingram/asdf@converter_block_storage
asdf git+https://github.com/asdf-format/asdf@main
zarr >= 2.14 # to get https://github.com/zarr-developers/zarr-python/issues/1334
fsspec
package_dir =
Expand Down
2 changes: 1 addition & 1 deletion src/asdf_zarr/converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def from_yaml_tree(self, node, tag, ctx):
obj = zarr.open(store=store, chunk_store=chunk_store)
return obj

def reserve_blocks(self, obj, tag, ctx):
def reserve_blocks(self, obj, tag):
if not isinstance(obj.chunk_store, storage.InternalStore):
return []

Expand Down