From a1c2eecb9f333bd88616b9e8ef1917230d1b17b8 Mon Sep 17 00:00:00 2001 From: Bradley Dice Date: Tue, 9 May 2023 18:03:50 -0500 Subject: [PATCH] Fix gtest pinning to 1.13.0. (#13319) Fixes gtest pinning. The `.*` is not needed here. This aligns with similar changes I'm making in other RAPIDS repos to bump their gtest pinnings. Authors: - Bradley Dice (https://github.com/bdice) Approvers: - Ray Douglass (https://github.com/raydouglass) URL: https://github.com/rapidsai/cudf/pull/13319 --- conda/environments/all_cuda-118_arch-x86_64.yaml | 4 ++-- conda/recipes/libcudf/meta.yaml | 2 ++ dependencies.yaml | 4 ++-- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/conda/environments/all_cuda-118_arch-x86_64.yaml b/conda/environments/all_cuda-118_arch-x86_64.yaml index 5b8a0ea53ba..4031f1aa1c3 100644 --- a/conda/environments/all_cuda-118_arch-x86_64.yaml +++ b/conda/environments/all_cuda-118_arch-x86_64.yaml @@ -31,8 +31,8 @@ dependencies: - fmt>=9.1.0,<10 - fsspec>=0.6.0 - gcc_linux-64=11.* -- gmock>=1.13.0.* -- gtest>=1.13.0.* +- gmock>=1.13.0 +- gtest>=1.13.0 - hypothesis - ipython - libarrow==11.0.0.* diff --git a/conda/recipes/libcudf/meta.yaml b/conda/recipes/libcudf/meta.yaml index a236b62c5fd..275b8f9332f 100644 --- a/conda/recipes/libcudf/meta.yaml +++ b/conda/recipes/libcudf/meta.yaml @@ -396,6 +396,8 @@ outputs: - {{ pin_subpackage('libcudf', exact=True) }} - {{ pin_subpackage('libcudf_kafka', exact=True) }} - cudatoolkit {{ cuda_spec }} + - gtest {{ gtest_version }} + - gmock {{ gtest_version }} - libcurand {{ libcurand_run_version }} about: home: https://rapids.ai/ diff --git a/dependencies.yaml b/dependencies.yaml index 00ec63d31ef..70d7f8c1ec8 100644 --- a/dependencies.yaml +++ b/dependencies.yaml @@ -213,8 +213,8 @@ dependencies: - output_types: conda packages: - fmt>=9.1.0,<10 - - >est gtest>=1.13.0.* - - &gmock gmock>=1.13.0.* + - >est gtest>=1.13.0 + - &gmock gmock>=1.13.0 # Hard pin the patch version used during the build. This must be kept # in sync with the version pinned in get_arrow.cmake. - libarrow==11.0.0.*