Skip to content

Commit 6440207

Browse files
authored
Remove upper bounds on cuda-python to allow 12.6.2 and 11.8.5 (#17326)
Now that some upstream bugs have been fixed, we can allow cuda-python 12.6.2 and 11.8.5. See NVIDIA/cuda-python#226 (comment) for more information. Authors: - Bradley Dice (https://github.com/bdice) Approvers: - Kyle Edwards (https://github.com/KyleFromNVIDIA) URL: #17326
1 parent 3ca188d commit 6440207

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

conda/environments/all_cuda-118_arch-x86_64.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ dependencies:
1919
- cramjam
2020
- cubinlinker
2121
- cuda-nvtx=11.8
22-
- cuda-python>=11.7.1,<12.0a0,<=11.8.3
22+
- cuda-python>=11.7.1,<12.0a0
2323
- cuda-sanitizer-api=11.8.86
2424
- cuda-version=11.8
2525
- cudatoolkit

conda/environments/all_cuda-125_arch-x86_64.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ dependencies:
2121
- cuda-nvcc
2222
- cuda-nvrtc-dev
2323
- cuda-nvtx-dev
24-
- cuda-python>=12.0,<13.0a0,<=12.6.0
24+
- cuda-python>=12.0,<13.0a0
2525
- cuda-sanitizer-api
2626
- cuda-version=12.5
2727
- cupy>=12.0.0

conda/recipes/cudf/meta.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ requirements:
9191
- cudatoolkit
9292
- ptxcompiler >=0.7.0
9393
- cubinlinker # CUDA enhanced compatibility.
94-
- cuda-python >=11.7.1,<12.0a0,<=11.8.3
94+
- cuda-python >=11.7.1,<12.0a0
9595
{% else %}
9696
- cuda-cudart
9797
- libcufile # [linux64]
@@ -100,7 +100,7 @@ requirements:
100100
# TODO: Add nvjitlink here
101101
# xref: https://github.com/rapidsai/cudf/issues/12822
102102
- cuda-nvrtc
103-
- cuda-python >=12.0,<13.0a0,<=12.6.0
103+
- cuda-python >=12.0,<13.0a0
104104
- pynvjitlink
105105
{% endif %}
106106
- {{ pin_compatible('cuda-version', max_pin='x', min_pin='x') }}

conda/recipes/pylibcudf/meta.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,9 @@ requirements:
8383
- {{ pin_compatible('rmm', max_pin='x.x') }}
8484
- fsspec >=0.6.0
8585
{% if cuda_major == "11" %}
86-
- cuda-python >=11.7.1,<12.0a0,<=11.8.3
86+
- cuda-python >=11.7.1,<12.0a0
8787
{% else %}
88-
- cuda-python >=12.0,<13.0a0,<=12.6.0
88+
- cuda-python >=12.0,<13.0a0
8989
{% endif %}
9090
- nvtx >=0.2.1
9191
- packaging

dependencies.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -679,10 +679,10 @@ dependencies:
679679
matrices:
680680
- matrix: {cuda: "12.*"}
681681
packages:
682-
- cuda-python>=12.0,<13.0a0,<=12.6.0
682+
- cuda-python>=12.0,<13.0a0
683683
- matrix: {cuda: "11.*"}
684684
packages: &run_pylibcudf_packages_all_cu11
685-
- cuda-python>=11.7.1,<12.0a0,<=11.8.3
685+
- cuda-python>=11.7.1,<12.0a0
686686
- {matrix: null, packages: *run_pylibcudf_packages_all_cu11}
687687
run_cudf:
688688
common:
@@ -705,10 +705,10 @@ dependencies:
705705
matrices:
706706
- matrix: {cuda: "12.*"}
707707
packages:
708-
- cuda-python>=12.0,<13.0a0,<=12.6.0
708+
- cuda-python>=12.0,<13.0a0
709709
- matrix: {cuda: "11.*"}
710710
packages: &run_cudf_packages_all_cu11
711-
- cuda-python>=11.7.1,<12.0a0,<=11.8.3
711+
- cuda-python>=11.7.1,<12.0a0
712712
- {matrix: null, packages: *run_cudf_packages_all_cu11}
713713
- output_types: conda
714714
matrices:

python/cudf/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ requires-python = ">=3.10"
2020
dependencies = [
2121
"cachetools",
2222
"cubinlinker",
23-
"cuda-python>=11.7.1,<12.0a0,<=11.8.3",
23+
"cuda-python>=11.7.1,<12.0a0",
2424
"cupy-cuda11x>=12.0.0",
2525
"fsspec>=0.6.0",
2626
"libcudf==25.2.*,>=0.0.0a0",

python/pylibcudf/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ authors = [
1818
license = { text = "Apache 2.0" }
1919
requires-python = ">=3.10"
2020
dependencies = [
21-
"cuda-python>=11.7.1,<12.0a0,<=11.8.3",
21+
"cuda-python>=11.7.1,<12.0a0",
2222
"libcudf==25.2.*,>=0.0.0a0",
2323
"nvtx>=0.2.1",
2424
"packaging",

0 commit comments

Comments
 (0)