diff --git a/conda/environments/raft_dev_cuda11.0.yml b/conda/environments/raft_dev_cuda11.0.yml index 004cb3c626..1e55b2ba7f 100644 --- a/conda/environments/raft_dev_cuda11.0.yml +++ b/conda/environments/raft_dev_cuda11.0.yml @@ -9,7 +9,7 @@ dependencies: - clang=11.1.0 - clang-tools=11.1.0 - cython>=0.29,<0.30 -- cmake>=3.20.1,!=3.23.0 +- cmake>=3.23.1 - scikit-build>=0.13.1 - rapids-build-env=22.10.* - rapids-notebook-env=22.10.* diff --git a/conda/environments/raft_dev_cuda11.2.yml b/conda/environments/raft_dev_cuda11.2.yml index b43df6e2be..7eed99fb4d 100644 --- a/conda/environments/raft_dev_cuda11.2.yml +++ b/conda/environments/raft_dev_cuda11.2.yml @@ -9,7 +9,7 @@ dependencies: - clang=11.1.0 - clang-tools=11.1.0 - cython>=0.29,<0.30 -- cmake>=3.20.1,!=3.23.0 +- cmake>=3.23.1 - scikit-build>=0.13.1 - rapids-build-env=22.10.* - rapids-notebook-env=22.10.* diff --git a/conda/environments/raft_dev_cuda11.4.yml b/conda/environments/raft_dev_cuda11.4.yml index fe76711b85..8756059055 100644 --- a/conda/environments/raft_dev_cuda11.4.yml +++ b/conda/environments/raft_dev_cuda11.4.yml @@ -9,7 +9,7 @@ dependencies: - clang=11.1.0 - clang-tools=11.1.0 - cython>=0.29,<0.30 -- cmake>=3.20.1,!=3.23.0 +- cmake>=3.23.1 - scikit-build>=0.13.1 - rapids-build-env=22.10.* - rapids-notebook-env=22.10.* diff --git a/conda/environments/raft_dev_cuda11.5.yml b/conda/environments/raft_dev_cuda11.5.yml index f943de22cd..a28e97b6e7 100644 --- a/conda/environments/raft_dev_cuda11.5.yml +++ b/conda/environments/raft_dev_cuda11.5.yml @@ -10,7 +10,7 @@ dependencies: - clang=11.1.0 - clang-tools=11.1.0 - cython>=0.29,<0.30 -- cmake>=3.20.1,!=3.23.0 +- cmake>=3.23.1 - scikit-build>=0.13.1 - rapids-build-env=22.10.* - rapids-notebook-env=22.10.* diff --git a/conda/recipes/libraft/conda_build_config.yaml b/conda/recipes/libraft/conda_build_config.yaml index bed95d14b3..c4d0c2a087 100644 --- a/conda/recipes/libraft/conda_build_config.yaml +++ b/conda/recipes/libraft/conda_build_config.yaml @@ -11,7 +11,7 @@ sysroot_version: - "2.17" cmake_version: - - ">=3.20.1,!=3.23.0" + - ">=3.23.1" nccl_version: - ">=2.9.9" diff --git a/conda/recipes/pylibraft/conda_build_config.yaml b/conda/recipes/pylibraft/conda_build_config.yaml index 5c2fa69f8e..725c38cb6a 100644 --- a/conda/recipes/pylibraft/conda_build_config.yaml +++ b/conda/recipes/pylibraft/conda_build_config.yaml @@ -11,4 +11,4 @@ sysroot_version: - "2.17" cmake_version: - - ">=3.20.1,!=3.23.0" + - ">=3.23.1" diff --git a/conda/recipes/raft-dask/conda_build_config.yaml b/conda/recipes/raft-dask/conda_build_config.yaml index 1ff86d58da..a6ca533504 100644 --- a/conda/recipes/raft-dask/conda_build_config.yaml +++ b/conda/recipes/raft-dask/conda_build_config.yaml @@ -14,4 +14,4 @@ ucx_version: - "1.13.0" cmake_version: - - ">=3.20.1,!=3.23.0" + - ">=3.23.1" diff --git a/cpp/CMakeLists.txt b/cpp/CMakeLists.txt index 7b7cf0b193..df41b47766 100644 --- a/cpp/CMakeLists.txt +++ b/cpp/CMakeLists.txt @@ -16,7 +16,7 @@ set(RAPIDS_VERSION "22.10") set(RAFT_VERSION "22.10.00") -cmake_minimum_required(VERSION 3.20.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.23.1 FATAL_ERROR) include(../fetch_rapids.cmake) include(rapids-cmake) include(rapids-cpm) diff --git a/python/pylibraft/CMakeLists.txt b/python/pylibraft/CMakeLists.txt index 6287efc768..499ee7de99 100644 --- a/python/pylibraft/CMakeLists.txt +++ b/python/pylibraft/CMakeLists.txt @@ -12,7 +12,7 @@ # the License. # ============================================================================= -cmake_minimum_required(VERSION 3.20.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.23.1 FATAL_ERROR) set(pylibraft_version 22.10.00) diff --git a/python/pylibraft/pyproject.toml b/python/pylibraft/pyproject.toml index cb166a4d75..03b3c7fa96 100644 --- a/python/pylibraft/pyproject.toml +++ b/python/pylibraft/pyproject.toml @@ -19,6 +19,6 @@ requires = [ "setuptools", "cython>=0.29,<0.30", "scikit-build>=0.13.1", - "cmake>=3.20.1,!=3.23.0", + "cmake>=3.23.1", "ninja" ] diff --git a/python/raft-dask/CMakeLists.txt b/python/raft-dask/CMakeLists.txt index 73d49c462b..a2e495605d 100644 --- a/python/raft-dask/CMakeLists.txt +++ b/python/raft-dask/CMakeLists.txt @@ -12,7 +12,7 @@ # the License. # ============================================================================= -cmake_minimum_required(VERSION 3.20.1 FATAL_ERROR) +cmake_minimum_required(VERSION 3.23.1 FATAL_ERROR) set(raft_dask_version 22.10.00) diff --git a/python/raft-dask/pyproject.toml b/python/raft-dask/pyproject.toml index 3979c0d7c5..dcdc3bbf71 100644 --- a/python/raft-dask/pyproject.toml +++ b/python/raft-dask/pyproject.toml @@ -19,7 +19,7 @@ requires = [ "setuptools", "cython>=0.29,<0.30", "scikit-build>=0.13.1", - "cmake>=3.20.1,!=3.23.0", + "cmake>=3.23.1", "ninja", "pylibraft" ]