From a640fb9af7490187e19b73f008d5df6c5e093d1f Mon Sep 17 00:00:00 2001 From: Robert Maynard Date: Wed, 13 Apr 2022 11:03:13 -0400 Subject: [PATCH] rapids_cpm_thrust: Correctly find version 1.15.0 Since Thrust 1.15.0 reports it self as `1.15.0.0` we need to also search with the patch version added. Starting in Thrust 1.16, the tweak version can be dropped. --- rapids-cmake/cpm/versions.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rapids-cmake/cpm/versions.json b/rapids-cmake/cpm/versions.json index 04fa34af..e9e417c3 100644 --- a/rapids-cmake/cpm/versions.json +++ b/rapids-cmake/cpm/versions.json @@ -23,7 +23,7 @@ "git_tag" : "v${version}" }, "Thrust" : { - "version" : "1.15.0", + "version" : "1.15.0.0", "git_url" : "https://github.com/NVIDIA/thrust.git", "git_tag" : "${version}" },