From 7d3bed24dce125e430627fb7c7df2d2bc8642a39 Mon Sep 17 00:00:00 2001 From: jakirkham Date: Wed, 31 May 2023 06:43:01 -0700 Subject: [PATCH] Require Numba 0.57.0+ (#1559) Align with the rest of RAPIDS on these requirements. Also needed for CUDA 12 support. Authors: - https://github.com/jakirkham Approvers: - Corey J. Nolet (https://github.com/cjnolet) - Ray Douglass (https://github.com/raydouglass) - Bradley Dice (https://github.com/bdice) --- conda/environments/all_cuda-118_arch-x86_64.yaml | 2 +- dependencies.yaml | 2 +- python/raft-dask/pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/conda/environments/all_cuda-118_arch-x86_64.yaml b/conda/environments/all_cuda-118_arch-x86_64.yaml index aae2aa3d15..c32596f5b6 100644 --- a/conda/environments/all_cuda-118_arch-x86_64.yaml +++ b/conda/environments/all_cuda-118_arch-x86_64.yaml @@ -39,7 +39,7 @@ dependencies: - libcusparse=11.7.5.86 - nccl>=2.9.9 - ninja -- numba>=0.49 +- numba>=0.57 - numpy>=1.21 - numpydoc - pydata-sphinx-theme diff --git a/dependencies.yaml b/dependencies.yaml index c768fe0333..f58d931e42 100644 --- a/dependencies.yaml +++ b/dependencies.yaml @@ -274,7 +274,7 @@ dependencies: - dask-cuda==23.6.* - distributed==2023.3.2.1 - joblib>=0.11 - - numba>=0.49 + - numba>=0.57 - *numpy - ucx-py==0.32.* - output_types: conda diff --git a/python/raft-dask/pyproject.toml b/python/raft-dask/pyproject.toml index ac6a35b5ab..45563e4281 100644 --- a/python/raft-dask/pyproject.toml +++ b/python/raft-dask/pyproject.toml @@ -38,7 +38,7 @@ dependencies = [ "dask==2023.3.2", "distributed==2023.3.2.1", "joblib>=0.11", - "numba>=0.49", + "numba>=0.57", "numpy>=1.21", "pylibraft==23.6.*", "ucx-py==0.32.*",