From 5bee4533a2a6441906a3f999980d8395aa2d6087 Mon Sep 17 00:00:00 2001 From: Daniel Weindl Date: Mon, 16 Sep 2024 15:14:31 +0200 Subject: [PATCH] AMICI: build against numpy>=2 --- deps/AMICI/python/sdist/pyproject.toml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/deps/AMICI/python/sdist/pyproject.toml b/deps/AMICI/python/sdist/pyproject.toml index 011064fb..64a5023d 100644 --- a/deps/AMICI/python/sdist/pyproject.toml +++ b/deps/AMICI/python/sdist/pyproject.toml @@ -2,13 +2,7 @@ requires = [ "setuptools>=40.6.3", "wheel", - # oldest-supported-numpy helps us to pin numpy here to the lowest supported - # version to have ABI-compatibility with the numpy version in the runtime - # environment. The undesirable alternative would be pinning the setup.py - # numpy requirement to the same version as here, which we want to avoid. - # cf. discussion at https://github.com/numpy/numpy/issues/5888 - # (https://github.com/scipy/oldest-supported-numpy/) - "oldest-supported-numpy", + "numpy>=2.0", "cmake-build-extension==0.5.1", ] build-backend = "setuptools.build_meta"