From 2b3cbd067a689353bf522f9f1368fb886236b48e Mon Sep 17 00:00:00 2001 From: James Lamb Date: Thu, 30 May 2024 10:42:30 -0500 Subject: [PATCH] remove unnecessary 'setuptools' dependency (#385) Contributes to https://github.com/rapidsai/build-planning/issues/62. It looks like this some of the `kvikio` conda package recipe has an unnecessary dependency on `setuptools`. I suspect that's left over from before the project was cut over to `scikit-build-core`. This proposes removing it. ## Notes for Reviewers How I confirmed there were no direct uses of `setuptools` in this project: ```shell git grep -i setuptools ``` Authors: - James Lamb (https://github.com/jameslamb) Approvers: - Jake Awe (https://github.com/AyodeAwe) URL: https://github.com/rapidsai/kvikio/pull/385 --- CONTRIBUTING.md | 1 - conda/recipes/kvikio/meta.yaml | 1 - 2 files changed, 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 44babdddd8..70f8279ef4 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -39,7 +39,6 @@ The Python packages depends on the following packages: * Cython * Pip -* Setuptools For testing: * pytest diff --git a/conda/recipes/kvikio/meta.yaml b/conda/recipes/kvikio/meta.yaml index 78e844aff4..886334be5d 100644 --- a/conda/recipes/kvikio/meta.yaml +++ b/conda/recipes/kvikio/meta.yaml @@ -54,7 +54,6 @@ requirements: - {{ stdlib("c") }} host: - python - - setuptools - pip - cython >=3.0.0 {% if cuda_major == "11" %}