From 59c1553095e361a262a7a3ee3b47a375b3933aeb Mon Sep 17 00:00:00 2001 From: jakirkham Date: Wed, 31 May 2023 12:43:48 -0700 Subject: [PATCH] Require Numba 0.57.0+ (#1185) Aligns with the rest of RAPIDS. Also needed for CUDA 12 support. Authors: - https://github.com/jakirkham Approvers: - Peter Andreas Entschev (https://github.com/pentschev) - Ray Douglass (https://github.com/raydouglass) URL: https://github.com/rapidsai/dask-cuda/pull/1185 --- dependencies.yaml | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dependencies.yaml b/dependencies.yaml index 613ab2307..5dc1e0c68 100644 --- a/dependencies.yaml +++ b/dependencies.yaml @@ -93,7 +93,7 @@ dependencies: packages: - dask==2023.3.2 - distributed==2023.3.2.1 - - numba>=0.54 + - numba>=0.57 - numpy>=1.21 - pandas>=1.3,<1.6.0dev0 - pynvml>=11.0.0,<11.5 diff --git a/pyproject.toml b/pyproject.toml index d29e871a1..9fcf0e708 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,7 +23,7 @@ dependencies = [ "distributed ==2023.3.2.1", "pynvml >=11.0.0,<11.5", "numpy >=1.21", - "numba >=0.54", + "numba >=0.57", "pandas >=1.3,<1.6.0dev0", "zict >=2.0.0", ]