Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
cpp-build:
needs: [telemetry-setup]
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@branch-25.06
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@python-3.13
with:
build_type: ${{ inputs.build_type || 'branch' }}
branch: ${{ inputs.branch }}
Expand All @@ -49,7 +49,7 @@ jobs:
python-build:
needs: [telemetry-setup, cpp-build]
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-25.06
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@python-3.13
with:
build_type: ${{ inputs.build_type || 'branch' }}
branch: ${{ inputs.branch }}
Expand All @@ -58,7 +58,7 @@ jobs:
upload-conda:
needs: [cpp-build, python-build]
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@branch-25.06
uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@python-3.13
with:
build_type: ${{ inputs.build_type || 'branch' }}
branch: ${{ inputs.branch }}
Expand All @@ -68,7 +68,7 @@ jobs:
if: github.ref_type == 'branch'
needs: [python-build]
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-25.06
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@python-3.13
with:
build_type: ${{ inputs.build_type || 'branch' }}
branch: ${{ inputs.branch }}
Expand All @@ -81,7 +81,7 @@ jobs:
wheel-build-cpp:
needs: [telemetry-setup]
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.06
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@python-3.13
with:
matrix_filter: group_by([.ARCH, (.CUDA_VER|split(".")|map(tonumber)|.[0])]) | map(max_by(.PY_VER|split(".")|map(tonumber)))
build_type: ${{ inputs.build_type || 'branch' }}
Expand All @@ -94,7 +94,7 @@ jobs:
wheel-build-python:
needs: [telemetry-setup, wheel-build-cpp]
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.06
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@python-3.13
with:
build_type: ${{ inputs.build_type || 'branch' }}
branch: ${{ inputs.branch }}
Expand All @@ -106,7 +106,7 @@ jobs:
wheel-publish-cpp:
needs: wheel-build-cpp
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@branch-25.06
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@python-3.13
with:
build_type: ${{ inputs.build_type || 'branch' }}
branch: ${{ inputs.branch }}
Expand All @@ -117,7 +117,7 @@ jobs:
wheel-publish-python:
needs: wheel-build-python
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@branch-25.06
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@python-3.13
with:
build_type: ${{ inputs.build_type || 'branch' }}
branch: ${{ inputs.branch }}
Expand Down
24 changes: 12 additions & 12 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- devcontainer
- telemetry-setup
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@branch-25.06
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@python-3.13
if: always()
with:
needs: ${{ toJSON(needs) }}
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:
needs:
- telemetry-setup
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/changed-files.yaml@branch-25.06
uses: rapidsai/shared-workflows/.github/workflows/changed-files.yaml@python-3.13
with:
files_yaml: |
test_cpp:
Expand All @@ -79,40 +79,40 @@ jobs:
secrets: inherit
needs:
- telemetry-setup
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@branch-25.06
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@python-3.13
with:
enable_check_generated_files: false
ignored_pr_jobs: "telemetry-summarize"
conda-cpp-build:
needs: checks
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@branch-25.06
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@python-3.13
with:
build_type: pull-request
conda-cpp-tests:
needs: [conda-cpp-build, changed-files]
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@branch-25.06
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@python-3.13
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_cpp
with:
build_type: pull-request
conda-python-build:
needs: conda-cpp-build
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-25.06
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@python-3.13
with:
build_type: pull-request
conda-python-tests:
needs: [conda-python-build, changed-files]
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-25.06
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@python-3.13
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_python
with:
build_type: pull-request
docs-build:
needs: conda-python-build
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-25.06
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@python-3.13
with:
build_type: pull-request
node_type: "gpu-l4-latest-1"
Expand All @@ -122,7 +122,7 @@ jobs:
wheel-build-cpp:
needs: checks
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.06
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@python-3.13
with:
matrix_filter: group_by([.ARCH, (.CUDA_VER|split(".")|map(tonumber)|.[0])]) | map(max_by(.PY_VER|split(".")|map(tonumber)))
build_type: pull-request
Expand All @@ -132,7 +132,7 @@ jobs:
wheel-build-python:
needs: wheel-build-cpp
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.06
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@python-3.13
with:
build_type: pull-request
script: ci/build_wheel_python.sh
Expand All @@ -141,7 +141,7 @@ jobs:
wheel-tests:
needs: [wheel-build-python, changed-files]
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-25.06
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@python-3.13
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_python
with:
build_type: pull-request
Expand All @@ -150,7 +150,7 @@ jobs:
secrets: inherit
needs:
- telemetry-setup
uses: rapidsai/shared-workflows/.github/workflows/build-in-devcontainer.yaml@branch-25.06
uses: rapidsai/shared-workflows/.github/workflows/build-in-devcontainer.yaml@python-3.13
with:
arch: '["amd64"]'
cuda: '["12.8"]'
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,23 +19,23 @@ on:
jobs:
cpp-tests:
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@branch-25.06
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@python-3.13
with:
build_type: ${{ inputs.build_type }}
branch: ${{ inputs.branch }}
date: ${{ inputs.date }}
sha: ${{ inputs.sha }}
python-tests:
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-25.06
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@python-3.13
with:
build_type: ${{ inputs.build_type }}
branch: ${{ inputs.branch }}
date: ${{ inputs.date }}
sha: ${{ inputs.sha }}
wheel-tests:
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-25.06
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@python-3.13
with:
build_type: ${{ inputs.build_type }}
branch: ${{ inputs.branch }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/trigger-breaking-change-alert.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
trigger-notifier:
if: contains(github.event.pull_request.labels.*.name, 'breaking')
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/breaking-change-alert.yaml@branch-25.06
uses: rapidsai/shared-workflows/.github/workflows/breaking-change-alert.yaml@python-3.13
with:
sender_login: ${{ github.event.sender.login }}
sender_avatar: ${{ github.event.sender.avatar_url }}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ conda install -c rapidsai -c conda-forge -c nvidia rmm cuda-version=12.8
We also provide [nightly conda packages](https://anaconda.org/rapidsai-nightly) built from the HEAD
of our latest development branch.

Note: RMM is supported only on Linux, and only tested with Python versions 3.10, 3.11, and 3.12.
Note: RMM is supported only on Linux, and only tested with Python versions 3.10, 3.11, 3.12, and 3.13.

Note: The RMM package from conda requires building with GCC 9 or later. Otherwise, your application may fail to build.

Expand Down
4 changes: 2 additions & 2 deletions conda/environments/all_cuda-118_arch-aarch64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@ dependencies:
- make
- nbsphinx
- ninja
- numba>=0.59.1,<0.61.0a0
- numba>=0.59.1,<0.62.0a0
- numpy>=1.23,<3.0a0
- numpydoc
- nvcc_linux-aarch64=11.8
- pre-commit
- pytest
- pytest-cov
- python>=3.10,<3.13
- python>=3.10,<3.14
- rapids-build-backend>=0.3.0,<0.4.0.dev0
- rapids-logger==0.1.*,>=0.0.0a0
- scikit-build-core >=0.10.0
Expand Down
4 changes: 2 additions & 2 deletions conda/environments/all_cuda-118_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@ dependencies:
- make
- nbsphinx
- ninja
- numba>=0.59.1,<0.61.0a0
- numba>=0.59.1,<0.62.0a0
- numpy>=1.23,<3.0a0
- numpydoc
- nvcc_linux-64=11.8
- pre-commit
- pytest
- pytest-cov
- python>=3.10,<3.13
- python>=3.10,<3.14
- rapids-build-backend>=0.3.0,<0.4.0.dev0
- rapids-logger==0.1.*,>=0.0.0a0
- scikit-build-core >=0.10.0
Expand Down
4 changes: 2 additions & 2 deletions conda/environments/all_cuda-128_arch-aarch64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ dependencies:
- make
- nbsphinx
- ninja
- numba>=0.59.1,<0.61.0a0
- numba>=0.59.1,<0.62.0a0
- numpy>=1.23,<3.0a0
- numpydoc
- pre-commit
- pytest
- pytest-cov
- python>=3.10,<3.13
- python>=3.10,<3.14
- rapids-build-backend>=0.3.0,<0.4.0.dev0
- rapids-logger==0.1.*,>=0.0.0a0
- scikit-build-core >=0.10.0
Expand Down
4 changes: 2 additions & 2 deletions conda/environments/all_cuda-128_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ dependencies:
- make
- nbsphinx
- ninja
- numba>=0.59.1,<0.61.0a0
- numba>=0.59.1,<0.62.0a0
- numpy>=1.23,<3.0a0
- numpydoc
- pre-commit
- pytest
- pytest-cov
- python>=3.10,<3.13
- python>=3.10,<3.14
- rapids-build-backend>=0.3.0,<0.4.0.dev0
- rapids-logger==0.1.*,>=0.0.0a0
- scikit-build-core >=0.10.0
Expand Down
10 changes: 7 additions & 3 deletions dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ dependencies:
- ipython
- make
- nbsphinx
- numba>=0.59.1,<0.61.0a0
- &numba numba>=0.59.1,<0.62.0a0
- numpydoc
# this pin can be reverted when https://github.com/spatialaudio/nbsphinx/issues/825 is resolved
- sphinx<8.2.0
Expand All @@ -332,8 +332,12 @@ dependencies:
packages:
- python=3.12
- matrix:
py: "3.13"
packages:
- python>=3.10,<3.13
- python=3.13
- matrix:
packages:
- python>=3.10,<3.14
run:
common:
- output_types: [conda, requirements, pyproject]
Expand All @@ -358,7 +362,7 @@ dependencies:
common:
- output_types: [conda, requirements, pyproject]
packages:
- numba>=0.59.1,<0.61.0a0
- *numba
- pytest
- pytest-cov
specific:
Expand Down
3 changes: 2 additions & 1 deletion python/rmm/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,12 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]

[project.optional-dependencies]
test = [
"numba>=0.59.1,<0.61.0a0",
"numba>=0.59.1,<0.62.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