From 9ceb43d659b472d1bada367ea35452c45dde9235 Mon Sep 17 00:00:00 2001 From: Jake VanderPlas Date: Mon, 26 Aug 2024 10:38:04 -0700 Subject: [PATCH] CI: build against the most recent NumPy 2.X release --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 84287a70..292ad08b 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. + # We build against the most recent supported NumPy 2.0 release; + # see https://github.com/numpy/numpy/issues/27265 "numpy~=2.0.0", - "setuptools~=70.1.1", + "setuptools~=73.0.1", ] build-backend = "setuptools.build_meta"