From b2950d9b377caa4dea6d264e21137cd1d89465a9 Mon Sep 17 00:00:00 2001 From: Graham Markall <535640+gmarkall@users.noreply.github.com> Date: Tue, 22 Oct 2024 01:33:32 +0100 Subject: [PATCH] Remove numba dependency (#715) **EDIT:** This now removes the numba dependency, which comes transitively from cuDF. **Original description:** numba-cuda is the NVIDIA-maintained CUDA target for Numba, which depends on the numba package. This PR replaces the numba dependency with numba-cuda. However, similar to @bdice's comment in #648, I don't know if we strictly need this here any more due to the cudf dependency (from rapidsai/cudf#16474) ensuring numba-cuda is present. Authors: - Graham Markall (https://github.com/gmarkall) - Bradley Dice (https://github.com/bdice) Approvers: - Bradley Dice (https://github.com/bdice) URL: https://github.com/rapidsai/integration/pull/715 --- conda/recipes/rapids/meta.yaml | 1 - conda/recipes/versions.yaml | 2 -- 2 files changed, 3 deletions(-) diff --git a/conda/recipes/rapids/meta.yaml b/conda/recipes/rapids/meta.yaml index bd98d790..79aa138c 100644 --- a/conda/recipes/rapids/meta.yaml +++ b/conda/recipes/rapids/meta.yaml @@ -31,7 +31,6 @@ requirements: - {{ pin_compatible('cuda-version', max_pin='x', min_pin='x') }} - cupy {{ cupy_version }} - nccl {{ nccl_version }} - - numba {{ numba_version }} - numpy {{ numpy_version }} - nvtx {{ nvtx_version }} - python diff --git a/conda/recipes/versions.yaml b/conda/recipes/versions.yaml index e0206401..fd719d09 100644 --- a/conda/recipes/versions.yaml +++ b/conda/recipes/versions.yaml @@ -8,8 +8,6 @@ cupy_version: - '>=12.0.0' nccl_version: - '>=2.19,<3.0a0' -numba_version: - - '>=0.57' numpy_version: - '>=1.23,<3.0a0' nvtx_version: