This is an automated email from the ASF dual-hosted git repository.
raulcd pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git
The following commit(s) were added to refs/heads/main by this push:
new 3b9d90cb35 GH-49083: [CI][Python] Remove dask-contrib/dask-expr from
the nightly dask test builds (#49126)
3b9d90cb35 is described below
commit 3b9d90cb35bbd6a2d998d64a0c64242fea3bbf0c
Author: Alenka Frim <[email protected]>
AuthorDate: Tue Feb 3 11:30:12 2026 +0100
GH-49083: [CI][Python] Remove dask-contrib/dask-expr from the nightly dask
test builds (#49126)
### Rationale for this change
Failing nightly job for dask (test-conda-python-3.11-dask-upstream_devel).
### What changes are included in this PR?
Removal of dask-contrib/dask-expr package as it is included in the dask
dataframe module since January 2025.
### Are these changes tested?
Yes, with extendeed dask build.
### Are there any user-facing changes?
No.
* GitHub Issue: #49083
Authored-by: AlenkaF <[email protected]>
Signed-off-by: Raúl Cumplido <[email protected]>
---
ci/scripts/install_dask.sh | 1 -
1 file changed, 1 deletion(-)
diff --git a/ci/scripts/install_dask.sh b/ci/scripts/install_dask.sh
index 8967e2681d..a6ccc2a261 100755
--- a/ci/scripts/install_dask.sh
+++ b/ci/scripts/install_dask.sh
@@ -28,7 +28,6 @@ dask=$1
if [ "${dask}" = "upstream_devel" ]; then
pip install "dask[dataframe] @ git+https://github.com/dask/dask.git"
- pip install -U git+https://github.com/dask-contrib/dask-expr.git
elif [ "${dask}" = "latest" ]; then
pip install "dask[dataframe]"
else