This is an automated email from the ASF dual-hosted git repository.
potiuk 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 45f1fda2fa Convert dask upper-binding into exclusion (#31329)
45f1fda2fa is described below
commit 45f1fda2fac8bf5455a1f444b98b58d38ea2db63
Author: Jarek Potiuk <[email protected]>
AuthorDate: Tue May 16 23:01:58 2023 +0200
Convert dask upper-binding into exclusion (#31329)
As https://github.com/dask/dask/issues/10279 has been solved and
Dask tests should no longer generate a PATH side-effect, we
should turn the upper-binding into exclusion, to make sure that
we upgrade to newer Dask version when it is released.
---
setup.py | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/setup.py b/setup.py
index 55a46714be..b8e4021f5b 100644
--- a/setup.py
+++ b/setup.py
@@ -245,10 +245,9 @@ dask = [
# 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,<2023.5.0",
- "distributed>=2.11.1,<2023.5.0",
+ # See https://github.com/dask/dask/issues/10279
+ "dask>=2.9.0,!=2022.10.1,!=2023.5.0",
+ "distributed>=2.11.1,!=2023.5.0",
]
deprecated_api = [
"requests>=2.26.0",