Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 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 @@ -84,7 +84,7 @@ dependencies:
- sphinx-markdown-tables
- statsmodels
- sysroot_linux-aarch64==2.28
- treelite>=4.7.0,<5.0.0
- treelite>=4.7.2,<5.0.0
- umap-learn>=0.5.7,<0.5.13
- xgboost>=3.3.0
- pip:
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 @@ -83,7 +83,7 @@ dependencies:
- sphinx-markdown-tables
- statsmodels
- sysroot_linux-64==2.28
- treelite>=4.7.0,<5.0.0
- treelite>=4.7.2,<5.0.0
- umap-learn>=0.5.7,<0.5.13
- xgboost>=3.3.0
- pip:
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 @@ -84,7 +84,7 @@ dependencies:
- sphinx-markdown-tables
- statsmodels
- sysroot_linux-aarch64==2.28
- treelite>=4.7.0,<5.0.0
- treelite>=4.7.2,<5.0.0
- umap-learn>=0.5.7,<0.5.13
- xgboost>=3.3.0
- pip:
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 @@ -83,7 +83,7 @@ dependencies:
- sphinx-markdown-tables
- statsmodels
- sysroot_linux-64==2.28
- treelite>=4.7.0,<5.0.0
- treelite>=4.7.2,<5.0.0
Comment thread
chyunsu3 marked this conversation as resolved.
- umap-learn>=0.5.7,<0.5.13
- xgboost>=3.3.0
- pip:
Expand Down
2 changes: 1 addition & 1 deletion conda/recipes/cuml/conda_build_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ c_stdlib_version:
- "=2.28"

treelite_version:
- ">=4.7.0,<5.0.0"
- ">=4.7.1,<5.0.0"
2 changes: 1 addition & 1 deletion conda/recipes/libcuml/conda_build_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ cmake_version:
- ">=4.0"

treelite_version:
- ">=4.7.0,<5.0.0"
- ">=4.7.1,<5.0.0"
6 changes: 3 additions & 3 deletions cpp/cmake/thirdparty/get_treelite.cmake
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#=============================================================================
# cmake-format: off
# SPDX-FileCopyrightText: Copyright (c) 2021-2026, NVIDIA CORPORATION.
# SPDX-FileCopyrightText: Copyright (c) 2021-2026, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
# cmake-format: on
#=============================================================================
Expand Down Expand Up @@ -70,7 +70,7 @@ function(find_and_configure_treelite)
rapids_export_find_package_root(BUILD Treelite [=[${CMAKE_CURRENT_LIST_DIR}]=] EXPORT_SET cuml-exports)
endfunction()

find_and_configure_treelite(VERSION 4.7.0
PINNED_TAG 74b25ecedb964ccac37d034860cc5c1224e73e91
find_and_configure_treelite(VERSION 4.7.2
PINNED_TAG e8a2a7770354318f1e702ba8c059c3b6096d78cf
EXCLUDE_FROM_ALL ${CUML_EXCLUDE_TREELITE_FROM_ALL}
BUILD_STATIC_LIBS ${CUML_USE_TREELITE_STATIC})
2 changes: 1 addition & 1 deletion dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ dependencies:
packages:
# skipping Cython 3.2.7 because of https://github.com/cython/cython/issues/7781
- &cython cython>=3.2.2,!=3.2.7
- &treelite treelite>=4.7.0,<5.0.0
- &treelite treelite>=4.7.2,<5.0.0
Comment thread
chyunsu3 marked this conversation as resolved.
py_run_cuml:
common:
- output_types: [conda, requirements, pyproject]
Expand Down
4 changes: 2 additions & 2 deletions python/cuml/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ dependencies = [
"rmm==26.10.*,>=0.0.0a0",
"scikit-learn>=1.6",
"scipy>=1.14.0",
"treelite>=4.7.0,<5.0.0",
"treelite>=4.7.2,<5.0.0",
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit ../../dependencies.yaml and run `rapids-dependency-file-generator`.
classifiers = [
"Intended Audience :: Developers",
Expand Down Expand Up @@ -202,7 +202,7 @@ requires = [
"nvforest==26.10.*,>=0.0.0a0",
"pylibraft==26.10.*,>=0.0.0a0",
"rmm==26.10.*,>=0.0.0a0",
"treelite>=4.7.0,<5.0.0",
"treelite>=4.7.2,<5.0.0",
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit ../../dependencies.yaml and run `rapids-dependency-file-generator`.

[tool.scikit-build]
Expand Down
Loading