Skip to content
Draft
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion conda/environments/all_cuda-129_arch-aarch64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ dependencies:
- ccache
- click
- cmake>=4.0
- cuda-bindings>=12.9.2,<13.0
- cuda-cudart-dev
- cuda-nvcc
- cuda-profiler-api
- cuda-python>=12.9.2,<13.0a0
- cuda-version=12.9
- cupy>=14.0.1,!=14.1.0
- cxx-compiler
Expand Down
2 changes: 1 addition & 1 deletion conda/environments/all_cuda-129_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ dependencies:
- ccache
- click
- cmake>=4.0
- cuda-bindings>=12.9.2,<13.0
- cuda-cudart-dev
- cuda-nvcc
- cuda-profiler-api
- cuda-python>=12.9.2,<13.0a0
- cuda-version=12.9
- cupy>=14.0.1,!=14.1.0
- cxx-compiler
Expand Down
2 changes: 1 addition & 1 deletion conda/environments/all_cuda-133_arch-aarch64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ dependencies:
- ccache
- click
- cmake>=4.0
- cuda-bindings>=13.0.1,<14.0
- cuda-cudart-dev
- cuda-nvcc
- cuda-profiler-api
- cuda-python>=13.0.1,<14.0a0
- cuda-version=13.3
- cupy>=14.0.1,!=14.1.0
- cxx-compiler
Expand Down
2 changes: 1 addition & 1 deletion conda/environments/all_cuda-133_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ dependencies:
- ccache
- click
- cmake>=4.0
- cuda-bindings>=13.0.1,<14.0
- cuda-cudart-dev
- cuda-nvcc
- cuda-profiler-api
- cuda-python>=13.0.1,<14.0a0
- cuda-version=13.3
- cupy>=14.0.1,!=14.1.0
- cxx-compiler
Expand Down
8 changes: 4 additions & 4 deletions conda/recipes/nvforest/recipe.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ requirements:
- treelite ${{ treelite_version }}
- cuda-cudart-dev
- if: cuda_major == "12"
then: cuda-python >=12.9.2,<13.0a0
else: cuda-python >=13.0.1,<14.0a0
then: cuda-bindings >=12.9.2,<13.0
else: cuda-bindings >=13.0.1,<14.0
run:
- ${{ pin_compatible("cuda-version", upper_bound="x", lower_bound="x") }}
- cupy >=14.0.1,!=14.1.0
Expand All @@ -101,8 +101,8 @@ requirements:
- treelite ${{ treelite_version }}
- cuda-cudart
- if: cuda_major == "12"
then: cuda-python >=12.9.2,<13.0a0
else: cuda-python >=13.0.1,<14.0a0
then: cuda-bindings >=12.9.2,<13.0
else: cuda-bindings >=13.0.1,<14.0
ignore_run_exports:
by_name:
- cuda-cudart
Expand Down
18 changes: 16 additions & 2 deletions dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -397,6 +397,20 @@ dependencies:
- scikit-learn==1.5.0
- matrix:
packages:
- output_types: [conda, requirements, pyproject]
matrices:
- matrix:
dependencies: "oldest"
cuda: "12.*"
packages:
- cuda-bindings==12.9.2
- matrix:
dependencies: "oldest"
cuda: "13.*"
packages:
- cuda-bindings==13.0.1
- matrix:
packages:
common:
- output_types: [conda, requirements, pyproject]
packages:
Expand Down Expand Up @@ -426,11 +440,11 @@ dependencies:
- matrix:
cuda: "12.*"
packages:
- cuda-python>=12.9.2,<13.0a0
- cuda-bindings>=12.9.2,<13.0
# fallback to CUDA 13 versions if 'cuda' is '13.*' or not provided
- matrix:
packages:
- cuda-python>=13.0.1,<14.0a0
- cuda-bindings>=13.0.1,<14.0
depends_on_nvforest:
common:
- output_types: conda
Expand Down
4 changes: 2 additions & 2 deletions python/nvforest/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ authors = [
license = "Apache-2.0"
requires-python = ">=3.11"
dependencies = [
"cuda-python>=13.0.1,<14.0a0",
"cuda-bindings>=13.0.1,<14.0",
"cupy-cuda13x[ctk]>=14.0.1,!=14.1.0",
"libnvforest==26.8.*,>=0.0.0a0",
"numpy>=2.0,<3.0a0",
Expand Down Expand Up @@ -92,7 +92,7 @@ dependencies-file = "../../dependencies.yaml"
matrix-entry = "cuda_suffixed=true;use_cuda_wheels=true"
requires = [
"cmake>=4.0",
"cuda-python>=13.0.1,<14.0a0",
"cuda-bindings>=13.0.1,<14.0",
"cython>=3.0.0",
"libnvforest==26.8.*,>=0.0.0a0",
"libraft==26.8.*,>=0.0.0a0",
Expand Down
Loading