Skip to content

Commit

Permalink
Upper bind dask until they solve a side effect in their test suite (#…
Browse files Browse the repository at this point in the history
…31259)

Dask 2023.5.0 introduced a peculiar side-effect in their tests
that makes our OTHER tests break in a very strange way.

Issue here:

dask/dask#10279

Until the problem is fixed we should limit dask
  • Loading branch information
potiuk authored May 12, 2023
1 parent 981afe2 commit 1395754
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -240,9 +240,11 @@ def write_version(filename: str = str(AIRFLOW_SOURCES_ROOT / "airflow" / "git_ve
# 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 and distributed in version 2023.5.0 break our tests for Python > 3.7
# The upper limit can be removed when https://github.com/dask/dask/issues/10279 is fixed
# Dask in version 2022.10.1 removed `bokeh` support and we should avoid installing it
"dask>=2.9.0,!=2022.10.1",
"distributed>=2.11.1",
"dask>=2.9.0,!=2022.10.1,<2023.5.0",
"distributed>=2.11.1,<2023.5.0",
]
deprecated_api = [
"requests>=2.26.0",
Expand Down

0 comments on commit 1395754

Please sign in to comment.