From d4e6d035ecda073eab8bcf60f4eef572ee7087e6 Mon Sep 17 00:00:00 2001 From: Jake VanderPlas Date: Mon, 26 Aug 2024 10:50:53 -0700 Subject: [PATCH] CI: build against the most recent NumPy 2.X release --- pyproject.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 84287a70..147abd55 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -48,10 +48,10 @@ pyink-use-majority-quotes = true [build-system] requires = [ - # We must build against NumPy 2.0 for the resulting wheels to - # be compatible with both NumPy 1.X and 2.X. - "numpy~=2.0.0", - "setuptools~=70.1.1", + # We build against the most recent supported NumPy 2.0 release; + # see https://github.com/numpy/numpy/issues/27265 + "numpy~=2.0", + "setuptools~=73.0.1", ] build-backend = "setuptools.build_meta"