Skip to content

Commit

Permalink
Pin cmake in conda recipe to <3.23 (#600)
Browse files Browse the repository at this point in the history
CMake 3.23 has a bug that breaks our conda-build based builds in CI, this avoids that issue.

Authors:
  - Dante Gama Dessavre (https://github.com/dantegd)

Approvers:
  - AJ Schmidt (https://github.com/ajschmidt8)

URL: #600
  • Loading branch information
dantegd authored Mar 30, 2022
1 parent bde2584 commit bdefaaa
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion conda/recipes/libraft_distance/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ build:

requirements:
build:
- cmake>=3.20.1
- cmake>=3.20.1,<3.23
host:
- libraft-headers {{ version }}
- nccl>=2.9.9
Expand Down
2 changes: 1 addition & 1 deletion conda/recipes/libraft_headers/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ build:

requirements:
build:
- cmake>=3.20.1
- cmake>=3.20.1,<3.23
host:
- nccl>=2.9.9
- cudatoolkit {{ cuda_version }}.*
Expand Down
2 changes: 1 addition & 1 deletion conda/recipes/libraft_nn/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ build:

requirements:
build:
- cmake>=3.20.1
- cmake>=3.20.1,<3.23
host:
- libraft-headers {{ version }}
- cudatoolkit {{ cuda_version }}.*
Expand Down

0 comments on commit bdefaaa

Please sign in to comment.