Skip to content

Commit

Permalink
Document that minimum required CMake version is now 3.23.1 (#841)
Browse files Browse the repository at this point in the history
With rapids-cmake now requiring CMake 3.23.1 update consumers to correctly express this requirement

Authors:
  - Robert Maynard (https://github.com/robertmaynard)

Approvers:
  - Corey J. Nolet (https://github.com/cjnolet)
  - Ray Douglass (https://github.com/raydouglass)

URL: #841
  • Loading branch information
robertmaynard authored Sep 23, 2022
1 parent c9d683c commit a3b6593
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion conda/environments/raft_dev_cuda11.0.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.*
Expand Down
2 changes: 1 addition & 1 deletion conda/environments/raft_dev_cuda11.2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.*
Expand Down
2 changes: 1 addition & 1 deletion conda/environments/raft_dev_cuda11.4.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.*
Expand Down
2 changes: 1 addition & 1 deletion conda/environments/raft_dev_cuda11.5.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.*
Expand Down
2 changes: 1 addition & 1 deletion conda/recipes/libraft/conda_build_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ sysroot_version:
- "2.17"

cmake_version:
- ">=3.20.1,!=3.23.0"
- ">=3.23.1"

nccl_version:
- ">=2.9.9"
Expand Down
2 changes: 1 addition & 1 deletion conda/recipes/pylibraft/conda_build_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ sysroot_version:
- "2.17"

cmake_version:
- ">=3.20.1,!=3.23.0"
- ">=3.23.1"
2 changes: 1 addition & 1 deletion conda/recipes/raft-dask/conda_build_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ ucx_version:
- "1.13.0"

cmake_version:
- ">=3.20.1,!=3.23.0"
- ">=3.23.1"
2 changes: 1 addition & 1 deletion cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion python/pylibraft/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion python/pylibraft/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
]
2 changes: 1 addition & 1 deletion python/raft-dask/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion python/raft-dask/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
]

0 comments on commit a3b6593

Please sign in to comment.