diff --git a/conda/environments/all_cuda-118_arch-x86_64.yaml b/conda/environments/all_cuda-118_arch-x86_64.yaml index 8e0a7bc5495..f17ad56b49f 100644 --- a/conda/environments/all_cuda-118_arch-x86_64.yaml +++ b/conda/environments/all_cuda-118_arch-x86_64.yaml @@ -58,7 +58,7 @@ dependencies: - nbsphinx - ninja - notebook -- numba>=0.57,<0.58 +- numba>=0.57 - numpy>=1.21,<1.25 - numpydoc - nvcc_linux-64=11.8 diff --git a/conda/environments/all_cuda-120_arch-x86_64.yaml b/conda/environments/all_cuda-120_arch-x86_64.yaml index e52e0adb163..558fa6894c1 100644 --- a/conda/environments/all_cuda-120_arch-x86_64.yaml +++ b/conda/environments/all_cuda-120_arch-x86_64.yaml @@ -57,7 +57,7 @@ dependencies: - nbsphinx - ninja - notebook -- numba>=0.57,<0.58 +- numba>=0.57 - numpy>=1.21,<1.25 - numpydoc - nvcomp==3.0.5 diff --git a/dependencies.yaml b/dependencies.yaml index 4a1c2ad1cd3..a9e068be361 100644 --- a/dependencies.yaml +++ b/dependencies.yaml @@ -481,8 +481,7 @@ dependencies: - output_types: [conda, requirements, pyproject] packages: - cachetools - # TODO: Pin to numba<0.58 until #14160 is resolved - - &numba numba>=0.57,<0.58 + - &numba numba>=0.57 - nvtx>=0.2.1 - packaging - rich diff --git a/python/cudf/pyproject.toml b/python/cudf/pyproject.toml index d32284c0c5d..ea3b6034f92 100644 --- a/python/cudf/pyproject.toml +++ b/python/cudf/pyproject.toml @@ -31,7 +31,7 @@ dependencies = [ "cuda-python>=11.7.1,<12.0a0", "cupy-cuda11x>=12.0.0", "fsspec>=0.6.0", - "numba>=0.57,<0.58", + "numba>=0.57", "numpy>=1.21,<1.25", "nvtx>=0.2.1", "packaging", diff --git a/python/dask_cudf/pyproject.toml b/python/dask_cudf/pyproject.toml index 890be46b974..01474faf746 100644 --- a/python/dask_cudf/pyproject.toml +++ b/python/dask_cudf/pyproject.toml @@ -38,7 +38,7 @@ classifiers = [ [project.optional-dependencies] test = [ "dask-cuda==24.2.*", - "numba>=0.57,<0.58", + "numba>=0.57", "pytest", "pytest-cov", "pytest-xdist",