Skip to content

Commit

Permalink
Pin back dask while we update for dask-expr
Browse files Browse the repository at this point in the history
  • Loading branch information
danielballan committed Mar 12, 2024
1 parent 4a75e6b commit b9640bf
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ all = [
"cachetools",
"cachey",
"click !=8.1.0",
"dask",
"dask[array]",
"dask[dataframe]",
"dask <2024.3.0",
"dask[array] <2024.3.0",
"dask[dataframe] <2024.3.0",
"entrypoints",
"fastapi",
"h5netcdf",
Expand Down Expand Up @@ -100,7 +100,7 @@ all = [
]
# These are needed by the client and server to transmit/receive arrays.
array = [
"dask[array]",
"dask[array] <2024.3.0",
"numpy",
]
# This is the "kichen sink" fully-featured client dependency set.
Expand All @@ -109,8 +109,8 @@ client = [
"awkward >=2.4.3",
"blosc",
"click !=8.1.0",
"dask[array]",
"dask[dataframe]",
"dask[array] <2024.3.0",
"dask[dataframe] <2024.3.0",
"entrypoints",
"httpx >=0.20.0,!=0.23.1",
"jsonschema",
Expand All @@ -137,7 +137,7 @@ compression = [
]
# These are needed by the client and server to transmit/receive dataframes.
dataframe = [
"dask[dataframe]",
"dask[dataframe] <2024.3.0",
"pandas",
"pyarrow",
]
Expand Down Expand Up @@ -195,7 +195,7 @@ minimal-server = [
"cachey",
"cachetools",
"click !=8.1.0",
"dask",
"dask <2024.3.0",
"fastapi",
"httpx >=0.20.0,!=0.23.1",
"canonicaljson",
Expand Down Expand Up @@ -235,9 +235,9 @@ server = [
"cachetools",
"cachey",
"click !=8.1.0",
"dask",
"dask[array]",
"dask[dataframe]",
"dask <2024.3.0",
"dask[array] <2024.3.0",
"dask[dataframe] <2024.3.0",
"fastapi",
"h5netcdf",
"h5py",
Expand Down Expand Up @@ -284,7 +284,7 @@ sparse = [
]
# These are needed by the client and server to transmit/receive xarrays.
xarray = [
"dask[array]",
"dask[array] <2024.3.0",
"pandas",
"pyarrow",
"xarray",
Expand Down

0 comments on commit b9640bf

Please sign in to comment.