Skip to content

Commit

Permalink
skip CMake 3.30.0 (#5956)
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: #5956
  • Loading branch information
jameslamb authored Jul 5, 2024
1 parent 2830e87 commit d82895f
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 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 @@ -8,7 +8,7 @@ channels:
- nvidia
dependencies:
- c-compiler
- 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 @@ -8,7 +8,7 @@ channels:
- nvidia
dependencies:
- c-compiler
- cmake>=3.26.4
- cmake>=3.26.4,!=3.30.0
- cuda-cudart-dev
- cuda-nvcc
- cuda-profiler-api
Expand Down
2 changes: 1 addition & 1 deletion conda/environments/clang_tidy_cuda-118_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ dependencies:
- c-compiler
- clang-tools==15.0.7
- clang==15.0.7
- cmake>=3.26.4
- cmake>=3.26.4,!=3.30.0
- cuda-version=11.8
- cudatoolkit
- cxx-compiler
Expand Down
2 changes: 1 addition & 1 deletion conda/environments/cpp_all_cuda-118_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ channels:
- nvidia
dependencies:
- c-compiler
- cmake>=3.26.4
- cmake>=3.26.4,!=3.30.0
- cuda-version=11.8
- cudatoolkit
- cxx-compiler
Expand Down
2 changes: 1 addition & 1 deletion conda/environments/cpp_all_cuda-122_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ channels:
- nvidia
dependencies:
- c-compiler
- cmake>=3.26.4
- cmake>=3.26.4,!=3.30.0
- cuda-cudart-dev
- cuda-nvcc
- cuda-profiler-api
Expand Down
2 changes: 1 addition & 1 deletion conda/recipes/cuml-cpu/conda_build_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ cxx_compiler_version:
- 11

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

c_stdlib:
- sysroot
Expand Down
2 changes: 1 addition & 1 deletion conda/recipes/cuml/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"

c_stdlib:
- sysroot
Expand Down
2 changes: 1 addition & 1 deletion conda/recipes/libcuml/conda_build_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ c_stdlib_version:
- "=2.17"

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

treelite_version:
- "=4.2.1"
Expand Down
2 changes: 1 addition & 1 deletion dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,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/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ versioneer\.py |
[tool.rapids-build-backend]
build-backend = "scikit_build_core.build"
requires = [
"cmake>=3.26.4",
"cmake>=3.26.4,!=3.30.0",
"cuda-python",
"cython>=3.0.0",
"ninja",
Expand Down

0 comments on commit d82895f

Please sign in to comment.