Skip to content

Commit c1e7e6e

Browse files
committed
Install dask[dataframe] explicitly to fix upstream error
1 parent d522c0f commit c1e7e6e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/scripts/upstream_install.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def install_deps() -> None:
1414
"--upgrade",
1515
)
1616
upstream_deps = (
17-
"git+https://github.com/dask/dask.git#egg=dask[array]",
17+
"git+https://github.com/dask/dask.git#egg=dask[array,dataframe]",
1818
"git+https://github.com/dask/distributed.git#egg=distributed",
1919
"git+https://github.com/dask/dask-ml.git#egg=dask-ml",
2020
"git+https://github.com/pandas-dev/pandas#egg=pandas",

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
numpy < 2
22
xarray
3-
dask[array] >= 2023.01.0, <= 2024.8.0
3+
dask[array,dataframe] >= 2023.01.0, <= 2024.8.0
44
distributed >= 2023.01.0, <= 2024.8.0
55
dask-ml
66
scipy

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ python_requires = >=3.9
2929
install_requires =
3030
numpy < 2
3131
xarray
32-
dask[array] >= 2022.01.0, <= 2024.8.0
32+
dask[array,dataframe] >= 2022.01.0, <= 2024.8.0
3333
distributed >= 2022.01.0, <= 2024.8.0
3434
dask-ml
3535
scipy

0 commit comments

Comments
 (0)