From 8ef71de26b01458f02f36ad96c1b3017cf985cc5 Mon Sep 17 00:00:00 2001 From: James Lamb Date: Thu, 30 May 2024 10:43:30 -0500 Subject: [PATCH] remove unnecessary 'setuptools' dependencies (#2343) Contributes to https://github.com/rapidsai/build-planning/issues/62. It looks like this some of this project's `conda` recipes have unnecessary dependencies on `setuptools`. I suspect those are left over from before the project was cut over to `scikit-build-core`. ## Notes for Reviewers How I confirmed there were no direct uses of `setuptools` in `pylibraft` and `raft-dask`: ```shell git grep -i setuptools ``` Authors: - James Lamb (https://github.com/jameslamb) Approvers: - Jake Awe (https://github.com/AyodeAwe) URL: https://github.com/rapidsai/raft/pull/2343 --- conda/recipes/pylibraft/meta.yaml | 1 - conda/recipes/raft-dask/meta.yaml | 1 - 2 files changed, 2 deletions(-) diff --git a/conda/recipes/pylibraft/meta.yaml b/conda/recipes/pylibraft/meta.yaml index 16fecadd83..31086e30aa 100644 --- a/conda/recipes/pylibraft/meta.yaml +++ b/conda/recipes/pylibraft/meta.yaml @@ -55,7 +55,6 @@ requirements: - python x.x - rmm ={{ minor_version }} - scikit-build-core >=0.7.0 - - setuptools - rapids-build-backend>=0.3.0,<0.4.0.dev0 run: - {{ pin_compatible('cuda-version', max_pin='x', min_pin='x') }} diff --git a/conda/recipes/raft-dask/meta.yaml b/conda/recipes/raft-dask/meta.yaml index 83ec1922e1..641a11a241 100644 --- a/conda/recipes/raft-dask/meta.yaml +++ b/conda/recipes/raft-dask/meta.yaml @@ -55,7 +55,6 @@ requirements: - python x.x - rmm ={{ minor_version }} - scikit-build-core >=0.7.0 - - setuptools - ucx-py {{ ucx_py_version }} - ucxx {{ ucxx_version }} - rapids-build-backend>=0.3.0,<0.4.0.dev0