Skip to content

Commit

Permalink
skip CMake 3.30.0 (rapidsai#16202)
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: rapidsai#16202
  • Loading branch information
jameslamb authored Jul 5, 2024
1 parent a583c97 commit f6b355d
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 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 @@ -15,7 +15,7 @@ dependencies:
- cachetools
- clang-tools=16.0.6
- clang==16.0.6
- cmake>=3.26.4
- cmake>=3.26.4,!=3.30.0
- cramjam
- cubinlinker
- cuda-nvtx=11.8
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 @@ -15,7 +15,7 @@ dependencies:
- cachetools
- clang-tools=16.0.6
- clang==16.0.6
- cmake>=3.26.4
- cmake>=3.26.4,!=3.30.0
- cramjam
- cuda-cudart-dev
- cuda-nvcc
Expand Down
2 changes: 1 addition & 1 deletion conda/recipes/cudf/conda_build_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ c_stdlib_version:
- "2.17"

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

cuda_compiler:
- cuda-nvcc
Expand Down
2 changes: 1 addition & 1 deletion conda/recipes/cudf_kafka/conda_build_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ c_stdlib_version:
- "2.17"

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

cuda_compiler:
- cuda-nvcc
Expand Down
2 changes: 1 addition & 1 deletion conda/recipes/libcudf/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"

libarrow_version:
- "==16.1.0"
Expand Down
2 changes: 1 addition & 1 deletion dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,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 ninja
build_all:
common:
Expand Down
2 changes: 1 addition & 1 deletion python/cudf/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ skip = [
build-backend = "scikit_build_core.build"
dependencies-file = "../../dependencies.yaml"
requires = [
"cmake>=3.26.4",
"cmake>=3.26.4,!=3.30.0",
"cython>=3.0.3",
"ninja",
"numpy==1.23.*",
Expand Down
2 changes: 1 addition & 1 deletion python/cudf_kafka/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,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",
"cython>=3.0.3",
"ninja",
"numpy==1.23.*",
Expand Down

0 comments on commit f6b355d

Please sign in to comment.