From 308dd089a8e21d395641bba4de849d0d0c576534 Mon Sep 17 00:00:00 2001 From: Robert Maynard Date: Fri, 18 Nov 2022 12:06:00 -0500 Subject: [PATCH] Don't use CMake 3.25.0 as it has a FindCUDAToolkit show stopping bug (#5007) Authors: - Robert Maynard (https://github.com/robertmaynard) Approvers: - Corey J. Nolet (https://github.com/cjnolet) - AJ Schmidt (https://github.com/ajschmidt8) URL: https://github.com/rapidsai/cuml/pull/5007 --- conda/recipes/cuml/conda_build_config.yaml | 2 +- conda/recipes/libcuml/conda_build_config.yaml | 2 +- python/pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/conda/recipes/cuml/conda_build_config.yaml b/conda/recipes/cuml/conda_build_config.yaml index 917f2ca0a7..a984725de3 100644 --- a/conda/recipes/cuml/conda_build_config.yaml +++ b/conda/recipes/cuml/conda_build_config.yaml @@ -8,7 +8,7 @@ cuda_compiler: - nvcc cmake_version: - - ">=3.23.1" + - ">=3.23.1,!=3.25.0" sysroot_version: - "2.17" diff --git a/conda/recipes/libcuml/conda_build_config.yaml b/conda/recipes/libcuml/conda_build_config.yaml index f71ebfccac..39b01fe64c 100644 --- a/conda/recipes/libcuml/conda_build_config.yaml +++ b/conda/recipes/libcuml/conda_build_config.yaml @@ -11,7 +11,7 @@ sysroot_version: - "2.17" cmake_version: - - ">=3.23.1" + - ">=3.23.1,!=3.25.0" nccl_version: - ">=2.9.9" diff --git a/python/pyproject.toml b/python/pyproject.toml index 394635889f..0261c0b09d 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -19,6 +19,6 @@ requires = [ "setuptools", "cython>=0.29,<0.30", "scikit-build>=0.13.1", - "cmake>=3.23.1", + "cmake>=3.23.1,!=3.25.0", "ninja", ]