Skip to content

Commit ab309ef

Browse files
Require CMake 3.30.4 (#147)
Update CMake minimum required to 3.30.4 across all of RAPIDS Authors: - Robert Maynard (https://github.com/robertmaynard) - Bradley Dice (https://github.com/bdice) Approvers: - https://github.com/linhu-nv - James Lamb (https://github.com/jameslamb) - Bradley Dice (https://github.com/bdice) URL: #147
1 parent 8a6ba4a commit ab309ef

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ channels:
88
- nvidia
99
dependencies:
1010
- breathe
11-
- cmake>=3.26.4,!=3.30.0
11+
- cmake>=3.30.4
1212
- cuda-nvtx
1313
- cuda-version=11.8
1414
- cudatoolkit

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ channels:
88
- nvidia
99
dependencies:
1010
- breathe
11-
- cmake>=3.26.4,!=3.30.0
11+
- cmake>=3.30.4
1212
- cuda-cudart-dev
1313
- cuda-nvcc
1414
- cuda-nvml-dev

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ channels:
88
- nvidia
99
dependencies:
1010
- breathe
11-
- cmake>=3.26.4,!=3.30.0
11+
- cmake>=3.30.4
1212
- cuda-cudart-dev
1313
- cuda-nvcc
1414
- cuda-nvml-dev

conda/recipes/cugraph-pyg/conda_build_config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ cuda_compiler:
1212
- nvcc
1313

1414
cmake_version:
15-
- ">=3.26.4,!=3.30.0"
15+
- ">=3.30.4"
1616

1717
c_stdlib:
1818
- sysroot

conda/recipes/libwholegraph/conda_build_config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ cuda_compiler:
1111
- nvcc # [os.environ.get("RAPIDS_CUDA_VERSION", "").startswith("11")]
1212

1313
cmake_version:
14-
- ">=3.26.4,!=3.30.0"
14+
- ">=3.30.4"
1515

1616
doxygen_version:
1717
- ">=1.8.11"

conda/recipes/pylibwholegraph/conda_build_config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ cuda_compiler:
1111
- nvcc # [os.environ.get("RAPIDS_CUDA_VERSION", "").startswith("11")]
1212

1313
cmake_version:
14-
- ">=3.26.4,!=3.30.0"
14+
- ">=3.30.4"
1515

1616
scikit_build_core_version:
1717
- ">=0.10.0"

cpp/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.26.4 FATAL_ERROR)
15+
cmake_minimum_required(VERSION 3.30.4 FATAL_ERROR)
1616

1717
include(../rapids_config.cmake)
1818
include(rapids-cmake)

dependencies.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ dependencies:
264264
common:
265265
- output_types: [conda, pyproject]
266266
packages:
267-
- &cmake_ver cmake>=3.26.4,!=3.30.0
267+
- &cmake_ver cmake>=3.30.4
268268
- ninja
269269
specific:
270270
- output_types: [conda]

python/pylibwholegraph/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.26.4 FATAL_ERROR)
15+
cmake_minimum_required(VERSION 3.30.4 FATAL_ERROR)
1616

1717
include(../../rapids_config.cmake)
1818
include(rapids-cmake)

python/pylibwholegraph/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ test = [
5656
build-backend = "scikit_build_core.build"
5757
dependencies-file = "../../dependencies.yaml"
5858
requires = [
59-
"cmake>=3.26.4,!=3.30.0",
59+
"cmake>=3.30.4",
6060
"cython>=3.0.0",
6161
"ninja",
6262
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit ../../dependencies.yaml and run `rapids-dependency-file-generator`.

0 commit comments

Comments
 (0)