Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Install dask[dataframe] explicitly to fix upstream error #1261

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/scripts/upstream_install.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ 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",
"git+https://github.com/pangeo-data/rechunker.git#egg=rechunker",
"git+https://github.com/pydata/xarray.git#egg=xarray",
"git+https://github.com/zarr-developers/zarr-python.git#egg=zarr",
"git+https://github.com/zarr-developers/zarr-python.git@main#egg=zarr",
)
full_cmd_upstream = install_cmd + upstream_deps
print(f"Install upstream dependencies via: {full_cmd_upstream}")
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/upstream.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: Upstream

on:
pull_request:
push:
schedule:
- cron: "0 1 * * *"
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
Loading