Skip to content

Commit f4f623c

Browse files
authored
Restrict zarr and tifffile versions (#237)
Tifffile's zarr integration doesn't support zarr 3, and we are using a tifffile feature that's been discontinued in the latest version. This change restricts those packages' versions to compatible ones, as provides in the installation instructions in the README and documentation.
1 parent d1c1ba7 commit f4f623c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ conda activate ashlar
105105

106106
In the activated environment, install dependencies and ashlar itself:
107107
```bash
108-
conda install -y -c conda-forge numpy scipy matplotlib networkx scikit-image scikit-learn tifffile zarr pyjnius blessed
108+
conda install -y -c conda-forge numpy scipy matplotlib networkx scikit-image scikit-learn "tifffile<2025.2.18" "zarr<3" pyjnius blessed
109109
pip install ashlar
110110
```
111111

docs/instructions/installation.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ conda activate ashlar
3434

3535
In the activated environment, install dependencies and ashlar itself:
3636
```bash
37-
conda install -y -c conda-forge numpy scipy matplotlib networkx scikit-image scikit-learn tifffile zarr pyjnius blessed
37+
conda install -y -c conda-forge numpy scipy matplotlib networkx scikit-image scikit-learn "tifffile<2025.2.18" "zarr<3" pyjnius blessed
3838
pip install ashlar
3939
```
4040

0 commit comments

Comments
 (0)