Skip to content

Commit

Permalink
Pin CMake to prevent 3.23 bugs.
Browse files Browse the repository at this point in the history
  • Loading branch information
vyasr committed Mar 30, 2022
1 parent c42cee3 commit 1cccc29
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion conda/environments/cudf_dev_cuda11.5.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dependencies:
- click=8.0.4
- cupy>=9.5.0,<11.0.0a0
- rmm=22.04.*
- cmake>=3.20.1
- cmake>=3.20.1,<3.23
- cmake_setuptools>=0.1.3
- python>=3.7,<3.9
- numba>=0.54
Expand Down
2 changes: 1 addition & 1 deletion conda/recipes/libcudf/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:
- librmm {{ minor_version }}.*
- cudatoolkit {{ cuda_version }}.*
Expand Down
4 changes: 2 additions & 2 deletions conda/recipes/libcudf_example/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2021, NVIDIA CORPORATION.
# Copyright (c) 2021-2022, NVIDIA CORPORATION.

{% set version = environ.get('GIT_DESCRIBE_TAG', '0.0.0.dev').lstrip('v') + environ.get('VERSION_SUFFIX', '') %}
{% set minor_version = version.split('.')[0] + '.' + version.split('.')[1] %}
Expand All @@ -23,7 +23,7 @@ build:

requirements:
build:
- cmake >=3.20.1
- cmake >=3.20.1,<3.23
host:
- libcudf {{ version }}

Expand Down
2 changes: 1 addition & 1 deletion conda/recipes/libcudf_kafka/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ build:

requirements:
build:
- cmake >=3.20.1
- cmake >=3.20.1,<3.23
host:
- libcudf {{version}}
- librdkafka >=1.7.0,<1.8.0a0
Expand Down

0 comments on commit 1cccc29

Please sign in to comment.