Skip to content

Commit

Permalink
Don't constrain numba<0.58 (#14616)
Browse files Browse the repository at this point in the history
This PR removes the constraint for numba 0.58 in our dependencies. 

Closes #14160

Authors:
  - https://github.com/brandon-b-miller

Approvers:
  - Bradley Dice (https://github.com/bdice)
  - GALI PREM SAGAR (https://github.com/galipremsagar)
  - Ray Douglass (https://github.com/raydouglass)

URL: #14616
  • Loading branch information
brandon-b-miller authored Dec 18, 2023
1 parent 9c16d89 commit 8dca25c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion conda/environments/all_cuda-118_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion conda/environments/all_cuda-120_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 1 addition & 2 deletions dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion python/cudf/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,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",
Expand Down
2 changes: 1 addition & 1 deletion python/dask_cudf/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ cudf = "dask_cudf.backends:CudfBackendEntrypoint"
[project.optional-dependencies]
test = [
"dask-cuda==24.2.*",
"numba>=0.57,<0.58",
"numba>=0.57",
"pytest",
"pytest-cov",
"pytest-xdist",
Expand Down

0 comments on commit 8dca25c

Please sign in to comment.