Skip to content

Commit

Permalink
skip CMake 3.30.0 (#1603)
Browse files Browse the repository at this point in the history
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: #1603
  • Loading branch information
jameslamb authored Jul 5, 2024
1 parent 53830f7 commit b8b67f8
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion conda/environments/all_cuda-118_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ dependencies:
- c-compiler
- clang-tools==16.0.6
- clang==16.0.6
- cmake>=3.26.4
- cmake>=3.26.4,!=3.30.0
- cuda-python>=11.7.1,<12.0a0
- cuda-version=11.8
- cudatoolkit
Expand Down
2 changes: 1 addition & 1 deletion conda/environments/all_cuda-122_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ dependencies:
- c-compiler
- clang-tools==16.0.6
- clang==16.0.6
- cmake>=3.26.4
- cmake>=3.26.4,!=3.30.0
- cuda-nvcc
- cuda-python>=12.0,<13.0a0
- cuda-version=12.2
Expand Down
2 changes: 1 addition & 1 deletion conda/recipes/librmm/conda_build_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ cuda11_compiler:
- nvcc

cmake_version:
- ">=3.26.4"
- ">=3.26.4,!=3.30.0"

fmt_version:
- ">=10.1.1,<11"
Expand Down
2 changes: 1 addition & 1 deletion conda/recipes/rmm/conda_build_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ c_stdlib_version:
- "2.17"

cmake_version:
- ">=3.26.4"
- ">=3.26.4,!=3.30.0"
2 changes: 1 addition & 1 deletion dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ dependencies:
common:
- output_types: [conda, requirements, pyproject]
packages:
- &cmake_ver cmake>=3.26.4
- &cmake_ver cmake>=3.26.4,!=3.30.0
- ninja
- output_types: conda
packages:
Expand Down
2 changes: 1 addition & 1 deletion python/librmm/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ librmm = "librmm"
build-backend = "scikit_build_core.build"
dependencies-file = "../../dependencies.yaml"
requires = [
"cmake>=3.26.4",
"cmake>=3.26.4,!=3.30.0",
"ninja",
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit ../../dependencies.yaml and run `rapids-dependency-file-generator`.

Expand Down
2 changes: 1 addition & 1 deletion python/rmm/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ regex = "(?P<value>.*)"
build-backend = "scikit_build_core.build"
dependencies-file = "../../dependencies.yaml"
requires = [
"cmake>=3.26.4",
"cmake>=3.26.4,!=3.30.0",
"cuda-python>=11.7.1,<12.0a0",
"cython>=3.0.0",
"librmm==24.8.*,>=0.0.0a0",
Expand Down

0 comments on commit b8b67f8

Please sign in to comment.