You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ur...@apache.org on 2022/10/31 07:07:07 UTC

[airflow] branch main updated: Limit Dask to under 2022.10.1 (#27383)

This is an automated email from the ASF dual-hosted git repository.

uranusjr pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new dfba4addcd Limit Dask to under 2022.10.1 (#27383)
dfba4addcd is described below

commit dfba4addcdafeaebf583bdcf3cbabf72f828f3a3
Author: Jarek Potiuk <ja...@potiuk.com>
AuthorDate: Mon Oct 31 08:06:58 2022 +0100

    Limit Dask to under 2022.10.1 (#27383)
    
    The 2022.10.1 release of Dask have introduced some breaking changes
    (related to bokeh removal) that break our tests. We have very little
    knowledge and almost no involvement of the Dask team in their executor.
---
 setup.py | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/setup.py b/setup.py
index d8cbd9aa15..83dcd34fe4 100644
--- a/setup.py
+++ b/setup.py
@@ -243,7 +243,9 @@ dask = [
     # Dask support is limited, we need Dask team to upgrade support for dask if we were to continue
     # Supporting it in the future
     "cloudpickle>=1.4.1",
-    "dask>=2.9.0",
+    # Dask in version 2022.10.1 removed `bokeh` support and dask integration needs to be upgraded
+    # by someone from Dask team who can test it
+    "dask>=2.9.0,<2022.10.1",
     "distributed>=2.11.1",
 ]
 deprecated_api = [