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

Upper bind dask until they solve a side effect in their test suite #31259

Merged
merged 1 commit into from
May 12, 2023
Merged
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
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