Skip to content

Commit abc17be

Browse files
authored
Update Treelite to 4.7.0 (#7870)
Update Treelite to 4.7.0 to incorporate the following improvements: * dmlc/treelite#655 * dmlc/treelite#651 Authors: - Philip Hyunsu Cho (https://github.com/hcho3) - Jim Crist-Harif (https://github.com/jcrist) Approvers: - Jim Crist-Harif (https://github.com/jcrist) - James Lamb (https://github.com/jameslamb) - Bradley Dice (https://github.com/bdice) URL: #7870
1 parent 810180a commit abc17be

File tree

9 files changed

+12
-12
lines changed

9 files changed

+12
-12
lines changed

conda/environments/all_cuda-129_arch-aarch64.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,6 @@ dependencies:
8080
- sphinx-markdown-tables
8181
- statsmodels
8282
- sysroot_linux-aarch64==2.28
83-
- treelite>=4.6.1,<5.0.0
83+
- treelite>=4.7.0,<5.0.0
8484
- umap-learn>=0.5.7,<0.5.12
8585
name: all_cuda-129_arch-aarch64

conda/environments/all_cuda-129_arch-x86_64.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,6 @@ dependencies:
8080
- sphinx-markdown-tables
8181
- statsmodels
8282
- sysroot_linux-64==2.28
83-
- treelite>=4.6.1,<5.0.0
83+
- treelite>=4.7.0,<5.0.0
8484
- umap-learn>=0.5.7,<0.5.12
8585
name: all_cuda-129_arch-x86_64

conda/environments/all_cuda-131_arch-aarch64.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,6 @@ dependencies:
8080
- sphinx-markdown-tables
8181
- statsmodels
8282
- sysroot_linux-aarch64==2.28
83-
- treelite>=4.6.1,<5.0.0
83+
- treelite>=4.7.0,<5.0.0
8484
- umap-learn>=0.5.7,<0.5.12
8585
name: all_cuda-131_arch-aarch64

conda/environments/all_cuda-131_arch-x86_64.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,6 @@ dependencies:
8080
- sphinx-markdown-tables
8181
- statsmodels
8282
- sysroot_linux-64==2.28
83-
- treelite>=4.6.1,<5.0.0
83+
- treelite>=4.7.0,<5.0.0
8484
- umap-learn>=0.5.7,<0.5.12
8585
name: all_cuda-131_arch-x86_64

conda/recipes/cuml/conda_build_config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ c_stdlib_version:
1717
- "=2.28"
1818

1919
treelite_version:
20-
- ">=4.6.1,<5.0.0"
20+
- ">=4.7.0,<5.0.0"

conda/recipes/libcuml/conda_build_config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ cmake_version:
1717
- ">=3.30.4"
1818

1919
treelite_version:
20-
- ">=4.6.1,<5.0.0"
20+
- ">=4.7.0,<5.0.0"

cpp/cmake/thirdparty/get_treelite.cmake

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#=============================================================================
22
# cmake-format: off
3-
# SPDX-FileCopyrightText: Copyright (c) 2021-2025, NVIDIA CORPORATION.
3+
# SPDX-FileCopyrightText: Copyright (c) 2021-2026, NVIDIA CORPORATION.
44
# SPDX-License-Identifier: Apache-2.0
55
# cmake-format: on
66
#=============================================================================
@@ -70,7 +70,7 @@ function(find_and_configure_treelite)
7070
rapids_export_find_package_root(BUILD Treelite [=[${CMAKE_CURRENT_LIST_DIR}]=] EXPORT_SET cuml-exports)
7171
endfunction()
7272

73-
find_and_configure_treelite(VERSION 4.6.1
74-
PINNED_TAG e14222bfdf02cba3ece0f3692f3574711cab0fc2
73+
find_and_configure_treelite(VERSION 4.7.0
74+
PINNED_TAG 74b25ecedb964ccac37d034860cc5c1224e73e91
7575
EXCLUDE_FROM_ALL ${CUML_EXCLUDE_TREELITE_FROM_ALL}
7676
BUILD_STATIC_LIBS ${CUML_USE_TREELITE_STATIC})

dependencies.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ dependencies:
316316
- output_types: [conda, requirements, pyproject]
317317
packages:
318318
- &cython cython>=3.2.2
319-
- &treelite treelite>=4.6.1,<5.0.0
319+
- &treelite treelite>=4.7.0,<5.0.0
320320
py_run_cuml:
321321
common:
322322
- output_types: [conda, requirements, pyproject]

python/cuml/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ dependencies = [
9595
"rmm==26.4.*,>=0.0.0a0",
9696
"scikit-learn>=1.5",
9797
"scipy>=1.13.0",
98-
"treelite>=4.6.1,<5.0.0",
98+
"treelite>=4.7.0,<5.0.0",
9999
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit ../../dependencies.yaml and run `rapids-dependency-file-generator`.
100100
classifiers = [
101101
"Intended Audience :: Developers",
@@ -189,7 +189,7 @@ requires = [
189189
"ninja",
190190
"pylibraft==26.4.*,>=0.0.0a0",
191191
"rmm==26.4.*,>=0.0.0a0",
192-
"treelite>=4.6.1,<5.0.0",
192+
"treelite>=4.7.0,<5.0.0",
193193
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit ../../dependencies.yaml and run `rapids-dependency-file-generator`.
194194

195195
[tool.scikit-build]

0 commit comments

Comments
 (0)