Skip to content

Commit df501fe

Browse files
committed
pin numba-cuda versions to >=0.21.0
1 parent b332cbe commit df501fe

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

ci/test_conda_python.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ rapids-mamba-retry create -n test \
2323
cuda-version=${RAPIDS_CUDA_VERSION%.*} \
2424
cuda-nvrtc \
2525
numba >=0.59 \
26-
"numba-cuda>=0.20.1,<0.21.0" \
26+
"numba-cuda>=0.21.0,<0.23.0" \
2727
cuda-cudart-dev \
2828
python=${RAPIDS_PY_VERSION} \
2929
cffi \

conda/environment-cu12.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ dependencies:
99
- python>=3.10
1010
- cmake>=3.29 # Allow overriding CMAKE_PREFIX_PATH and CMAKE_INSTALL_PREFIX
1111
- clangdev >=18,<22.0
12-
- numba-cuda[cu12] >=0.20.1,<0.21.0
12+
- numba-cuda[cu12] >=0.21.0,<0.23.0
1313
- pybind11
1414
- pytest
1515
- pytest-benchmark

conda/environment-cu13.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ dependencies:
99
- python>=3.10
1010
- cmake>=3.29 # Allow overriding CMAKE_PREFIX_PATH and CMAKE_INSTALL_PREFIX
1111
- clangdev >=18,<22.0
12-
- numba-cuda[cu13] >=0.20.1,<0.21.0
12+
- numba-cuda[cu13] >=0.21.0,<0.23.0
1313
- pybind11
1414
- pytest
1515
- pytest-benchmark

conda/environment_template.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ dependencies:
99
- python={{ python_version }}
1010
- cmake>=3.29 # Allow overriding CMAKE_PREFIX_PATH and CMAKE_INSTALL_PREFIX
1111
- clangdev >=18,<22.0
12-
- numba-cuda >=0.20.1,<0.21.0
12+
- numba-cuda >=0.21.0,<0.23.0
1313
- pybind11
1414
- pytest
1515
- pytest-benchmark

conda/recipes/numbast/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ requirements:
5252
- cuda-version >=12.5
5353
- numba >=0.59
5454
- python
55-
- numba-cuda >=0.20.1,<0.21.0
55+
- numba-cuda >=0.21.0,<0.23.0
5656
- pyyaml
5757
- click
5858
- jinja2

conda/recipes/numbast_extensions/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ requirements:
4343
- cuda-cudart-dev
4444
- python
4545
- numba >=0.59
46-
- numba-cuda >=0.20.1,<0.21.0
46+
- numba-cuda >=0.21.0,<0.23.0
4747
- numbast >=0.2.0
4848

4949
test:

numbast/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ classifiers = [
1818
]
1919
dependencies = [
2020
"numba>=0.59.0",
21-
"numba-cuda>=0.20.1,<0.21.0",
21+
"numba-cuda>=0.21.0,<0.23.0",
2222
"ast_canopy>=0.5.0",
2323
"pyyaml",
2424
"click",
@@ -41,12 +41,12 @@ repository = "https://github.com/NVIDIA/numbast"
4141
[project.optional-dependencies]
4242
dev = ["ruff"]
4343
docs = ["sphinx>=7.0", "sphinx-copybutton>=0.5.2"]
44-
test-cu12 = ["pytest", "cffi", "numba-cuda[cu12]>=0.20.1,<0.21.0"]
44+
test-cu12 = ["pytest", "cffi", "numba-cuda[cu12]>=0.21.0,<0.23.0"]
4545
test-cu13 = [
4646
"pytest",
4747
"cffi",
4848
"cuda-toolkit[cudart,crt,curand,cccl,nvcc]==13.*",
49-
"numba-cuda[cu13]>=0.20.1,<0.21.0",
49+
"numba-cuda[cu13]>=0.21.0,<0.23.0",
5050
]
5151

5252

numbast_extensions/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ classifiers = [
1515
"License :: OSI Approved :: Apache Software License",
1616
"Operating System :: OS Independent",
1717
]
18-
dependencies = ["numba-cuda>=0.20.1,<0.21.0", "numbast>=0.2.0"]
18+
dependencies = ["numba-cuda>=0.21.0,<0.23.0", "numbast>=0.2.0"]
1919

2020
[project.urls]
2121
homepage = "https://github.com/NVIDIA/numbast"

0 commit comments

Comments
 (0)