From d54ad9240883a892e68016f5c98826ea3b934f3d Mon Sep 17 00:00:00 2001 From: Mark Dickinson Date: Mon, 8 Jul 2024 14:16:55 +0100 Subject: [PATCH] Replace oldest-supported-numpy with numpy (#194) This is an attempt to get CI working again. We should be listing NumPy rather than oldest-supported-numpy as a build dependency. xref: https://github.com/scipy/oldest-supported-numpy?tab=readme-ov-file#deprecation-notice-for-numpy-20 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 2f3c8c5..3e4db05 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [build-system] -requires = ["oldest-supported-numpy", "setuptools", "wheel"] +requires = ["numpy", "setuptools", "wheel"] build-backend = 'setuptools.build_meta' [tool.cibuildwheel]