From fbfb28e2e2ec0f959663e92dddf942d62068e6e0 Mon Sep 17 00:00:00 2001 From: Vyas Ramasubramani Date: Tue, 12 Apr 2022 17:03:08 -0700 Subject: [PATCH] Update CMake pinning to just avoid 3.23.0. --- conda/environments/rmm_dev_cuda11.5.yml | 2 +- conda/environments/rmm_dev_cuda11.6.yml | 2 +- conda/recipes/librmm/conda_build_config.yaml | 2 +- conda/recipes/rmm/meta.yaml | 2 +- python/pyproject.toml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/conda/environments/rmm_dev_cuda11.5.yml b/conda/environments/rmm_dev_cuda11.5.yml index 40fd1f10c..7cdaf866e 100644 --- a/conda/environments/rmm_dev_cuda11.5.yml +++ b/conda/environments/rmm_dev_cuda11.5.yml @@ -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 diff --git a/conda/environments/rmm_dev_cuda11.6.yml b/conda/environments/rmm_dev_cuda11.6.yml index 50b116329..fec069e83 100644 --- a/conda/environments/rmm_dev_cuda11.6.yml +++ b/conda/environments/rmm_dev_cuda11.6.yml @@ -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 diff --git a/conda/recipes/librmm/conda_build_config.yaml b/conda/recipes/librmm/conda_build_config.yaml index 725ed4744..bc011740d 100644 --- a/conda/recipes/librmm/conda_build_config.yaml +++ b/conda/recipes/librmm/conda_build_config.yaml @@ -1,5 +1,5 @@ cmake_version: - - ">=3.20.1,<3.23" + - ">=3.20.1,!=3.23.0" gtest_version: - "=1.10.0" diff --git a/conda/recipes/rmm/meta.yaml b/conda/recipes/rmm/meta.yaml index 82eb0a06d..5d5a7b224 100644 --- a/conda/recipes/rmm/meta.yaml +++ b/conda/recipes/rmm/meta.yaml @@ -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 }}.* diff --git a/python/pyproject.toml b/python/pyproject.toml index a0d65bb73..786e7df08 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -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", ]