Skip to content

Commit

Permalink
Pin before loud dask.dataframe deprecation warning (#29)
Browse files Browse the repository at this point in the history
- This rolls back the changes in
#25 until we have
a plan to deal with the loud `dask.dataframe` deprecation warning in
`dask>=2024.2.0`
- This adds `dask_expr` as a dependency in preparation for
rapidsai/cudf#14805 (happy to add this in a
follow-up PR if others prefer)
- We may be able to remove the pin for 24.04 if/when
#27 is merged
(fingers crossed). However, the *default* plan is still to keep the
2024.1.1 dask pin in place until 24.06 (see:
#26)
  • Loading branch information
rjzamora authored Feb 29, 2024
1 parent f92bec2 commit cb272d5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
7 changes: 4 additions & 3 deletions conda/recipes/rapids-dask-dependency/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,10 @@ build:

requirements:
run:
- dask >=2024.1.1
- dask-core >=2024.1.1
- distributed >=2024.1.1
- dask ==2024.1.1
- dask-core ==2024.1.1
- distributed ==2024.1.1
- dask-expr ==0.4.0

about:
home: https://rapids.ai/
Expand Down
5 changes: 3 additions & 2 deletions pip/rapids-dask-dependency/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@ name = "rapids-dask-dependency"
version = "24.04.00a0"
description = "Dask and Distributed version pinning for RAPIDS"
dependencies = [
"dask @ git+https://github.com/dask/dask.git@main",
"distributed @ git+https://github.com/dask/distributed.git@main",
"dask==2024.1.1",
"distributed==2024.1.1",
"dask-expr==0.4.0",
]
license = { text = "Apache 2.0" }
readme = { file = "README.md", content-type = "text/markdown" }
Expand Down

0 comments on commit cb272d5

Please sign in to comment.