Skip to content

Commit b8b67f8

Browse files
authored
skip CMake 3.30.0 (rapidsai#1603)
Contributes to rapidsai/build-planning#80 Adds constraints to avoid pulling in CMake 3.30.0, for the reasons described in that issue. Authors: - James Lamb (https://github.com/jameslamb) Approvers: - Bradley Dice (https://github.com/bdice) URL: rapidsai#1603
1 parent 53830f7 commit b8b67f8

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
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
@@ -9,7 +9,7 @@ dependencies:
99
- c-compiler
1010
- clang-tools==16.0.6
1111
- clang==16.0.6
12-
- cmake>=3.26.4
12+
- cmake>=3.26.4,!=3.30.0
1313
- cuda-python>=11.7.1,<12.0a0
1414
- cuda-version=11.8
1515
- cudatoolkit

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ dependencies:
99
- c-compiler
1010
- clang-tools==16.0.6
1111
- clang==16.0.6
12-
- cmake>=3.26.4
12+
- cmake>=3.26.4,!=3.30.0
1313
- cuda-nvcc
1414
- cuda-python>=12.0,<13.0a0
1515
- cuda-version=12.2

conda/recipes/librmm/conda_build_config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ cuda11_compiler:
1111
- nvcc
1212

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

1616
fmt_version:
1717
- ">=10.1.1,<11"

conda/recipes/rmm/conda_build_config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ c_stdlib_version:
1616
- "2.17"
1717

1818
cmake_version:
19-
- ">=3.26.4"
19+
- ">=3.26.4,!=3.30.0"

dependencies.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ dependencies:
105105
common:
106106
- output_types: [conda, requirements, pyproject]
107107
packages:
108-
- &cmake_ver cmake>=3.26.4
108+
- &cmake_ver cmake>=3.26.4,!=3.30.0
109109
- ninja
110110
- output_types: conda
111111
packages:

python/librmm/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ librmm = "librmm"
4747
build-backend = "scikit_build_core.build"
4848
dependencies-file = "../../dependencies.yaml"
4949
requires = [
50-
"cmake>=3.26.4",
50+
"cmake>=3.26.4,!=3.30.0",
5151
"ninja",
5252
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit ../../dependencies.yaml and run `rapids-dependency-file-generator`.
5353

python/rmm/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ regex = "(?P<value>.*)"
125125
build-backend = "scikit_build_core.build"
126126
dependencies-file = "../../dependencies.yaml"
127127
requires = [
128-
"cmake>=3.26.4",
128+
"cmake>=3.26.4,!=3.30.0",
129129
"cuda-python>=11.7.1,<12.0a0",
130130
"cython>=3.0.0",
131131
"librmm==24.8.*,>=0.0.0a0",

0 commit comments

Comments
 (0)