Skip to content

Commit

Permalink
(fix): upper bound pytest (#1785)
Browse files Browse the repository at this point in the history
* (fix): see if awkward is imported

* (chore): print out write dict

* (fix): bound pytest

* (fix): revert view import for awk
  • Loading branch information
ilan-gold authored Dec 3, 2024
1 parent 7d9fba8 commit bf8f222
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 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
1 change: 0 additions & 1 deletion src/anndata/_io/specs/registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,6 @@ def get_write(

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

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

0 comments on commit bf8f222

Please sign in to comment.