From 7eef5468db027340336b2067096c2d18dcfdb532 Mon Sep 17 00:00:00 2001 From: Raphael Date: Fri, 15 Mar 2024 18:26:54 +0100 Subject: [PATCH] Fix issues with pip install and missing "dask-expr" package https://github.com/dask/dask/issues/10995 --- pyproject.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index a2d6400c5..05f274f19 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -66,7 +66,10 @@ wms = [ "requests", ] -shade = ["datashader"] +shade = [ + "datashader", + "dask[dataframe]", # to address https://github.com/dask/dask/issues/10995 +] gui = [ "PyQt5",