Skip to content

Commit b9640bf

Browse files
committed
Pin back dask while we update for dask-expr
1 parent 4a75e6b commit b9640bf

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

pyproject.toml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@ all = [
5555
"cachetools",
5656
"cachey",
5757
"click !=8.1.0",
58-
"dask",
59-
"dask[array]",
60-
"dask[dataframe]",
58+
"dask <2024.3.0",
59+
"dask[array] <2024.3.0",
60+
"dask[dataframe] <2024.3.0",
6161
"entrypoints",
6262
"fastapi",
6363
"h5netcdf",
@@ -100,7 +100,7 @@ all = [
100100
]
101101
# These are needed by the client and server to transmit/receive arrays.
102102
array = [
103-
"dask[array]",
103+
"dask[array] <2024.3.0",
104104
"numpy",
105105
]
106106
# This is the "kichen sink" fully-featured client dependency set.
@@ -109,8 +109,8 @@ client = [
109109
"awkward >=2.4.3",
110110
"blosc",
111111
"click !=8.1.0",
112-
"dask[array]",
113-
"dask[dataframe]",
112+
"dask[array] <2024.3.0",
113+
"dask[dataframe] <2024.3.0",
114114
"entrypoints",
115115
"httpx >=0.20.0,!=0.23.1",
116116
"jsonschema",
@@ -137,7 +137,7 @@ compression = [
137137
]
138138
# These are needed by the client and server to transmit/receive dataframes.
139139
dataframe = [
140-
"dask[dataframe]",
140+
"dask[dataframe] <2024.3.0",
141141
"pandas",
142142
"pyarrow",
143143
]
@@ -195,7 +195,7 @@ minimal-server = [
195195
"cachey",
196196
"cachetools",
197197
"click !=8.1.0",
198-
"dask",
198+
"dask <2024.3.0",
199199
"fastapi",
200200
"httpx >=0.20.0,!=0.23.1",
201201
"canonicaljson",
@@ -235,9 +235,9 @@ server = [
235235
"cachetools",
236236
"cachey",
237237
"click !=8.1.0",
238-
"dask",
239-
"dask[array]",
240-
"dask[dataframe]",
238+
"dask <2024.3.0",
239+
"dask[array] <2024.3.0",
240+
"dask[dataframe] <2024.3.0",
241241
"fastapi",
242242
"h5netcdf",
243243
"h5py",
@@ -284,7 +284,7 @@ sparse = [
284284
]
285285
# These are needed by the client and server to transmit/receive xarrays.
286286
xarray = [
287-
"dask[array]",
287+
"dask[array] <2024.3.0",
288288
"pandas",
289289
"pyarrow",
290290
"xarray",

0 commit comments

Comments
 (0)