From cb7410f15894223e30d614c7de26b343cb72cf10 Mon Sep 17 00:00:00 2001 From: Matteo Pagin Date: Wed, 10 Jul 2024 12:58:56 +0200 Subject: [PATCH] Update dependencies to support Numpy 2 (#75) --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index e6a7b6a..da9d5dc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,9 +16,9 @@ gitpython = "*" drmaa = "*" tinydb = "^4.0.0" xarray = "*" -# Numpy 1.26.0 is needed to support Python >=3.12, which dropped distutils. +# Numpy >=1.26.0 is needed to support Python >=3.12, which dropped distutils. # See https://github.com/python-poetry/poetry/issues/7611#issuecomment-1793859449 -numpy = "^1.26.0" +numpy = ">=1.26.0" pandas = "*" click = "*" salib = "^1.3.8"