From 02cbbdfdcb6289668e56a0958053899d023e125d Mon Sep 17 00:00:00 2001 From: Oleksandr Pavlyk Date: Fri, 19 Jul 2024 11:47:33 -0500 Subject: [PATCH 1/2] In pyproject change to numpy>=1.23 This is to align with current setup of public CI/CD. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 5436f8cfcd..e2fe98a4c0 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.24", + "numpy >=1.23", # WARNING: check with doc how to upgrade "versioneer[toml]==0.29" ] From fceed47a3d5c1b9881fd0c1b1a21ff939e251f27 Mon Sep 17 00:00:00 2001 From: Oleksandr Pavlyk Date: Fri, 19 Jul 2024 16:04:15 -0500 Subject: [PATCH 2/2] Added change to keep pyproject spec in sync --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index e2fe98a4c0..db7ca5f8b4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -43,7 +43,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.24.0" + "numpy>=1.23.0" ] description = "A lightweight Python wrapper for a subset of SYCL." dynamic = ["version"]