From be16845bd5a96fb595f8d269e3794120eda7704a Mon Sep 17 00:00:00 2001 From: Suvayu Ali Date: Thu, 11 Jul 2024 02:12:13 +0200 Subject: [PATCH] Limit numpy<2.0 Fails because casacore wheel is built against numpy~=1 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 7b909a0..0a459cf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,7 +15,7 @@ requires-python = ">=3.10, <3.12" dependencies = [ "astropy", "dask[array]", - "numpy", + "numpy<2.0", "psutil", "python-casacore", "python-dateutil",