Skip to content

Commit

Permalink
zarr version is unpinned (#243)
Browse files Browse the repository at this point in the history
* zarr version is unpinned

* removed invalid todo

* Black fix

Co-authored-by: acs-ws <asolak@ku.edu.tr>
  • Loading branch information
AhmetCanSolak and acs-ws committed Sep 22, 2022
1 parent bc39183 commit 77868a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions aydin/io/io.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,9 +135,7 @@ def imread(input_path):

try:
if is_zarr:
g = zarr.open(
input_path, mode='r'
) # TODO: fix this, it crashes with zarr arrays
g = zarr.open(input_path, mode='r')
if isinstance(g, zarr.Array):
lprint(f"Reading file {input_path} as ZARR array")

Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ install_requires =
tensorflow==2.8.1
torch>=1.10.1
keras==2.8.0
zarr==2.4.0
zarr>=2.12.0
imagecodecs==2022.2.22
memoization>=0.4.0

Expand Down

0 comments on commit 77868a1

Please sign in to comment.