Skip to content

Commit 33c36fe

Browse files
authored
Limit numpy and dask (#527)
Limit numpy and dask versions
1 parent 7645b0e commit 33c36fe

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def run(self):
5555
]
5656

5757
test_requirements = [
58-
"dask[array,distributed]>=2021.4.1,!=2022.5.1",
58+
"dask[array,distributed]>=2021.4.1,!=2022.5.1,<=2023.5.0",
5959
"docutils>=0.10,<0.16",
6060
"psutil>=5.7.0",
6161
"pytest>=5.4.3",
@@ -100,11 +100,11 @@ def run(self):
100100
]
101101

102102
requirements = [
103-
"dask[array]>=2021.4.1",
103+
"dask[array]>=2021.4.1,<=2023.5.0",
104104
"fsspec>=2022.8.0",
105105
"imagecodecs>=2020.5.30",
106106
"lxml>=4.6,<5",
107-
"numpy>=1.16,<2",
107+
"numpy>=1.16,<=1.24.0",
108108
"ome-types>=0.3.3,<0.4.0",
109109
"ome-zarr>=0.6.1",
110110
"PyYAML>=6.0",

0 commit comments

Comments
 (0)