Skip to content

Commit

Permalink
Add upper bound to prevent usage of numba 0.61.0 (#351)
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.

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

Approvers:
  - Peter Andreas Entschev (https://github.com/pentschev)
  - Ray Douglass (https://github.com/raydouglass)

URL: #351
  • Loading branch information
galipremsagar authored Jan 23, 2025
1 parent 8705534 commit 5a5cd99
Show file tree
Hide file tree
Showing 6 changed files with 6 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 @@ -25,7 +25,7 @@ dependencies:
- librmm==25.2.*,>=0.0.0a0
- libtool
- ninja
- numba>=0.57.1
- numba>=0.59.1.1,<0.61.0a0
- numpy>=1.23,<3.0a0
- pip
- pkg-config
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 @@ -25,7 +25,7 @@ dependencies:
- librmm==25.2.*,>=0.0.0a0
- libtool
- ninja
- numba>=0.57.1
- numba>=0.59.1.1,<0.61.0a0
- numpy>=1.23,<3.0a0
- pip
- pkg-config
Expand Down
2 changes: 1 addition & 1 deletion conda/recipes/ucxx/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ outputs:
- pynvml >=12.0.0,<13.0.0a0
run_constrained:
- cupy >=9.5.0
- numba >=0.57.0
- numba >=0.59.1.0,<0.61.0a0
test:
commands:
- test -f $PREFIX/lib/libucxx_python.so
Expand Down
2 changes: 1 addition & 1 deletion dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ dependencies:
common:
- output_types: [conda, requirements, pyproject]
packages:
- &numba numba>=0.57.1
- &numba numba>=0.59.1.1,<0.61.0a0
- rapids-dask-dependency==25.2.*,>=0.0.0a0
test_cpp:
common:
Expand Down
2 changes: 1 addition & 1 deletion python/distributed-ucxx/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ authors = [
license = { text = "BSD-3-Clause" }
requires-python = ">=3.10"
dependencies = [
"numba>=0.57.1",
"numba>=0.59.1.1,<0.61.0a0",
"rapids-dask-dependency==25.2.*,>=0.0.0a0",
"ucxx==0.42.*,>=0.0.0a0",
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit ../../dependencies.yaml and run `rapids-dependency-file-generator`.
Expand Down
2 changes: 1 addition & 1 deletion python/ucxx/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ test = [
"cloudpickle",
"cudf==25.2.*,>=0.0.0a0",
"cupy-cuda11x>=12.0.0",
"numba>=0.57.1",
"numba>=0.59.1.1,<0.61.0a0",
"pytest-asyncio",
"pytest-rerunfailures",
"pytest==7.*",
Expand Down

0 comments on commit 5a5cd99

Please sign in to comment.