Skip to content

Commit

Permalink
Add upper bound to prevent usage of numba 0.61.0 (#1426)
Browse files Browse the repository at this point in the history
Numba 0.61.0 just got released with couple of breaking changes, this pr is required to unblock the ci.

xref: rapidsai/cudf#17777

Authors:
  - GALI PREM SAGAR (https://github.com/galipremsagar)

Approvers:
  - Peter Andreas Entschev (https://github.com/pentschev)
  - Gil Forsyth (https://github.com/gforsyth)

URL: #1426
  • Loading branch information
galipremsagar authored Jan 22, 2025
1 parent afc27f4 commit 088688a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion conda/environments/all_cuda-114_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ dependencies:
- distributed-ucxx==0.42.*,>=0.0.0a0
- kvikio==25.2.*,>=0.0.0a0
- numactl-devel-cos7-x86_64
- numba>=0.57
- numba>=0.59.1,<0.61.0a0
- numpy>=1.23,<3.0a0
- numpydoc>=1.1.0
- pandas>=1.3
Expand Down
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 @@ -15,7 +15,7 @@ dependencies:
- distributed-ucxx==0.42.*,>=0.0.0a0
- kvikio==25.2.*,>=0.0.0a0
- numactl-devel-cos7-x86_64
- numba>=0.57
- numba>=0.59.1,<0.61.0a0
- numpy>=1.23,<3.0a0
- numpydoc>=1.1.0
- pandas>=1.3
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 @@ -16,7 +16,7 @@ dependencies:
- distributed-ucxx==0.42.*,>=0.0.0a0
- kvikio==25.2.*,>=0.0.0a0
- numactl-devel-cos7-x86_64
- numba>=0.57
- numba>=0.59.1,<0.61.0a0
- numpy>=1.23,<3.0a0
- numpydoc>=1.1.0
- pandas>=1.3
Expand Down
2 changes: 1 addition & 1 deletion dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ dependencies:
- output_types: [conda, requirements, pyproject]
packages:
- click >=8.1
- numba>=0.57
- numba>=0.59.1,<0.61.0a0
- numpy>=1.23,<3.0a0
- pandas>=1.3
- pynvml>=12.0.0,<13.0.0a0
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ license = { text = "Apache 2.0" }
requires-python = ">=3.10"
dependencies = [
"click >=8.1",
"numba>=0.57",
"numba>=0.59.1,<0.61.0a0",
"numpy>=1.23,<3.0a0",
"pandas>=1.3",
"pynvml>=12.0.0,<13.0.0a0",
Expand Down

0 comments on commit 088688a

Please sign in to comment.