Skip to content

Commit 0c08dd5

Browse files
authored
Update to CMake 3.26.4 (rapidsai#1291)
Updates minimum required CMake version to 3.26.4 Authors: - Vyas Ramasubramani (https://github.com/vyasr) Approvers: - AJ Schmidt (https://github.com/ajschmidt8) - Mark Harris (https://github.com/harrism) URL: rapidsai#1291
1 parent ea50f90 commit 0c08dd5

File tree

9 files changed

+11
-8
lines changed

9 files changed

+11
-8
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# the License.
1313
# =============================================================================
1414

15-
cmake_minimum_required(VERSION 3.23.1 FATAL_ERROR)
15+
cmake_minimum_required(VERSION 3.26.4 FATAL_ERROR)
1616

1717
if(NOT EXISTS ${CMAKE_CURRENT_BINARY_DIR}/RMM_RAPIDS.cmake)
1818
file(DOWNLOAD https://raw.githubusercontent.com/rapidsai/rapids-cmake/branch-23.08/RAPIDS.cmake

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Compiler requirements:
6363

6464
* `gcc` version 9.3+
6565
* `nvcc` version 11.2+
66-
* `cmake` version 3.23.1+
66+
* `cmake` version 3.26.4+
6767

6868
CUDA/GPU requirements:
6969

conda/environments/all_cuda-118_arch-x86_64.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ channels:
44
- rapidsai
55
- conda-forge
66
dependencies:
7-
- cmake>=3.23.1,!=3.25.0
7+
- cmake>=3.26.4
88
- cuda-python>=11.7.1,<12.0
99
- cudatoolkit=11.8
1010
- cython>=0.29,<0.30

conda/recipes/librmm/conda_build_config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ cuda_compiler:
88
- nvcc
99

1010
cmake_version:
11-
- ">=3.23.1,!=3.25.0"
11+
- ">=3.26.4"
1212

1313
fmt_version:
1414
- ">=9.1.0,<10"

conda/recipes/rmm/conda_build_config.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,6 @@ cuda_compiler:
99

1010
sysroot_version:
1111
- "2.17"
12+
13+
cmake_version:
14+
- ">=3.26.4"

conda/recipes/rmm/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ build:
3636

3737
requirements:
3838
build:
39-
- cmake >=3.23.1,!=3.25.0
39+
- cmake {{ cmake_version }}
4040
- ninja
4141
- {{ compiler('c') }}
4242
- {{ compiler('cxx') }}

dependencies.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ dependencies:
6161
common:
6262
- output_types: [conda, requirements, pyproject]
6363
packages:
64-
- &cmake_ver cmake>=3.23.1,!=3.25.0
64+
- &cmake_ver cmake>=3.26.4
6565
- &cuda_python cuda-python>=11.7.1,<12.0
6666
- cython>=0.29,<0.30
6767
- ninja

python/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# the License.
1313
# =============================================================================
1414

15-
cmake_minimum_required(VERSION 3.23.1 FATAL_ERROR)
15+
cmake_minimum_required(VERSION 3.26.4 FATAL_ERROR)
1616

1717
set(rmm_version 23.08.00)
1818

python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
[build-system]
1616
build-backend = "setuptools.build_meta"
1717
requires = [
18-
"cmake>=3.23.1,!=3.25.0",
18+
"cmake>=3.26.4",
1919
"cuda-python>=11.7.1,<12.0",
2020
"cython>=0.29,<0.30",
2121
"ninja",

0 commit comments

Comments
 (0)