From f84cb8151174f56c4010920f5893ddd8b4856922 Mon Sep 17 00:00:00 2001 From: Lindsey Gray Date: Sun, 11 Feb 2024 09:29:21 -0600 Subject: [PATCH 1/2] deps(fix): avoid dask 2024.2.0 --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 34bbfdc7a..02adf1548 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -39,7 +39,7 @@ classifiers = [ dependencies = [ "awkward>=2.5.2", "uproot>=5.2.2", - "dask[array]>=2023.4.0", + "dask[array]!=2024.2.0,>=2023.4.0", "dask-awkward>=2024.2.0", "dask-histogram>=2024.2.0", "correctionlib>=2.3.3", @@ -67,7 +67,7 @@ Homepage = "https://github.com/coffeateam/coffea" [project.optional-dependencies] dask = [ - "distributed>=2023.4.0", + "distributed!=2024.2.0,>=2023.4.0", "bokeh!=3.0.*,>=2.4.2", "blosc", ] From 01a2c89af81882c2c8adb47e92b0ac9f67a2c924 Mon Sep 17 00:00:00 2001 From: Lindsey Gray Date: Sun, 11 Feb 2024 10:12:39 -0600 Subject: [PATCH 2/2] pin dask < 2024.2.0 --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 02adf1548..791255ae8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -39,7 +39,7 @@ classifiers = [ dependencies = [ "awkward>=2.5.2", "uproot>=5.2.2", - "dask[array]!=2024.2.0,>=2023.4.0", + "dask[array]<2024.2.0,>=2023.4.0", "dask-awkward>=2024.2.0", "dask-histogram>=2024.2.0", "correctionlib>=2.3.3", @@ -67,7 +67,7 @@ Homepage = "https://github.com/coffeateam/coffea" [project.optional-dependencies] dask = [ - "distributed!=2024.2.0,>=2023.4.0", + "distributed<2024.2.0,>=2023.4.0", "bokeh!=3.0.*,>=2.4.2", "blosc", ]