From a0cb1d02902b2981fcac3fd7a83237c19f76c690 Mon Sep 17 00:00:00 2001 From: Philipp Schiele <44360364+phschiele@users.noreply.github.com> Date: Mon, 17 Jun 2024 15:13:05 -0700 Subject: [PATCH] Updates build-requires --- pyproject.toml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index bbf49ad..e7b20a1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,2 +1,7 @@ [build-system] -requires = ["wheel", "setuptools", "oldest-supported-numpy"] +requires = [ + "numpy >= 2.0.0; python_version > '3.8'", + "oldest-supported-numpy; python_version <= '3.8'", + "wheel", + "setuptools" +]