Skip to content

Commit

Permalink
Update CMake pinning to just avoid 3.23.0. (#1023)
Browse files Browse the repository at this point in the history
CMake 3.23.1 contains the bug fixes that we need to make use of CMake 3.23, so now we can update the pinnings to just avoid 3.23.0.

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

Approvers:
  - https://github.com/jakirkham
  - Jordan Jacobelli (https://github.com/Ethyling)
  - Robert Maynard (https://github.com/robertmaynard)

URL: #1023
  • Loading branch information
vyasr authored Apr 14, 2022
1 parent 36dd42d commit 97617ba
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion conda/environments/rmm_dev_cuda11.5.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ channels:
dependencies:
- clang=11.1.0
- clang-tools=11.1.0
- cmake>=3.20.1,<3.23
- cmake>=3.20.1,!=3.23.0
- cmake-format=0.6.11
- flake8=3.8.3
- black=22.3.0
Expand Down
2 changes: 1 addition & 1 deletion conda/environments/rmm_dev_cuda11.6.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ channels:
dependencies:
- clang=11.1.0
- clang-tools=11.1.0
- cmake>=3.20.1,<3.23
- cmake>=3.20.1,!=3.23.0
- cmake-format=0.6.11
- flake8=3.8.3
- black=22.3.0
Expand Down
2 changes: 1 addition & 1 deletion conda/recipes/librmm/conda_build_config.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_version:
- ">=3.20.1,<3.23"
- ">=3.20.1,!=3.23.0"

gtest_version:
- "=1.10.0"
2 changes: 1 addition & 1 deletion conda/recipes/rmm/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ requirements:
- librmm {{ version }}
- setuptools
- cython>=0.29,<0.30
- cmake>=3.20.1,<3.23
- cmake>=3.20.1,!=3.23.0
- scikit-build>=0.13.1
- spdlog>=1.8.5,<2.0.0a0
- cudatoolkit {{ cuda_version }}.*
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.20.1,<3.23",
"cmake>=3.20.1,!=3.23.0",
"ninja",
"cuda-python>=11.5,<12.0",
]
Expand Down

0 comments on commit 97617ba

Please sign in to comment.