Skip to content

Commit 31cdedd

Browse files
committed
CI,BLD: Bump Python range to 3.11-3.13
Signed-off-by: Sebastian Berg <sebastianb@nvidia.com>
1 parent e97dc48 commit 31cdedd

5 files changed

Lines changed: 13 additions & 13 deletions

File tree

.github/workflows/conda-python-build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ jobs:
4545
CUDA_VER:
4646
- "12.5.1"
4747
PY_VER:
48-
- "3.10"
4948
- "3.11"
5049
- "3.12"
50+
- "3.13"
5151
runs-on: linux-${{ matrix.ARCH }}-cpu4
5252
container:
5353
image: "rapidsai/ci-conda:cuda${{ matrix.CUDA_VER }}-ubuntu22.04-py${{ matrix.PY_VER }}"

.github/workflows/docs-build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
include:
3232
- ARCH: amd64
3333
CUDA_VER: "12.5.1"
34-
PY_VER: "3.12"
34+
PY_VER: "3.13"
3535
container:
3636
image: "rapidsai/ci-conda:cuda${{ matrix.CUDA_VER }}-ubuntu22.04-py${{ matrix.PY_VER }}"
3737
steps:

.github/workflows/pr.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
include:
5656
- ARCH: "amd64"
5757
CUDA_VER: "12.5.1"
58-
PY_VER: "3.11"
58+
PY_VER: "3.12"
5959
runs-on: linux-${{ matrix.ARCH }}-cpu16
6060
container:
6161
image: "rapidsai/ci-conda:cuda${{ matrix.CUDA_VER }}-ubuntu22.04-py${{ matrix.PY_VER }}"
@@ -90,7 +90,7 @@ jobs:
9090
include:
9191
- ARCH: "amd64"
9292
CUDA_VER: "12.5.1"
93-
PY_VER: "3.11"
93+
PY_VER: "3.12"
9494
runs-on: linux-${{ matrix.ARCH }}-cpu4
9595
container:
9696
image: "rapidsai/ci-conda:cuda${{ matrix.CUDA_VER }}-ubuntu22.04-py${{ matrix.PY_VER }}"
@@ -114,14 +114,14 @@ jobs:
114114
#
115115
# * architectures: amd64 only
116116
# * CUDA: >=12.2
117-
# * Python: 3.10, 3.11, 3.12
117+
# * Python: 3.11, 3.12, 3.13
118118
#
119119
# Valid set of RAPIDS ci-conda image tags: https://hub.docker.com/r/rapidsai/ci-conda/tags
120120
matrix:
121121
include:
122122
- ARCH: "amd64"
123123
CUDA_VER: "12.5.1"
124-
PY_VER: "3.10"
124+
PY_VER: "3.11"
125125
runs-on: linux-${{ matrix.ARCH }}-gpu-v100-latest-1
126126
container:
127127
image: "rapidsai/ci-conda:cuda${{ matrix.CUDA_VER }}-ubuntu22.04-py${{ matrix.PY_VER }}"

dependencies.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -138,18 +138,18 @@ dependencies:
138138
specific:
139139
- output_types: conda
140140
matrices:
141-
- matrix:
142-
py: "3.10"
143-
packages:
144-
- python=3.10
145141
- matrix:
146142
py: "3.11"
147143
packages:
148144
- python=3.11
149145
- matrix:
150146
py: "3.12"
151147
packages:
152-
- &latest_python python=3.12
148+
- python=3.12
149+
- matrix:
150+
py: "3.13"
151+
packages:
152+
- &latest_python python=3.13
153153
- matrix:
154154
packages:
155155
- *latest_python

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ classifiers = [
2727
"Topic :: Scientific/Engineering",
2828
"License :: OSI Approved :: Apache Software License",
2929
"Programming Language :: Python",
30-
"Programming Language :: Python :: 3.10",
3130
"Programming Language :: Python :: 3.11",
3231
"Programming Language :: Python :: 3.12",
32+
"Programming Language :: Python :: 3.13",
3333
]
3434
dependencies = [
3535
"cupynumeric==25.07.*,>=0.0.0.dev0",
@@ -40,7 +40,7 @@ dependencies = [
4040
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit dependencies.yaml and run `rapids-dependency-file-generator`.
4141
description = "GBM libary on Legate"
4242
license = {text = "Apache 2.0"}
43-
requires-python = ">=3.10"
43+
requires-python = ">=3.11"
4444

4545
[project.optional-dependencies]
4646
test = [

0 commit comments

Comments
 (0)