diff --git a/conda/environments/all_cuda-115_arch-x86_64.yaml b/conda/environments/all_cuda-115_arch-x86_64.yaml index a7e5f1a04a6..ee235049dd7 100644 --- a/conda/environments/all_cuda-115_arch-x86_64.yaml +++ b/conda/environments/all_cuda-115_arch-x86_64.yaml @@ -13,7 +13,7 @@ dependencies: - botocore>=1.24.21 - c-compiler - cachetools -- cmake>=3.23.1 +- cmake>=3.23.1,!=3.25.0 - cubinlinker - cuda-python>=11.7.1,<12.0 - cudatoolkit=11.5 diff --git a/conda/recipes/cudf/conda_build_config.yaml b/conda/recipes/cudf/conda_build_config.yaml index 0027a80f1ec..4feac647e8c 100644 --- a/conda/recipes/cudf/conda_build_config.yaml +++ b/conda/recipes/cudf/conda_build_config.yaml @@ -8,7 +8,7 @@ sysroot_version: - "2.17" cmake_version: - - ">=3.23.1" + - ">=3.23.1,!=3.25.0" cuda_compiler: - nvcc diff --git a/conda/recipes/cudf_kafka/meta.yaml b/conda/recipes/cudf_kafka/meta.yaml index a65373efec3..4f7a4bbc268 100644 --- a/conda/recipes/cudf_kafka/meta.yaml +++ b/conda/recipes/cudf_kafka/meta.yaml @@ -22,7 +22,7 @@ build: requirements: build: - - cmake >=3.23.1 + - cmake >=3.23.1,!=3.25.0 - {{ compiler('c') }} - {{ compiler('cxx') }} - sysroot_{{ target_platform }} {{ sysroot_version }} diff --git a/conda/recipes/libcudf/conda_build_config.yaml b/conda/recipes/libcudf/conda_build_config.yaml index 7f5bf219f1f..5179cb55d84 100644 --- a/conda/recipes/libcudf/conda_build_config.yaml +++ b/conda/recipes/libcudf/conda_build_config.yaml @@ -11,7 +11,7 @@ sysroot_version: - "2.17" cmake_version: - - ">=3.23.1" + - ">=3.23.1,!=3.25.0" gtest_version: - "=1.10.0" diff --git a/conda/recipes/strings_udf/conda_build_config.yaml b/conda/recipes/strings_udf/conda_build_config.yaml index 0027a80f1ec..4feac647e8c 100644 --- a/conda/recipes/strings_udf/conda_build_config.yaml +++ b/conda/recipes/strings_udf/conda_build_config.yaml @@ -8,7 +8,7 @@ sysroot_version: - "2.17" cmake_version: - - ">=3.23.1" + - ">=3.23.1,!=3.25.0" cuda_compiler: - nvcc diff --git a/dependencies.yaml b/dependencies.yaml index b8470f02f86..43fef852c65 100644 --- a/dependencies.yaml +++ b/dependencies.yaml @@ -40,7 +40,7 @@ dependencies: common: - output_types: [conda, requirements] packages: - - cmake>=3.23.1 + - cmake>=3.23.1,!=3.25.0 - cuda-python>=11.7.1,<12.0 - cython>=0.29,<0.30 - dlpack>=0.5,<0.6.0a0 diff --git a/python/cudf/pyproject.toml b/python/cudf/pyproject.toml index 52490444dba..bff07bb9f0a 100644 --- a/python/cudf/pyproject.toml +++ b/python/cudf/pyproject.toml @@ -7,6 +7,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", ]