From 49cb38f4e7646e758425754358bf265df82dc14b Mon Sep 17 00:00:00 2001 From: Nikita Grigorian Date: Wed, 19 Nov 2025 14:21:33 -0800 Subject: [PATCH] bump minimum numpy version this aligns with NEP 29 --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 92be4c0771..6b3b1162d4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ requires = [ "ninja>=1.11.1; platform_system!='Windows'", "cmake>=3.29.0", "cython>=3.0.10", - "numpy >=1.23", + "numpy >=2.0.0", # WARNING: check with doc how to upgrade "versioneer[toml]==0.29" ] @@ -44,7 +44,7 @@ dependencies = [ # TODO: do we have to set sycl runtime dependencies here # "dpcpp-cpp-rt>=0.59.0", # "intel-cmplr-lib-rt>=0.59.0" - "numpy>=1.23.0" + "numpy>=2.0.0" ] description = "A lightweight Python wrapper for a subset of SYCL." dynamic = ["version"]