Skip to content

Commit e9e9d65

Browse files
committed
Install dask[dataframe] explicitly to fix upstream error
1 parent 9dd940e commit e9e9d65

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
@@ -30,7 +30,7 @@ python_requires = >=3.9
3030
install_requires =
3131
numpy < 2
3232
xarray
33-
dask[array] >= 2022.01.0, <= 2024.8.0
33+
dask[array,dataframe] >= 2022.01.0, <= 2024.8.0
3434
distributed >= 2022.01.0, <= 2024.8.0
3535
dask-ml
3636
scipy

0 commit comments

Comments
 (0)