From d537b78f704998923f2975d3d0fe9e82d05c0f7e Mon Sep 17 00:00:00 2001 From: ilan-gold Date: Thu, 8 Aug 2024 16:05:41 -0400 Subject: [PATCH 1/3] (fix): upper bound `dask` --- docs/release-notes/0.10.9.md | 1 + pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/release-notes/0.10.9.md b/docs/release-notes/0.10.9.md index 2e60dcf2d..7efd6149f 100644 --- a/docs/release-notes/0.10.9.md +++ b/docs/release-notes/0.10.9.md @@ -7,6 +7,7 @@ * Coerce {class}`numpy.matrix` classes to arrays when trying to store them in `AnnData` {pr}`1516` {user}`flying-sheep` * Fix for setting a dense `X` view with a sparse matrix {pr}`1532` {user}`ilan-gold` * Upper bound {mod}`numpy` for `gpu` installation on account of https://github.com/cupy/cupy/issues/8391 {pr}`1540` {user}`ilan-gold` +* Upper bound {mod}`dask` on account of https://github.com/scverse/anndata/issues/1579 {pr}`1540` {user}`ilan-gold` #### Documentation diff --git a/pyproject.toml b/pyproject.toml index ef97699f6..a36f06af6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -94,7 +94,7 @@ test = [ "boltons", "scanpy", "httpx", # For data downloading - "dask[array,distributed]>=2022.09.2", + "dask[array,distributed]>=2022.09.2,<2024.8.0", "awkward>=2.3", "pyarrow", "pytest_memray", From 4edb489f8cffc689f8af41a747318eeb695bc858 Mon Sep 17 00:00:00 2001 From: ilan-gold Date: Thu, 8 Aug 2024 16:09:48 -0400 Subject: [PATCH 2/3] (fix): pr number --- docs/release-notes/0.10.9.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/release-notes/0.10.9.md b/docs/release-notes/0.10.9.md index 7efd6149f..7cd4b07de 100644 --- a/docs/release-notes/0.10.9.md +++ b/docs/release-notes/0.10.9.md @@ -7,7 +7,7 @@ * Coerce {class}`numpy.matrix` classes to arrays when trying to store them in `AnnData` {pr}`1516` {user}`flying-sheep` * Fix for setting a dense `X` view with a sparse matrix {pr}`1532` {user}`ilan-gold` * Upper bound {mod}`numpy` for `gpu` installation on account of https://github.com/cupy/cupy/issues/8391 {pr}`1540` {user}`ilan-gold` -* Upper bound {mod}`dask` on account of https://github.com/scverse/anndata/issues/1579 {pr}`1540` {user}`ilan-gold` +* Upper bound {mod}`dask` on account of https://github.com/scverse/anndata/issues/1579 {pr}`1580` {user}`ilan-gold` #### Documentation From 186101b682c9946c5073cd2a645cf8809d8e70d4 Mon Sep 17 00:00:00 2001 From: ilan-gold Date: Thu, 8 Aug 2024 16:14:01 -0400 Subject: [PATCH 3/3] (fix): remove `mod` --- docs/release-notes/0.10.9.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/release-notes/0.10.9.md b/docs/release-notes/0.10.9.md index 7cd4b07de..6251d5a6f 100644 --- a/docs/release-notes/0.10.9.md +++ b/docs/release-notes/0.10.9.md @@ -7,7 +7,7 @@ * Coerce {class}`numpy.matrix` classes to arrays when trying to store them in `AnnData` {pr}`1516` {user}`flying-sheep` * Fix for setting a dense `X` view with a sparse matrix {pr}`1532` {user}`ilan-gold` * Upper bound {mod}`numpy` for `gpu` installation on account of https://github.com/cupy/cupy/issues/8391 {pr}`1540` {user}`ilan-gold` -* Upper bound {mod}`dask` on account of https://github.com/scverse/anndata/issues/1579 {pr}`1580` {user}`ilan-gold` +* Upper bound dask on account of https://github.com/scverse/anndata/issues/1579 {pr}`1580` {user}`ilan-gold` #### Documentation