Skip to content

Commit 917a59c

Browse files
Merge branch 'branch-0.42' into update_ser
2 parents 43c12b3 + d5e2ae5 commit 917a59c

9 files changed

+45
-18
lines changed

.github/copy-pr-bot.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
# https://docs.gha-runners.nvidia.com/apps/copy-pr-bot/
33

44
enabled: true
5+
auto_sync_draft: false

.github/workflows/build.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ concurrency:
2828
jobs:
2929
conda-python-build:
3030
secrets: inherit
31-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-24.12
31+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-25.02
3232
with:
3333
build_type: ${{ inputs.build_type || 'branch' }}
3434
branch: ${{ inputs.branch }}
@@ -37,15 +37,15 @@ jobs:
3737
upload-conda:
3838
needs: [conda-python-build]
3939
secrets: inherit
40-
uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@branch-24.12
40+
uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@branch-25.02
4141
with:
4242
build_type: ${{ inputs.build_type || 'branch' }}
4343
branch: ${{ inputs.branch }}
4444
date: ${{ inputs.date }}
4545
sha: ${{ inputs.sha }}
4646
wheel-build:
4747
secrets: inherit
48-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-24.12
48+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.02
4949
with:
5050
build_type: ${{ inputs.build_type || 'branch' }}
5151
branch: ${{ inputs.branch }}
@@ -55,7 +55,7 @@ jobs:
5555
wheel-publish:
5656
needs: wheel-build
5757
secrets: inherit
58-
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@branch-24.12
58+
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@branch-25.02
5959
with:
6060
build_type: ${{ inputs.build_type || 'branch' }}
6161
branch: ${{ inputs.branch }}

.github/workflows/pr.yaml

+6-6
Original file line numberDiff line numberDiff line change
@@ -18,34 +18,34 @@ jobs:
1818
- wheel-build
1919
- wheel-tests
2020
secrets: inherit
21-
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@branch-24.12
21+
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@branch-25.02
2222
checks:
2323
secrets: inherit
24-
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@branch-24.12
24+
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@branch-25.02
2525
conda-python-build:
2626
needs: checks
2727
secrets: inherit
28-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-24.12
28+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-25.02
2929
with:
3030
build_type: pull-request
3131
conda-python-tests:
3232
needs: conda-python-build
3333
secrets: inherit
34-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-24.12
34+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-25.02
3535
with:
3636
build_type: pull-request
3737
container-options: "--cap-add CAP_SYS_PTRACE --shm-size=8g --ulimit=nofile=1000000:1000000"
3838
wheel-build:
3939
needs: checks
4040
secrets: inherit
41-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-24.12
41+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.02
4242
with:
4343
build_type: pull-request
4444
script: ci/build_wheel.sh
4545
wheel-tests:
4646
needs: wheel-build
4747
secrets: inherit
48-
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-24.12
48+
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-25.02
4949
with:
5050
build_type: pull-request
5151
script: ci/test_wheel.sh

.github/workflows/test.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ on:
1616
jobs:
1717
conda-python-tests:
1818
secrets: inherit
19-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-24.12
19+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-25.02
2020
with:
2121
build_type: nightly
2222
branch: ${{ inputs.branch }}
@@ -25,7 +25,7 @@ jobs:
2525
container-options: "--cap-add CAP_SYS_PTRACE --shm-size=8g --ulimit=nofile=1000000:1000000"
2626
wheel-tests:
2727
secrets: inherit
28-
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-24.12
28+
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-25.02
2929
with:
3030
build_type: nightly
3131
branch: ${{ inputs.branch }}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Trigger Breaking Change Notifications
2+
3+
on:
4+
pull_request_target:
5+
types:
6+
- closed
7+
- reopened
8+
- labeled
9+
- unlabeled
10+
11+
jobs:
12+
trigger-notifier:
13+
if: contains(github.event.pull_request.labels.*.name, 'breaking')
14+
secrets: inherit
15+
uses: rapidsai/shared-workflows/.github/workflows/[email protected]
16+
with:
17+
sender_login: ${{ github.event.sender.login }}
18+
sender_avatar: ${{ github.event.sender.avatar_url }}
19+
repo: ${{ github.repository }}
20+
pr_number: ${{ github.event.pull_request.number }}
21+
pr_title: "${{ github.event.pull_request.title }}"
22+
pr_body: "${{ github.event.pull_request.body || '_Empty PR description_' }}"
23+
pr_base_ref: ${{ github.event.pull_request.base.ref }}
24+
pr_author: ${{ github.event.pull_request.user.login }}
25+
event_action: ${{ github.event.action }}
26+
pr_merged: ${{ github.event.pull_request.merged }}

.pre-commit-config.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ repos:
2525
- id: verify-alpha-spec
2626
args:
2727
- --fix
28-
- --rapids-version=24.12
28+
- --rapids-version=25.02
2929
- repo: https://github.com/rapidsai/dependency-file-generator
3030
rev: v1.16.0
3131
hooks:

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.41.0
1+
0.42.0

dependencies.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -225,20 +225,20 @@ dependencies:
225225
- pytest-rerunfailures
226226
- output_types: [conda]
227227
packages:
228-
- &cudf_unsuffixed cudf==24.12.*,>=0.0.0a0
228+
- &cudf_unsuffixed cudf==25.2.*,>=0.0.0a0
229229
specific:
230230
- output_types: [requirements, pyproject]
231231
matrices:
232232
- matrix:
233233
cuda: "12.*"
234234
cuda_suffixed: "true"
235235
packages:
236-
- cudf-cu12==24.12.*,>=0.0.0a0
236+
- cudf-cu12==25.2.*,>=0.0.0a0
237237
- matrix:
238238
cuda: "11.*"
239239
cuda_suffixed: "true"
240240
packages:
241-
- cudf-cu11==24.12.*,>=0.0.0a0
241+
- cudf-cu11==25.2.*,>=0.0.0a0
242242
- matrix:
243243
packages:
244244
- *cudf_unsuffixed

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ classifiers = [
4848
[project.optional-dependencies]
4949
test = [
5050
"cloudpickle",
51-
"cudf==24.12.*,>=0.0.0a0",
51+
"cudf==25.2.*,>=0.0.0a0",
5252
"cupy-cuda12x>=12.0.0",
5353
"dask",
5454
"distributed",

0 commit comments

Comments
 (0)