Skip to content

Commit

Permalink
Don't use CMake 3.25.0 as it has a show stopping FindCUDAToolkit bug
Browse files Browse the repository at this point in the history
  • Loading branch information
robertmaynard committed Nov 17, 2022
1 parent aa13b95 commit 322ebb9
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-115_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dependencies:
- botocore>=1.24.21
- c-compiler
- cachetools
- cmake>=3.23.1
- cmake>=3.23.1,!=3.25.0
- cubinlinker
- cuda-python>=11.7.1,<12.0
- cudatoolkit=11.5
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 @@ -8,7 +8,7 @@ sysroot_version:
- "2.17"

cmake_version:
- ">=3.23.1"
- ">=3.23.1,!=3.25.0"

cuda_compiler:
- nvcc
2 changes: 1 addition & 1 deletion conda/recipes/cudf_kafka/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ build:

requirements:
build:
- cmake >=3.23.1
- cmake >=3.23.1,!=3.25.0
- {{ compiler('c') }}
- {{ compiler('cxx') }}
- sysroot_{{ target_platform }} {{ sysroot_version }}
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 @@ -11,7 +11,7 @@ sysroot_version:
- "2.17"

cmake_version:
- ">=3.23.1"
- ">=3.23.1,!=3.25.0"

gtest_version:
- "=1.10.0"
Expand Down
2 changes: 1 addition & 1 deletion conda/recipes/strings_udf/conda_build_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ sysroot_version:
- "2.17"

cmake_version:
- ">=3.23.1"
- ">=3.23.1,!=3.25.0"

cuda_compiler:
- nvcc
2 changes: 1 addition & 1 deletion dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ dependencies:
common:
- output_types: [conda, requirements]
packages:
- cmake>=3.23.1
- cmake>=3.23.1,!=3.25.0
- cuda-python>=11.7.1,<12.0
- cython>=0.29,<0.30
- dlpack>=0.5,<0.6.0a0
Expand Down
2 changes: 1 addition & 1 deletion python/cudf/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ requires = [
"setuptools",
"cython>=0.29,<0.30",
"scikit-build>=0.13.1",
"cmake>=3.23.1",
"cmake>=3.23.1,!=3.25.0",
"ninja",
]

0 comments on commit 322ebb9

Please sign in to comment.