From b4ad5637bb01231ba25509796208f74ce79d3ce4 Mon Sep 17 00:00:00 2001 From: Leo Fang Date: Mon, 28 Oct 2024 01:19:22 -0400 Subject: [PATCH 1/2] add a tentative constraint on cuda-python --- cuda_core/pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cuda_core/pyproject.toml b/cuda_core/pyproject.toml index 2b497245..8cf79aca 100644 --- a/cuda_core/pyproject.toml +++ b/cuda_core/pyproject.toml @@ -43,6 +43,8 @@ classifiers = [ ] dependencies = [ "numpy", + # TODO: change this once cuda-bindings is packaged, see NVIDIA/cuda-python#105 + "cuda-python <=12.7.*", ] From 61b4eb3bb67c9c8e7acf7d218dbb38fb507d8d7c Mon Sep 17 00:00:00 2001 From: Leo Fang Date: Mon, 28 Oct 2024 15:56:14 -0400 Subject: [PATCH 2/2] constrain by major ver --- cuda_core/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cuda_core/pyproject.toml b/cuda_core/pyproject.toml index 8cf79aca..35d1c42a 100644 --- a/cuda_core/pyproject.toml +++ b/cuda_core/pyproject.toml @@ -44,7 +44,7 @@ classifiers = [ dependencies = [ "numpy", # TODO: change this once cuda-bindings is packaged, see NVIDIA/cuda-python#105 - "cuda-python <=12.7.*", + "cuda-python <13", ]