From 9a4ab383220eb6f9b012abddfee1ab1d13233208 Mon Sep 17 00:00:00 2001 From: Jake Awe Date: Thu, 12 Mar 2026 10:46:12 -0700 Subject: [PATCH] Update to 26.06.00 --- .github/workflows/build.yaml | 16 +++++----- .github/workflows/pr.yaml | 32 +++++++++---------- .github/workflows/test.yaml | 8 ++--- VERSION | 2 +- .../all_cuda-129_arch-aarch64.yaml | 8 ++--- .../all_cuda-129_arch-x86_64.yaml | 8 ++--- .../all_cuda-131_arch-aarch64.yaml | 8 ++--- .../all_cuda-131_arch-x86_64.yaml | 8 ++--- .../clang_tidy_cuda-129_arch-x86_64.yaml | 4 +-- .../clang_tidy_cuda-131_arch-x86_64.yaml | 4 +-- .../cpp_all_cuda-129_arch-x86_64.yaml | 4 +-- .../cpp_all_cuda-131_arch-x86_64.yaml | 4 +-- dependencies.yaml | 32 +++++++++---------- python/libnvforest/pyproject.toml | 8 ++--- python/nvforest/pyproject.toml | 12 +++---- 15 files changed, 79 insertions(+), 79 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 731d7c2..1a1febd 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -35,7 +35,7 @@ concurrency: jobs: cpp-build: secrets: inherit - uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@python-3.14 + uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@main with: build_type: ${{ inputs.build_type || 'branch' }} node_type: cpu16 @@ -46,7 +46,7 @@ jobs: python-build: needs: [cpp-build] secrets: inherit - uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@python-3.14 + uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@main with: build_type: ${{ inputs.build_type || 'branch' }} branch: ${{ inputs.branch }} @@ -64,7 +64,7 @@ jobs: arch: "amd64" branch: ${{ inputs.branch }} build_type: ${{ inputs.build_type || 'branch' }} - container_image: "rapidsai/ci-conda:26.04-latest" + container_image: "rapidsai/ci-conda:26.06-latest" date: ${{ inputs.date }} node_type: gpu-l4-latest-1 script: "ci/build_docs.sh" @@ -72,7 +72,7 @@ jobs: upload-conda: needs: [cpp-build, python-build] secrets: inherit - uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@python-3.14 + uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@main with: build_type: ${{ inputs.build_type || 'branch' }} branch: ${{ inputs.branch }} @@ -80,7 +80,7 @@ jobs: sha: ${{ inputs.sha }} wheel-build-libnvforest: secrets: inherit - uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@python-3.14 + uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@main with: build_type: ${{ inputs.build_type || 'branch' }} branch: ${{ inputs.branch }} @@ -95,7 +95,7 @@ jobs: wheel-publish-libnvforest: needs: wheel-build-libnvforest secrets: inherit - uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@python-3.14 + uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@main with: build_type: ${{ inputs.build_type || 'branch' }} branch: ${{ inputs.branch }} @@ -106,7 +106,7 @@ jobs: wheel-build-nvforest: needs: wheel-build-libnvforest secrets: inherit - uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@python-3.14 + uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@main with: build_type: ${{ inputs.build_type || 'branch' }} branch: ${{ inputs.branch }} @@ -121,7 +121,7 @@ jobs: wheel-publish-nvforest: needs: wheel-build-nvforest secrets: inherit - uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@python-3.14 + uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@main with: build_type: ${{ inputs.build_type || 'branch' }} branch: ${{ inputs.branch }} diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml index ba02448..57baf2f 100644 --- a/.github/workflows/pr.yaml +++ b/.github/workflows/pr.yaml @@ -26,7 +26,7 @@ jobs: - wheel-tests-nvforest # - devcontainer secrets: inherit - uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@python-3.14 + uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@main if: always() with: needs: ${{ toJSON(needs) }} @@ -59,7 +59,7 @@ jobs: changed-files: secrets: inherit needs: telemetry-setup - uses: rapidsai/shared-workflows/.github/workflows/changed-files.yaml@python-3.14 + uses: rapidsai/shared-workflows/.github/workflows/changed-files.yaml@main with: files_yaml: | build_docs: @@ -136,7 +136,7 @@ jobs: checks: secrets: inherit needs: telemetry-setup - uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@python-3.14 + uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@main with: enable_check_generated_files: false enable_check_version_against_tag: false # TODO: Take this out after first release @@ -145,17 +145,17 @@ jobs: clang-tidy: needs: checks secrets: inherit - uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@python-3.14 + uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@main with: build_type: pull-request node_type: "cpu8" arch: "amd64" - container_image: "rapidsai/ci-conda:26.04-latest" + container_image: "rapidsai/ci-conda:26.06-latest" script: "ci/run_clang_tidy.sh" conda-cpp-build: needs: checks secrets: inherit - uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@python-3.14 + uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@main with: build_type: pull-request node_type: cpu16 @@ -163,7 +163,7 @@ jobs: conda-cpp-tests: needs: [conda-cpp-build, changed-files] secrets: inherit - uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@python-3.14 + uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@main if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_cpp with: build_type: pull-request @@ -171,13 +171,13 @@ jobs: conda-cpp-checks: needs: conda-cpp-build secrets: inherit - uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-post-build-checks.yaml@python-3.14 + uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-post-build-checks.yaml@main with: build_type: pull-request conda-python-build: needs: conda-cpp-build secrets: inherit - uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@python-3.14 + uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@main with: build_type: pull-request script: ci/build_python.sh @@ -186,7 +186,7 @@ jobs: conda-python-tests: needs: [conda-python-build, changed-files] secrets: inherit - uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@python-3.14 + uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@main if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_python_conda with: build_type: pull-request @@ -195,18 +195,18 @@ jobs: docs-build: needs: [conda-python-build, changed-files] secrets: inherit - uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@python-3.14 + uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@main if: fromJSON(needs.changed-files.outputs.changed_file_groups).build_docs with: build_type: pull-request node_type: gpu-l4-latest-1 arch: "amd64" - container_image: "rapidsai/ci-conda:26.04-latest" + container_image: "rapidsai/ci-conda:26.06-latest" script: "ci/build_docs.sh" wheel-build-libnvforest: needs: checks secrets: inherit - uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@python-3.14 + uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@main with: build_type: pull-request branch: ${{ inputs.branch }} @@ -221,7 +221,7 @@ jobs: wheel-build-nvforest: needs: [checks, wheel-build-libnvforest] secrets: inherit - uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@python-3.14 + uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@main with: build_type: pull-request node_type: cpu8 @@ -233,7 +233,7 @@ jobs: wheel-tests-nvforest: needs: [wheel-build-nvforest, changed-files] secrets: inherit - uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@python-3.14 + uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@main if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_python_wheels with: build_type: pull-request @@ -241,7 +241,7 @@ jobs: # devcontainer: # needs: telemetry-setup # secrets: inherit - # uses: rapidsai/shared-workflows/.github/workflows/build-in-devcontainer.yaml@python-3.14 + # uses: rapidsai/shared-workflows/.github/workflows/build-in-devcontainer.yaml@main # with: # arch: '["amd64", "arm64"]' # cuda: '["13.0"]' diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 0734be7..4086bad 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -25,7 +25,7 @@ on: jobs: conda-cpp-checks: secrets: inherit - uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-post-build-checks.yaml@python-3.14 + uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-post-build-checks.yaml@main with: build_type: ${{ inputs.build_type }} branch: ${{ inputs.branch }} @@ -33,7 +33,7 @@ jobs: sha: ${{ inputs.sha }} conda-cpp-tests: secrets: inherit - uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@python-3.14 + uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@main with: build_type: ${{ inputs.build_type }} branch: ${{ inputs.branch }} @@ -42,7 +42,7 @@ jobs: sha: ${{ inputs.sha }} conda-python-tests: secrets: inherit - uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@python-3.14 + uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@main with: build_type: ${{ inputs.build_type }} branch: ${{ inputs.branch }} @@ -52,7 +52,7 @@ jobs: run_codecov: false wheel-tests-nvforest: secrets: inherit - uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@python-3.14 + uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@main with: build_type: ${{ inputs.build_type }} branch: ${{ inputs.branch }} diff --git a/VERSION b/VERSION index 0bd0e8a..cdb610a 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -26.04.00 +26.06.00 diff --git a/conda/environments/all_cuda-129_arch-aarch64.yaml b/conda/environments/all_cuda-129_arch-aarch64.yaml index 1371865..9b8bf3d 100644 --- a/conda/environments/all_cuda-129_arch-aarch64.yaml +++ b/conda/environments/all_cuda-129_arch-aarch64.yaml @@ -25,8 +25,8 @@ dependencies: - libcurand-dev - libcusolver-dev - libcusparse-dev -- libraft==26.4.*,>=0.0.0a0 -- librmm==26.4.*,>=0.0.0a0 +- libraft==26.6.*,>=0.0.0a0 +- librmm==26.6.*,>=0.0.0a0 - ninja - numpy>=1.23,<3.0a0 - numpydoc @@ -34,14 +34,14 @@ dependencies: - pandas - pre-commit - pydata-sphinx-theme -- pylibraft==26.4.*,>=0.0.0a0 +- pylibraft==26.6.*,>=0.0.0a0 - pytest - pytest-cov - pytest-xdist - python>=3.11 - rapids-build-backend>=0.4.0,<0.5.0.dev0 - rapids-logger==0.2.*,>=0.0.0a0 -- rapids-xgboost==26.4.*,>=0.0.0a0 +- rapids-xgboost==26.6.*,>=0.0.0a0 - scikit-build-core>=0.11.0 - scikit-learn>=1.5 - sphinx diff --git a/conda/environments/all_cuda-129_arch-x86_64.yaml b/conda/environments/all_cuda-129_arch-x86_64.yaml index 4e03f07..513be6f 100644 --- a/conda/environments/all_cuda-129_arch-x86_64.yaml +++ b/conda/environments/all_cuda-129_arch-x86_64.yaml @@ -25,8 +25,8 @@ dependencies: - libcurand-dev - libcusolver-dev - libcusparse-dev -- libraft==26.4.*,>=0.0.0a0 -- librmm==26.4.*,>=0.0.0a0 +- libraft==26.6.*,>=0.0.0a0 +- librmm==26.6.*,>=0.0.0a0 - ninja - numpy>=1.23,<3.0a0 - numpydoc @@ -34,14 +34,14 @@ dependencies: - pandas - pre-commit - pydata-sphinx-theme -- pylibraft==26.4.*,>=0.0.0a0 +- pylibraft==26.6.*,>=0.0.0a0 - pytest - pytest-cov - pytest-xdist - python>=3.11 - rapids-build-backend>=0.4.0,<0.5.0.dev0 - rapids-logger==0.2.*,>=0.0.0a0 -- rapids-xgboost==26.4.*,>=0.0.0a0 +- rapids-xgboost==26.6.*,>=0.0.0a0 - scikit-build-core>=0.11.0 - scikit-learn>=1.5 - sphinx diff --git a/conda/environments/all_cuda-131_arch-aarch64.yaml b/conda/environments/all_cuda-131_arch-aarch64.yaml index 7e0039c..ae69eae 100644 --- a/conda/environments/all_cuda-131_arch-aarch64.yaml +++ b/conda/environments/all_cuda-131_arch-aarch64.yaml @@ -25,8 +25,8 @@ dependencies: - libcurand-dev - libcusolver-dev - libcusparse-dev -- libraft==26.4.*,>=0.0.0a0 -- librmm==26.4.*,>=0.0.0a0 +- libraft==26.6.*,>=0.0.0a0 +- librmm==26.6.*,>=0.0.0a0 - ninja - numpy>=1.23,<3.0a0 - numpydoc @@ -34,14 +34,14 @@ dependencies: - pandas - pre-commit - pydata-sphinx-theme -- pylibraft==26.4.*,>=0.0.0a0 +- pylibraft==26.6.*,>=0.0.0a0 - pytest - pytest-cov - pytest-xdist - python>=3.11 - rapids-build-backend>=0.4.0,<0.5.0.dev0 - rapids-logger==0.2.*,>=0.0.0a0 -- rapids-xgboost==26.4.*,>=0.0.0a0 +- rapids-xgboost==26.6.*,>=0.0.0a0 - scikit-build-core>=0.11.0 - scikit-learn>=1.5 - sphinx diff --git a/conda/environments/all_cuda-131_arch-x86_64.yaml b/conda/environments/all_cuda-131_arch-x86_64.yaml index 53361da..18aecf5 100644 --- a/conda/environments/all_cuda-131_arch-x86_64.yaml +++ b/conda/environments/all_cuda-131_arch-x86_64.yaml @@ -25,8 +25,8 @@ dependencies: - libcurand-dev - libcusolver-dev - libcusparse-dev -- libraft==26.4.*,>=0.0.0a0 -- librmm==26.4.*,>=0.0.0a0 +- libraft==26.6.*,>=0.0.0a0 +- librmm==26.6.*,>=0.0.0a0 - ninja - numpy>=1.23,<3.0a0 - numpydoc @@ -34,14 +34,14 @@ dependencies: - pandas - pre-commit - pydata-sphinx-theme -- pylibraft==26.4.*,>=0.0.0a0 +- pylibraft==26.6.*,>=0.0.0a0 - pytest - pytest-cov - pytest-xdist - python>=3.11 - rapids-build-backend>=0.4.0,<0.5.0.dev0 - rapids-logger==0.2.*,>=0.0.0a0 -- rapids-xgboost==26.4.*,>=0.0.0a0 +- rapids-xgboost==26.6.*,>=0.0.0a0 - scikit-build-core>=0.11.0 - scikit-learn>=1.5 - sphinx diff --git a/conda/environments/clang_tidy_cuda-129_arch-x86_64.yaml b/conda/environments/clang_tidy_cuda-129_arch-x86_64.yaml index e41899b..401770b 100644 --- a/conda/environments/clang_tidy_cuda-129_arch-x86_64.yaml +++ b/conda/environments/clang_tidy_cuda-129_arch-x86_64.yaml @@ -20,8 +20,8 @@ dependencies: - libcurand-dev - libcusolver-dev - libcusparse-dev -- libraft-headers==26.4.*,>=0.0.0a0 -- librmm==26.4.*,>=0.0.0a0 +- libraft-headers==26.6.*,>=0.0.0a0 +- librmm==26.6.*,>=0.0.0a0 - llvm-openmp==15.0.7 - ninja - sysroot_linux-64==2.28 diff --git a/conda/environments/clang_tidy_cuda-131_arch-x86_64.yaml b/conda/environments/clang_tidy_cuda-131_arch-x86_64.yaml index 26ea655..a8bd248 100644 --- a/conda/environments/clang_tidy_cuda-131_arch-x86_64.yaml +++ b/conda/environments/clang_tidy_cuda-131_arch-x86_64.yaml @@ -20,8 +20,8 @@ dependencies: - libcurand-dev - libcusolver-dev - libcusparse-dev -- libraft-headers==26.4.*,>=0.0.0a0 -- librmm==26.4.*,>=0.0.0a0 +- libraft-headers==26.6.*,>=0.0.0a0 +- librmm==26.6.*,>=0.0.0a0 - llvm-openmp==15.0.7 - ninja - sysroot_linux-64==2.28 diff --git a/conda/environments/cpp_all_cuda-129_arch-x86_64.yaml b/conda/environments/cpp_all_cuda-129_arch-x86_64.yaml index c0ca22d..f61b49e 100644 --- a/conda/environments/cpp_all_cuda-129_arch-x86_64.yaml +++ b/conda/environments/cpp_all_cuda-129_arch-x86_64.yaml @@ -18,8 +18,8 @@ dependencies: - libcurand-dev - libcusolver-dev - libcusparse-dev -- libraft-headers==26.4.*,>=0.0.0a0 -- librmm==26.4.*,>=0.0.0a0 +- libraft-headers==26.6.*,>=0.0.0a0 +- librmm==26.6.*,>=0.0.0a0 - ninja - sysroot_linux-64==2.28 name: cpp_all_cuda-129_arch-x86_64 diff --git a/conda/environments/cpp_all_cuda-131_arch-x86_64.yaml b/conda/environments/cpp_all_cuda-131_arch-x86_64.yaml index 632cbe3..6af8b58 100644 --- a/conda/environments/cpp_all_cuda-131_arch-x86_64.yaml +++ b/conda/environments/cpp_all_cuda-131_arch-x86_64.yaml @@ -18,8 +18,8 @@ dependencies: - libcurand-dev - libcusolver-dev - libcusparse-dev -- libraft-headers==26.4.*,>=0.0.0a0 -- librmm==26.4.*,>=0.0.0a0 +- libraft-headers==26.6.*,>=0.0.0a0 +- librmm==26.6.*,>=0.0.0a0 - ninja - sysroot_linux-64==2.28 name: cpp_all_cuda-131_arch-x86_64 diff --git a/dependencies.yaml b/dependencies.yaml index 24786d8..ca58916 100644 --- a/dependencies.yaml +++ b/dependencies.yaml @@ -350,7 +350,7 @@ dependencies: common: - output_types: conda packages: - - libnvforest-tests==26.4.*,>=0.0.0a0 + - libnvforest-tests==26.6.*,>=0.0.0a0 test_cpp: common: - output_types: conda @@ -382,7 +382,7 @@ dependencies: # included in the "devcontainers" key. The libxgboost package depends # on librmm but we do not want to have a package depending on librmm # in devcontainers since it should be built from source. - - rapids-xgboost==26.4.*,>=0.0.0a0 + - rapids-xgboost==26.6.*,>=0.0.0a0 - output_types: [requirements, pyproject] packages: - xgboost>=2.1.0 @@ -402,7 +402,7 @@ dependencies: common: - output_types: conda packages: - - nvforest==26.4.*,>=0.0.0a0 + - nvforest==26.6.*,>=0.0.0a0 depends_on_cupy: common: - output_types: conda @@ -426,7 +426,7 @@ dependencies: common: - output_types: conda packages: - - &libnvforest_unsuffixed libnvforest==26.4.*,>=0.0.0a0 + - &libnvforest_unsuffixed libnvforest==26.6.*,>=0.0.0a0 - output_types: requirements packages: # pip recognizes the index as a global option for the requirements.txt file @@ -438,18 +438,18 @@ dependencies: cuda: "12.*" cuda_suffixed: "true" packages: - - libnvforest-cu12==26.4.*,>=0.0.0a0 + - libnvforest-cu12==26.6.*,>=0.0.0a0 - matrix: cuda: "13.*" cuda_suffixed: "true" packages: - - libnvforest-cu13==26.4.*,>=0.0.0a0 + - libnvforest-cu13==26.6.*,>=0.0.0a0 - {matrix: null, packages: [*libnvforest_unsuffixed]} depends_on_libraft: common: - output_types: conda packages: - - &libraft_unsuffixed libraft==26.4.*,>=0.0.0a0 + - &libraft_unsuffixed libraft==26.6.*,>=0.0.0a0 - output_types: requirements packages: # pip recognizes the index as a global option for the requirements.txt file @@ -461,23 +461,23 @@ dependencies: cuda: "12.*" cuda_suffixed: "true" packages: - - libraft-cu12==26.4.*,>=0.0.0a0 + - libraft-cu12==26.6.*,>=0.0.0a0 - matrix: cuda: "13.*" cuda_suffixed: "true" packages: - - libraft-cu13==26.4.*,>=0.0.0a0 + - libraft-cu13==26.6.*,>=0.0.0a0 - {matrix: null, packages: [*libraft_unsuffixed]} depends_on_libraft_headers: common: - output_types: conda packages: - - libraft-headers==26.4.*,>=0.0.0a0 + - libraft-headers==26.6.*,>=0.0.0a0 depends_on_librmm: common: - output_types: conda packages: - - &librmm_unsuffixed librmm==26.4.*,>=0.0.0a0 + - &librmm_unsuffixed librmm==26.6.*,>=0.0.0a0 - output_types: requirements packages: # pip recognizes the index as a global option for the requirements.txt file @@ -489,18 +489,18 @@ dependencies: cuda: "12.*" cuda_suffixed: "true" packages: - - librmm-cu12==26.4.*,>=0.0.0a0 + - librmm-cu12==26.6.*,>=0.0.0a0 - matrix: cuda: "13.*" cuda_suffixed: "true" packages: - - librmm-cu13==26.4.*,>=0.0.0a0 + - librmm-cu13==26.6.*,>=0.0.0a0 - {matrix: null, packages: [*librmm_unsuffixed]} depends_on_pylibraft: common: - output_types: conda packages: - - &pylibraft_unsuffixed pylibraft==26.4.*,>=0.0.0a0 + - &pylibraft_unsuffixed pylibraft==26.6.*,>=0.0.0a0 - output_types: requirements packages: # pip recognizes the index as a global option for the requirements.txt file @@ -512,12 +512,12 @@ dependencies: cuda: "12.*" cuda_suffixed: "true" packages: - - pylibraft-cu12==26.4.*,>=0.0.0a0 + - pylibraft-cu12==26.6.*,>=0.0.0a0 - matrix: cuda: "13.*" cuda_suffixed: "true" packages: - - pylibraft-cu13==26.4.*,>=0.0.0a0 + - pylibraft-cu13==26.6.*,>=0.0.0a0 - matrix: packages: - *pylibraft_unsuffixed diff --git a/python/libnvforest/pyproject.toml b/python/libnvforest/pyproject.toml index 3cf5b3b..9c30d12 100644 --- a/python/libnvforest/pyproject.toml +++ b/python/libnvforest/pyproject.toml @@ -26,8 +26,8 @@ classifiers = [ ] dependencies = [ "cuda-toolkit>=12,<14", - "libraft==26.4.*,>=0.0.0a0", - "librmm==26.4.*,>=0.0.0a0", + "libraft==26.6.*,>=0.0.0a0", + "librmm==26.6.*,>=0.0.0a0", "rapids-logger==0.2.*,>=0.0.0a0", ] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit ../../dependencies.yaml and run `rapids-dependency-file-generator`. @@ -65,8 +65,8 @@ dependencies-file = "../../dependencies.yaml" matrix-entry = "cuda_suffixed=true;use_cuda_wheels=true" requires = [ "cmake>=3.30.4", - "libraft==26.4.*,>=0.0.0a0", - "librmm==26.4.*,>=0.0.0a0", + "libraft==26.6.*,>=0.0.0a0", + "librmm==26.6.*,>=0.0.0a0", "ninja", "rapids-logger==0.2.*,>=0.0.0a0", ] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit ../../dependencies.yaml and run `rapids-dependency-file-generator`. diff --git a/python/nvforest/pyproject.toml b/python/nvforest/pyproject.toml index 9c24b4c..7c62a3b 100644 --- a/python/nvforest/pyproject.toml +++ b/python/nvforest/pyproject.toml @@ -30,10 +30,10 @@ dependencies = [ "cuda-python>=13.0.1,<14.0a0", "cuda-toolkit>=12,<14", "cupy-cuda13x>=13.6.0", - "libnvforest==26.4.*,>=0.0.0a0", + "libnvforest==26.6.*,>=0.0.0a0", "numpy>=1.23,<3.0a0", "packaging", - "pylibraft==26.4.*,>=0.0.0a0", + "pylibraft==26.6.*,>=0.0.0a0", "scikit-learn>=1.5", "treelite>=4.6.1,<5.0", ] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit ../../dependencies.yaml and run `rapids-dependency-file-generator`. @@ -94,11 +94,11 @@ requires = [ "cmake>=3.30.4", "cuda-python>=13.0.1,<14.0a0", "cython>=3.0.0", - "libnvforest==26.4.*,>=0.0.0a0", - "libraft==26.4.*,>=0.0.0a0", - "librmm==26.4.*,>=0.0.0a0", + "libnvforest==26.6.*,>=0.0.0a0", + "libraft==26.6.*,>=0.0.0a0", + "librmm==26.6.*,>=0.0.0a0", "ninja", - "pylibraft==26.4.*,>=0.0.0a0", + "pylibraft==26.6.*,>=0.0.0a0", "treelite>=4.6.1,<5.0", ] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit ../../dependencies.yaml and run `rapids-dependency-file-generator`.