From db86b06c972fd56331912cf29fd24cf3cfa8029b Mon Sep 17 00:00:00 2001 From: Bradley Dice Date: Wed, 3 May 2023 13:18:00 -0500 Subject: [PATCH] Pin to scikit-build<0.17.2. (#1262) Wheel builds are failing because of a recent update to scikit-build. See related PR: https://github.com/rapidsai/cudf/pull/13188 Blocks #1259. Authors: - Bradley Dice (https://github.com/bdice) Approvers: - AJ Schmidt (https://github.com/ajschmidt8) - Vyas Ramasubramani (https://github.com/vyasr) URL: https://github.com/rapidsai/rmm/pull/1262 --- conda/environments/all_cuda-118_arch-x86_64.yaml | 2 +- conda/recipes/rmm/meta.yaml | 2 +- dependencies.yaml | 2 +- python/pyproject.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/conda/environments/all_cuda-118_arch-x86_64.yaml b/conda/environments/all_cuda-118_arch-x86_64.yaml index b640b70d6..5638d1149 100644 --- a/conda/environments/all_cuda-118_arch-x86_64.yaml +++ b/conda/environments/all_cuda-118_arch-x86_64.yaml @@ -17,7 +17,7 @@ dependencies: - pytest - pytest-cov - python>=3.9,<3.11 -- scikit-build>=0.13.1 +- scikit-build>=0.13.1,<0.17.2 - spdlog>=1.11.0,<1.12 - tomli name: all_cuda-118_arch-x86_64 diff --git a/conda/recipes/rmm/meta.yaml b/conda/recipes/rmm/meta.yaml index ccf5c780f..a2e9487e0 100644 --- a/conda/recipes/rmm/meta.yaml +++ b/conda/recipes/rmm/meta.yaml @@ -48,7 +48,7 @@ requirements: - cython >=0.29,<0.30 - librmm ={{ version }} - python - - scikit-build >=0.13.1 + - scikit-build >=0.13.1,<0.17.2 - setuptools >=61.0.0 - tomli # [py<311] run: diff --git a/dependencies.yaml b/dependencies.yaml index d4bd55fc8..a9f6fbfcd 100644 --- a/dependencies.yaml +++ b/dependencies.yaml @@ -65,7 +65,7 @@ dependencies: - &cuda_python cuda-python>=11.7.1,<12.0 - cython>=0.29,<0.30 - ninja - - scikit-build>=0.13.1 + - scikit-build>=0.13.1,<0.17.2 - tomli - output_types: conda packages: diff --git a/python/pyproject.toml b/python/pyproject.toml index ca74d5db9..ea4858ea4 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -19,7 +19,7 @@ requires = [ "cuda-python>=11.7.1,<12.0", "cython>=0.29,<0.30", "ninja", - "scikit-build>=0.13.1", + "scikit-build>=0.13.1,<0.17.2", "setuptools>=61.0.0", "tomli", "wheel",