Skip to content

Commit

Permalink
Add upper bound to prevent usage of numba 0.61.0 (#1789)
Browse files Browse the repository at this point in the history
Numba 0.61.0 just got released with a 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:
  - Bradley Dice (https://github.com/bdice)

URL: #1789
  • Loading branch information
galipremsagar authored Jan 22, 2025
1 parent d750a6e commit 67fd94d
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 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:
- make
- nbsphinx
- ninja
- numba>=0.57
- numba>=0.59.1,<0.61.0a0
- numpy>=1.23,<3.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 @@ -25,7 +25,7 @@ dependencies:
- make
- nbsphinx
- ninja
- numba>=0.57
- numba>=0.59.1,<0.61.0a0
- numpy>=1.23,<3.0a0
- numpydoc
- pre-commit
Expand Down
2 changes: 1 addition & 1 deletion conda/recipes/rmm/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ requirements:
- cuda-python >=12.6.2,<13.0a0
{% endif %}
- {{ pin_compatible('cuda-version', max_pin='x', min_pin='x') }}
- numba >=0.57
- numba >=0.59.1,<0.61.0a0
- numpy >=1.23,<3.0a0
- python

Expand Down
4 changes: 2 additions & 2 deletions dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ dependencies:
common:
- output_types: [conda, requirements, pyproject]
packages:
- numba>=0.57
- numba>=0.59.1,<0.61.0a0
- pytest
- pytest-cov
specific:
Expand All @@ -330,7 +330,7 @@ dependencies:
- matrix:
dependencies: "oldest"
packages:
- numba==0.57.*
- numba==0.59.1
- numpy==1.23.*
- matrix:
packages:
4 changes: 2 additions & 2 deletions python/rmm/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2021-2024, NVIDIA CORPORATION.
# Copyright (c) 2021-2025, NVIDIA CORPORATION.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -46,7 +46,7 @@ classifiers = [

[project.optional-dependencies]
test = [
"numba>=0.57",
"numba>=0.59.1,<0.61.0a0",
"pytest",
"pytest-cov",
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit ../../dependencies.yaml and run `rapids-dependency-file-generator`.
Expand Down

0 comments on commit 67fd94d

Please sign in to comment.