Skip to content

Commit

Permalink
Install dask[dataframe] explicitly to fix upstream error
Browse files Browse the repository at this point in the history
  • Loading branch information
tomwhite committed Sep 19, 2024
1 parent d522c0f commit c1e7e6e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/scripts/upstream_install.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def install_deps() -> None:
"--upgrade",
)
upstream_deps = (
"git+https://github.com/dask/dask.git#egg=dask[array]",
"git+https://github.com/dask/dask.git#egg=dask[array,dataframe]",
"git+https://github.com/dask/distributed.git#egg=distributed",
"git+https://github.com/dask/dask-ml.git#egg=dask-ml",
"git+https://github.com/pandas-dev/pandas#egg=pandas",
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
numpy < 2
xarray
dask[array] >= 2023.01.0, <= 2024.8.0
dask[array,dataframe] >= 2023.01.0, <= 2024.8.0
distributed >= 2023.01.0, <= 2024.8.0
dask-ml
scipy
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ python_requires = >=3.9
install_requires =
numpy < 2
xarray
dask[array] >= 2022.01.0, <= 2024.8.0
dask[array,dataframe] >= 2022.01.0, <= 2024.8.0
distributed >= 2022.01.0, <= 2024.8.0
dask-ml
scipy
Expand Down

0 comments on commit c1e7e6e

Please sign in to comment.