From 68979d5ae9fba115718b43bc488f276edd6ba5b7 Mon Sep 17 00:00:00 2001 From: Simon Perkins Date: Mon, 11 Nov 2024 12:52:53 +0200 Subject: [PATCH] Restrict dask < 2024.11.0 (#341) --- HISTORY.rst | 1 + pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/HISTORY.rst b/HISTORY.rst index 1ff6e07b..989af71a 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -4,6 +4,7 @@ History X.Y.Z (YYYY-MM-DD) ------------------ +* Restrict dask < 2024.11.0 (:pr:`341`) * Use github action to install poetry (:pr:`340`) * Update readthedocs version (:pr:`339`) diff --git a/pyproject.toml b/pyproject.toml index 8f0a2616..4b560823 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,7 +10,7 @@ packages = [{include = "daskms"}] [tool.poetry.dependencies] python = "^3.10, < 3.13" appdirs = "^1.4.4" -dask = {extras = ["array"], version = ">= 2023.1.1"} +dask = {extras = ["array"], version = ">= 2023.1.1, < 2024.11.0"} donfig = ">= 0.8.0" python-casacore = "^3.6.1" numpy = ">= 2.0.0"