Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use numba-cuda>=0.0.13 #16474

Merged
merged 11 commits into from
Sep 27, 2024
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 @@ -55,7 +55,7 @@ dependencies:
- nbsphinx
- ninja
- notebook
- numba>=0.57
- numba-cuda>=0.0.13
- numpy>=1.23,<2.0a0
- numpydoc
- nvcc_linux-64=11.8
Expand Down
2 changes: 1 addition & 1 deletion conda/environments/all_cuda-125_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ dependencies:
- nbsphinx
- ninja
- notebook
- numba>=0.57
- numba-cuda>=0.0.13
- numpy>=1.23,<2.0a0
- numpydoc
- nvcomp==3.0.6
Expand Down
2 changes: 1 addition & 1 deletion conda/recipes/cudf/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ requirements:
- typing_extensions >=4.0.0
- pandas >=2.0,<2.2.3dev0
- cupy >=12.0.0
- numba >=0.57
- numba-cuda >=0.0.13
# TODO: Update `numpy` in `host` when dropping `<2.0a0`
- numpy >=1.23,<2.0a0
- {{ pin_compatible('pyarrow', max_pin='x.x') }}
Expand Down
4 changes: 2 additions & 2 deletions dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -565,7 +565,7 @@ dependencies:
- output_types: [conda, requirements, pyproject]
packages:
- cachetools
- &numba numba>=0.57
- &numba-cuda-dep numba-cuda>=0.0.13
- nvtx>=0.2.1
- packaging
- rich
Expand Down Expand Up @@ -723,7 +723,7 @@ dependencies:
- output_types: [conda, requirements, pyproject]
packages:
- dask-cuda==24.10.*,>=0.0.0a0
- *numba
- *numba-cuda-dep
depends_on_cudf:
common:
- output_types: conda
Expand Down
2 changes: 1 addition & 1 deletion python/cudf/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ dependencies = [
"cuda-python>=11.7.1,<12.0a0",
"cupy-cuda11x>=12.0.0",
"fsspec>=0.6.0",
"numba>=0.57",
"numba-cuda>=0.0.13",
"numpy>=1.23,<2.0a0",
"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 @@ -46,7 +46,7 @@ cudf = "dask_cudf.backends:CudfDXBackendEntrypoint"
[project.optional-dependencies]
test = [
"dask-cuda==24.10.*,>=0.0.0a0",
"numba>=0.57",
"numba-cuda>=0.0.13",
"pytest-cov",
"pytest-xdist",
"pytest<8",
Expand Down
Loading