Skip to content

Commit

Permalink
Don't use CMake 3.25.0 as it has a FindCUDAToolkit show stopping bug (#…
Browse files Browse the repository at this point in the history
…1029)

Don't use CMake 3.25.0 as it has a show stopping FindCUDAToolkit bug

Authors:
  - Robert Maynard (https://github.com/robertmaynard)

Approvers:
  - Corey J. Nolet (https://github.com/cjnolet)
  - AJ Schmidt (https://github.com/ajschmidt8)

URL: #1029
  • Loading branch information
robertmaynard authored Nov 18, 2022
1 parent 6d72872 commit 6bee020
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion conda/environments/raft_dev_cuda11.2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dependencies:
- clang=11.1.0
- clang-tools=11.1.0
- cython>=0.29,<0.30
- cmake>=3.23.1
- cmake>=3.23.1,!=3.25.0
- dask>=2022.9.2
- distributed>=2022.9.2
- scikit-build>=0.13.1
Expand Down
2 changes: 1 addition & 1 deletion conda/environments/raft_dev_cuda11.4.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dependencies:
- clang=11.1.0
- clang-tools=11.1.0
- cython>=0.29,<0.30
- cmake>=3.23.1
- cmake>=3.23.1,!=3.25.0
- dask>=2022.9.2
- distributed>=2022.9.2
- scikit-build>=0.13.1
Expand Down
2 changes: 1 addition & 1 deletion conda/environments/raft_dev_cuda11.5.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dependencies:
- clang=11.1.0
- clang-tools=11.1.0
- cython>=0.29,<0.30
- cmake>=3.23.1
- cmake>=3.23.1,!=3.25.0
- dask>=2022.9.2
- distributed>=2022.9.2
- scikit-build>=0.13.1
Expand Down
2 changes: 1 addition & 1 deletion conda/recipes/libraft/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"

nccl_version:
- ">=2.9.9"
Expand Down
2 changes: 1 addition & 1 deletion conda/recipes/pylibraft/conda_build_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ sysroot_version:
- "2.17"

cmake_version:
- ">=3.23.1"
- ">=3.23.1,!=3.25.0"
2 changes: 1 addition & 1 deletion conda/recipes/raft-dask/conda_build_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ ucx_version:
- "1.13.0"

cmake_version:
- ">=3.23.1"
- ">=3.23.1,!=3.25.0"
2 changes: 1 addition & 1 deletion python/pylibraft/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,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"
]
2 changes: 1 addition & 1 deletion python/raft-dask/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ requires = [
"setuptools",
"cython>=0.29,<0.30",
"scikit-build>=0.13.1",
"cmake>=3.23.1",
"cmake>=3.23.1,!=3.25.0",
"ninja",
"pylibraft"
]

0 comments on commit 6bee020

Please sign in to comment.