Skip to content

Commit

Permalink
skip CMake 3.30.0 (#189)
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: #189
  • Loading branch information
jameslamb authored Jul 5, 2024
1 parent f413879 commit ef798c3
Show file tree
Hide file tree
Showing 6 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 @@ -11,7 +11,7 @@ dependencies:
- c-compiler
- clang-tools==16.0.6
- clangxx==16.0.6
- cmake>=3.26.4
- cmake>=3.26.4,!=3.30.0
- cuda-nvtx=11.8
- 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 @@ -11,7 +11,7 @@ dependencies:
- c-compiler
- clang-tools==16.0.6
- clangxx==16.0.6
- cmake>=3.26.4
- cmake>=3.26.4,!=3.30.0
- cuda-cudart-dev
- cuda-nvcc
- cuda-nvtx
Expand Down
2 changes: 1 addition & 1 deletion conda/recipes/libwholegraph/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"

doxygen_version:
- ">=1.8.11"
Expand Down
2 changes: 1 addition & 1 deletion conda/recipes/pylibwholegraph/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"

scikit_build_core_version:
- ">=0.7.0"
Expand Down
4 changes: 2 additions & 2 deletions dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ dependencies:
- output_types: conda
packages:
- c-compiler
- cmake>=3.26.4
- cmake>=3.26.4,!=3.30.0
- cudnn=8.8
- cxx-compiler
- cython>=3.0.0
Expand Down Expand Up @@ -339,6 +339,6 @@ dependencies:
common:
- output_types: [pyproject]
packages:
- cmake>=3.26.4
- cmake>=3.26.4,!=3.30.0
- cython>=3.0.0
- ninja
2 changes: 1 addition & 1 deletion python/pylibwholegraph/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ classifiers = [
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.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

0 comments on commit ef798c3

Please sign in to comment.