From cb4b477c276eac34ff18910725161eb782f01db6 Mon Sep 17 00:00:00 2001 From: "V. Armando Sole" Date: Tue, 7 May 2024 13:35:58 +0200 Subject: [PATCH] numpy 2.0 support --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 2bf0cb3..8254941 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,8 +1,8 @@ [build-system] -build-backend = "setuptools.build_meta" requires = [ "setuptools", "wheel", - "oldest-supported-numpy", - "Cython>=0.28.3" + "numpy>=2.0.0rc1", + "Cython" ] +build-backend = "setuptools.build_meta"