Skip to content

Commit

Permalink
(fix): bound pytest
Browse files Browse the repository at this point in the history
  • Loading branch information
ilan-gold committed Dec 3, 2024
1 parent ae28fbf commit 270ce81
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ doc = [
dev-doc = ["towncrier>=24.8.0"] # release notes tool
test = [
"loompy>=3.0.5",
"pytest>=8.2",
"pytest>=8.2,<8.3.4",
"pytest-cov>=2.10",
"zarr<3.0.0a0",
"matplotlib",
Expand Down
2 changes: 0 additions & 2 deletions src/anndata/_io/specs/registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,9 +130,7 @@ def get_write(

if dest_type is h5py.File:
dest_type = h5py.Group

if (dest_type, src_type, modifiers) not in self.write:
print(self.write)
raise IORegistryError._from_write_parts(dest_type, src_type, modifiers)
internal = self.write[(dest_type, src_type, modifiers)]
return partial(internal, _writer=writer)
Expand Down

0 comments on commit 270ce81

Please sign in to comment.