From 2ce725924e04692f1317c9242347e0ec4115ec46 Mon Sep 17 00:00:00 2001 From: Oleksandr Pavlyk Date: Mon, 2 Dec 2024 08:39:18 -0600 Subject: [PATCH 1/2] Remove space in build-system/requires for NumPy --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 9506448754..95bb8f7208 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>=1.23", # WARNING: check with doc how to upgrade "versioneer[toml]==0.29" ] From b4c4dcc39602354f90f4fe5715e98a95968b44d1 Mon Sep 17 00:00:00 2001 From: Oleksandr Pavlyk Date: Mon, 2 Dec 2024 08:42:57 -0600 Subject: [PATCH 2/2] Add DPC++ runtime libraries to project/dependencies At the moment no version pinning is applied. --- pyproject.toml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 95bb8f7208..5d9855c861 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -40,9 +40,12 @@ dependencies = [ # This restrictions are for dependabot, actual restrictions are set with # conda. # TODO: populate it during build process - # TODO: do we have to set sycl runtime dependencies here - # "dpcpp-cpp-rt>=0.59.0", - # "intel-cmplr-lib-rt>=0.59.0" + # TODO: ensure that intel-sycl-rt and intel-cmplr-lib-rt have same version + # perhaps by pinning both. + # "intel-sycl-rt>=2025.0.0", + # "intel-cmplr-lib-rt>=2025.0.0" + "intel-cmplr-lib-rt", + "intel-sycl-rt", "numpy>=1.23.0" ] description = "A lightweight Python wrapper for a subset of SYCL."