Skip to content

Commit

Permalink
Merge pull request #10544 from vyasr/pin_cmake
Browse files Browse the repository at this point in the history
CMake 3.23 appears to have a bug relating to CUDA support that breaks our builds.

Authors:
   - Vyas Ramasubramani (https://github.com/vyasr)

Approvers:
   - AJ Schmidt (https://github.com/ajschmidt8)
  • Loading branch information
jjacobelli authored Mar 31, 2022
2 parents 4770599 + 1cccc29 commit a02b7c2
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 a02b7c2

Please sign in to comment.