From cd3a79bfa71be68c8e95ff8dd60a41eb641f8d5a Mon Sep 17 00:00:00 2001 From: Jason Lowe Date: Wed, 11 Dec 2024 11:12:32 -0600 Subject: [PATCH] Specify a version for rapids_logger dependency (#17573) ## Description #17307 broke builds that use the rapids-cmake pinned dependencies feature since no version was specified for the rapids_logger dependency. This adds a version string equal to the git tag so the dependency has a stated version. ## Checklist - [X] I am familiar with the [Contributing Guidelines](https://github.com/rapidsai/cudf/blob/HEAD/CONTRIBUTING.md). - [ ] New or existing tests cover these changes. - [X] The documentation is up to date with these changes. --------- Co-authored-by: Nghia Truong <7416935+ttnghia@users.noreply.github.com> Co-authored-by: Vyas Ramasubramani Co-authored-by: Bradley Dice --- cpp/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp/CMakeLists.txt b/cpp/CMakeLists.txt index 3d77307ccde..2f17b57b0a4 100644 --- a/cpp/CMakeLists.txt +++ b/cpp/CMakeLists.txt @@ -277,7 +277,7 @@ rapids_cpm_init() # Not using rapids-cmake since we never want to find, always download. CPMAddPackage( NAME rapids_logger GITHUB_REPOSITORY rapidsai/rapids-logger GIT_SHALLOW TRUE GIT_TAG - 14bb233d2420f7187a690f0bb528ec0420c70d48 + c510947ae9d3a67530cfe3e5eaccb5a3b8ea0e55 VERSION c510947ae9d3a67530cfe3e5eaccb5a3b8ea0e55 ) rapids_make_logger(cudf EXPORT_SET cudf-exports)