diff --git a/conda/environments/all_cuda-129_arch-aarch64.yaml b/conda/environments/all_cuda-129_arch-aarch64.yaml index 841a6c7cf8..3827879f7a 100644 --- a/conda/environments/all_cuda-129_arch-aarch64.yaml +++ b/conda/environments/all_cuda-129_arch-aarch64.yaml @@ -8,7 +8,7 @@ dependencies: - ccache - certifi - cmake>=4.0 -- cuda-bindings>=12.9.2,<13.0 +- cuda-bindings>=12.9.3,<13.0 - cuda-cudart-dev - cuda-nvcc - cuda-profiler-api diff --git a/conda/environments/all_cuda-129_arch-x86_64.yaml b/conda/environments/all_cuda-129_arch-x86_64.yaml index 4a1957a57b..f1f0a1cdf6 100644 --- a/conda/environments/all_cuda-129_arch-x86_64.yaml +++ b/conda/environments/all_cuda-129_arch-x86_64.yaml @@ -8,7 +8,7 @@ dependencies: - ccache - certifi - cmake>=4.0 -- cuda-bindings>=12.9.2,<13.0 +- cuda-bindings>=12.9.3,<13.0 - cuda-cudart-dev - cuda-nvcc - cuda-profiler-api diff --git a/conda/environments/all_cuda-133_arch-aarch64.yaml b/conda/environments/all_cuda-133_arch-aarch64.yaml index 5630856723..919ddae488 100644 --- a/conda/environments/all_cuda-133_arch-aarch64.yaml +++ b/conda/environments/all_cuda-133_arch-aarch64.yaml @@ -8,7 +8,7 @@ dependencies: - ccache - certifi - cmake>=4.0 -- cuda-bindings>=13.0.1,<14.0 +- cuda-bindings>=13.0.2,<14.0 - cuda-cudart-dev - cuda-nvcc - cuda-profiler-api diff --git a/conda/environments/all_cuda-133_arch-x86_64.yaml b/conda/environments/all_cuda-133_arch-x86_64.yaml index 3f473c8696..cc0a588f50 100644 --- a/conda/environments/all_cuda-133_arch-x86_64.yaml +++ b/conda/environments/all_cuda-133_arch-x86_64.yaml @@ -8,7 +8,7 @@ dependencies: - ccache - certifi - cmake>=4.0 -- cuda-bindings>=13.0.1,<14.0 +- cuda-bindings>=13.0.2,<14.0 - cuda-cudart-dev - cuda-nvcc - cuda-profiler-api diff --git a/conda/recipes/cuml/recipe.yaml b/conda/recipes/cuml/recipe.yaml index ee037fe876..fb58acdba5 100644 --- a/conda/recipes/cuml/recipe.yaml +++ b/conda/recipes/cuml/recipe.yaml @@ -92,8 +92,8 @@ requirements: - treelite ${{ treelite_version }} - cuda-cudart-dev - if: cuda_major == "12" - then: cuda-bindings >=12.9.2,<13.0 - else: cuda-bindings >=13.0.1,<14.0 + then: cuda-bindings >=12.9.3,<13.0 + else: cuda-bindings >=13.0.2,<14.0 run: - ${{ pin_compatible("cuda-version", upper_bound="x", lower_bound="x") }} - cudf =${{ minor_version }} @@ -113,8 +113,8 @@ requirements: - rich - treelite ${{ treelite_version }} - if: cuda_major == "12" - then: cuda-bindings >=12.9.2,<13.0 - else: cuda-bindings >=13.0.1,<14.0 + then: cuda-bindings >=12.9.3,<13.0 + else: cuda-bindings >=13.0.2,<14.0 ignore_run_exports: by_name: - cuda-cudart diff --git a/dependencies.yaml b/dependencies.yaml index 8398be12e6..5340b1899f 100644 --- a/dependencies.yaml +++ b/dependencies.yaml @@ -664,12 +664,12 @@ dependencies: dependencies: "oldest" cuda: "12.*" packages: - - cuda-bindings==12.9.2 + - cuda-bindings==12.9.3 - matrix: dependencies: "oldest" cuda: "13.*" packages: - - cuda-bindings==13.0.1 + - cuda-bindings==13.0.2 - matrix: packages: common: @@ -789,11 +789,11 @@ dependencies: - matrix: cuda: "12.*" packages: - - cuda-bindings>=12.9.2,<13.0 + - cuda-bindings>=12.9.3,<13.0 # fallback to CUDA 13 versions if 'cuda' is '13.*' or not provided - matrix: packages: - - cuda-bindings>=13.0.1,<14.0 + - cuda-bindings>=13.0.2,<14.0 depends_on_cudf: common: - output_types: conda diff --git a/python/cuml/pyproject.toml b/python/cuml/pyproject.toml index bec01dd106..3f90aae904 100644 --- a/python/cuml/pyproject.toml +++ b/python/cuml/pyproject.toml @@ -85,7 +85,7 @@ authors = [ license = "Apache-2.0" requires-python = ">=3.11" dependencies = [ - "cuda-bindings>=13.0.1,<14.0", + "cuda-bindings>=13.0.2,<14.0", "cuda-toolkit[cublas,cufft,curand,cusolver,cusparse]==13.*", "cudf==26.12.*,>=0.0.0a0", "cupy-cuda13x[ctk]>=14.0.1,!=14.1.0", @@ -192,7 +192,7 @@ dependencies-file = "../../dependencies.yaml" matrix-entry = "cuda_suffixed=true;use_cuda_wheels=true" requires = [ "cmake>=4.0", - "cuda-bindings>=13.0.1,<14.0", + "cuda-bindings>=13.0.2,<14.0", "cython>=3.2.2,!=3.2.7", "libcuml==26.12.*,>=0.0.0a0", "libnvforest==26.12.*,>=0.0.0a0",