From 0abc014f365a73083908841059a06aa0b4133ac0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Franz=20Kir=C3=A1ly?= Date: Sun, 23 Jun 2024 19:22:06 +0100 Subject: [PATCH] [MNT] increase `numpy` bound to `numpy < 2.1`, `numpy 2` compatibility (#393) This PR bumps the bound for `numpy` to `<2.1`. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index adbf59aea..38493af1b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -39,7 +39,7 @@ classifiers = [ ] requires-python = ">=3.8,<3.13" dependencies = [ - "numpy>=1.21.0,<1.27", + "numpy>=1.21.0,<2.1", "pandas>=1.1.0,<2.3.0", "packaging", "scikit-base>=0.6.1,<0.9.0",