Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add dpcpp runtime to project dependencies section of wheel metadata #1914

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
]
Expand Down Expand Up @@ -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."
Expand Down
Loading