Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Merged
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@ -7,7 +7,7 @@ dependencies:
- black=22.3.0
- clang-tools=11.1.0
- clang=11.1.0
- cmake>=3.23.1
- cmake>=3.23.1,!=3.25.0
- cmakelang=0.6.13
- cuda-python>=11.7.1,<12.0
- cudatoolkit=11.5
Expand Down
2 changes: 1 addition & 1 deletion conda/environments/all_cuda-116_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ dependencies:
- black=22.3.0
- clang-tools=11.1.0
- clang=11.1.0
- cmake>=3.23.1
- cmake>=3.23.1,!=3.25.0
- cmakelang=0.6.13
- cuda-python>=11.7.1,<12.0
- cudatoolkit=11.6
Expand Down
2 changes: 1 addition & 1 deletion conda/recipes/rmm/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ build:

requirements:
build:
- cmake>=3.23.1
- cmake>=3.23.1,!=3.25.0
- ninja
- {{ compiler('c') }}
- {{ compiler('cxx') }}
Expand Down
2 changes: 1 addition & 1 deletion dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,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
- ninja
Expand Down
2 changes: 1 addition & 1 deletion python/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",
"cuda-python>=11.7.1,<12.0"
]
Expand Down