diff --git a/.devcontainer/cuda12.9-conda/devcontainer.json b/.devcontainer/cuda12.9-conda/devcontainer.json
index f8b45da624..bd968d08ed 100644
--- a/.devcontainer/cuda12.9-conda/devcontainer.json
+++ b/.devcontainer/cuda12.9-conda/devcontainer.json
@@ -5,19 +5,19 @@
"args": {
"CUDA": "12.9",
"PYTHON_PACKAGE_MANAGER": "conda",
- "BASE": "rapidsai/devcontainers:26.04-cpp-mambaforge"
+ "BASE": "rapidsai/devcontainers:26.06-cpp-mambaforge"
}
},
"runArgs": [
"--rm",
"--name",
- "${localEnv:USER:anon}-rapids-${localWorkspaceFolderBasename}-26.04-cuda12.9-conda",
+ "${localEnv:USER:anon}-rapids-${localWorkspaceFolderBasename}-26.06-cuda12.9-conda",
"--ulimit",
"nofile=500000"
],
"hostRequirements": {"gpu": "optional"},
"features": {
- "ghcr.io/rapidsai/devcontainers/features/rapids-build-utils:26.4": {}
+ "ghcr.io/rapidsai/devcontainers/features/rapids-build-utils:26.6": {}
},
"overrideFeatureInstallOrder": [
"ghcr.io/rapidsai/devcontainers/features/rapids-build-utils"
diff --git a/.devcontainer/cuda12.9-pip/devcontainer.json b/.devcontainer/cuda12.9-pip/devcontainer.json
index 57c042a9a6..bfecbce661 100644
--- a/.devcontainer/cuda12.9-pip/devcontainer.json
+++ b/.devcontainer/cuda12.9-pip/devcontainer.json
@@ -5,19 +5,19 @@
"args": {
"CUDA": "12.9",
"PYTHON_PACKAGE_MANAGER": "pip",
- "BASE": "rapidsai/devcontainers:26.04-cpp-cuda12.9"
+ "BASE": "rapidsai/devcontainers:26.06-cpp-cuda12.9"
}
},
"runArgs": [
"--rm",
"--name",
- "${localEnv:USER:anon}-rapids-${localWorkspaceFolderBasename}-26.04-cuda12.9-pip",
+ "${localEnv:USER:anon}-rapids-${localWorkspaceFolderBasename}-26.06-cuda12.9-pip",
"--ulimit",
"nofile=500000"
],
"hostRequirements": {"gpu": "optional"},
"features": {
- "ghcr.io/rapidsai/devcontainers/features/rapids-build-utils:26.4": {}
+ "ghcr.io/rapidsai/devcontainers/features/rapids-build-utils:26.6": {}
},
"overrideFeatureInstallOrder": [
"ghcr.io/rapidsai/devcontainers/features/rapids-build-utils"
diff --git a/.devcontainer/cuda13.1-conda/devcontainer.json b/.devcontainer/cuda13.1-conda/devcontainer.json
index 7e95caf1df..e41377f5ba 100644
--- a/.devcontainer/cuda13.1-conda/devcontainer.json
+++ b/.devcontainer/cuda13.1-conda/devcontainer.json
@@ -5,19 +5,19 @@
"args": {
"CUDA": "13.1",
"PYTHON_PACKAGE_MANAGER": "conda",
- "BASE": "rapidsai/devcontainers:26.04-cpp-mambaforge"
+ "BASE": "rapidsai/devcontainers:26.06-cpp-mambaforge"
}
},
"runArgs": [
"--rm",
"--name",
- "${localEnv:USER:anon}-rapids-${localWorkspaceFolderBasename}-26.04-cuda13.1-conda",
+ "${localEnv:USER:anon}-rapids-${localWorkspaceFolderBasename}-26.06-cuda13.1-conda",
"--ulimit",
"nofile=500000"
],
"hostRequirements": {"gpu": "optional"},
"features": {
- "ghcr.io/rapidsai/devcontainers/features/rapids-build-utils:26.4": {}
+ "ghcr.io/rapidsai/devcontainers/features/rapids-build-utils:26.6": {}
},
"overrideFeatureInstallOrder": [
"ghcr.io/rapidsai/devcontainers/features/rapids-build-utils"
diff --git a/.devcontainer/cuda13.1-pip/devcontainer.json b/.devcontainer/cuda13.1-pip/devcontainer.json
index 700ec28d56..b8827f91dc 100644
--- a/.devcontainer/cuda13.1-pip/devcontainer.json
+++ b/.devcontainer/cuda13.1-pip/devcontainer.json
@@ -5,19 +5,19 @@
"args": {
"CUDA": "13.1",
"PYTHON_PACKAGE_MANAGER": "pip",
- "BASE": "rapidsai/devcontainers:26.04-cpp-cuda13.1"
+ "BASE": "rapidsai/devcontainers:26.06-cpp-cuda13.1"
}
},
"runArgs": [
"--rm",
"--name",
- "${localEnv:USER:anon}-rapids-${localWorkspaceFolderBasename}-26.04-cuda13.1-pip",
+ "${localEnv:USER:anon}-rapids-${localWorkspaceFolderBasename}-26.06-cuda13.1-pip",
"--ulimit",
"nofile=500000"
],
"hostRequirements": {"gpu": "optional"},
"features": {
- "ghcr.io/rapidsai/devcontainers/features/rapids-build-utils:26.4": {}
+ "ghcr.io/rapidsai/devcontainers/features/rapids-build-utils:26.6": {}
},
"overrideFeatureInstallOrder": [
"ghcr.io/rapidsai/devcontainers/features/rapids-build-utils"
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index 3b610e849b..9109b47415 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' }}
branch: ${{ inputs.branch }}
@@ -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 }}
@@ -58,7 +58,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 }}
@@ -68,19 +68,19 @@ jobs:
if: github.ref_type == 'branch'
needs: python-build
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:
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"
sha: ${{ inputs.sha }}
wheel-build-cpp:
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:
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' }}
@@ -94,7 +94,7 @@ jobs:
wheel-build-python:
needs: wheel-build-cpp
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 }}
@@ -109,7 +109,7 @@ jobs:
wheel-publish-cpp:
needs: wheel-build-cpp
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 }}
@@ -120,7 +120,7 @@ jobs:
wheel-publish-python:
needs: wheel-build-python
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 a64b9cc5a8..781e4603ef 100644
--- a/.github/workflows/pr.yaml
+++ b/.github/workflows/pr.yaml
@@ -27,7 +27,7 @@ jobs:
- wheel-python-tests
- telemetry-setup
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) }}
@@ -49,7 +49,7 @@ jobs:
target-branch: ${{ fromJSON(steps.get-pr-info.outputs.pr-info).base.ref }}
changed-files:
secrets: inherit
- 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:
@@ -167,13 +167,13 @@ 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:
ignored_pr_jobs: telemetry-summarize
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: cpu8
@@ -181,7 +181,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
@@ -189,17 +189,17 @@ jobs:
conda-java-tests:
needs: conda-cpp-build
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: "gpu-l4-latest-1"
arch: "amd64"
- container_image: "rapidsai/ci-conda:26.04-latest"
+ container_image: "rapidsai/ci-conda:26.06-latest"
script: "ci/test_java.sh"
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
@@ -208,7 +208,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
@@ -216,18 +216,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"
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.1"]'
@@ -243,7 +243,7 @@ jobs:
sccache --show-adv-stats | tee telemetry-artifacts/sccache-stats.txt;
wheel-cpp-build:
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:
matrix_filter: group_by([.ARCH, (.CUDA_VER|split(".")|map(tonumber)|.[0])]) | map(max_by(.PY_VER|split(".")|map(tonumber)))
build_type: pull-request
@@ -254,7 +254,7 @@ jobs:
wheel-python-build:
needs: wheel-cpp-build
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
@@ -266,7 +266,7 @@ jobs:
wheel-python-tests:
needs: [wheel-python-build, 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
diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml
index 3ae6202923..f2ebf622f7 100644
--- a/.github/workflows/test.yaml
+++ b/.github/workflows/test.yaml
@@ -25,7 +25,7 @@ on:
jobs:
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 }}
@@ -34,7 +34,7 @@ jobs:
sha: ${{ inputs.sha }}
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 }}
@@ -43,7 +43,7 @@ jobs:
sha: ${{ inputs.sha }}
conda-java-tests:
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: ${{ inputs.build_type }}
branch: ${{ inputs.branch }}
@@ -51,5 +51,5 @@ jobs:
sha: ${{ inputs.sha }}
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/test_java.sh"
diff --git a/.github/workflows/trigger-breaking-change-alert.yaml b/.github/workflows/trigger-breaking-change-alert.yaml
index 680142fe32..c471e2a151 100644
--- a/.github/workflows/trigger-breaking-change-alert.yaml
+++ b/.github/workflows/trigger-breaking-change-alert.yaml
@@ -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@python-3.14
+ uses: rapidsai/shared-workflows/.github/workflows/breaking-change-alert.yaml@main
with:
sender_login: ${{ github.event.sender.login }}
sender_avatar: ${{ github.event.sender.avatar_url }}
diff --git a/VERSION b/VERSION
index 0bd0e8a95b..cdb610a24d 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 ae06b6095c..3e1c5b8d04 100644
--- a/conda/environments/all_cuda-129_arch-aarch64.yaml
+++ b/conda/environments/all_cuda-129_arch-aarch64.yaml
@@ -32,7 +32,7 @@ dependencies:
- python>=3.11
- rangehttpserver
- rapids-build-backend>=0.4.0,<0.5.0
-- rapids-dask-dependency==26.4.*,>=0.0.0a0
+- rapids-dask-dependency==26.6.*,>=0.0.0a0
- scikit-build-core>=0.11.0
- sphinx
- sphinx-click
diff --git a/conda/environments/all_cuda-129_arch-x86_64.yaml b/conda/environments/all_cuda-129_arch-x86_64.yaml
index 897c7fbc09..146be4a562 100644
--- a/conda/environments/all_cuda-129_arch-x86_64.yaml
+++ b/conda/environments/all_cuda-129_arch-x86_64.yaml
@@ -32,7 +32,7 @@ dependencies:
- python>=3.11
- rangehttpserver
- rapids-build-backend>=0.4.0,<0.5.0
-- rapids-dask-dependency==26.4.*,>=0.0.0a0
+- rapids-dask-dependency==26.6.*,>=0.0.0a0
- scikit-build-core>=0.11.0
- sphinx
- sphinx-click
diff --git a/conda/environments/all_cuda-131_arch-aarch64.yaml b/conda/environments/all_cuda-131_arch-aarch64.yaml
index ef01e0ac1e..e642475aac 100644
--- a/conda/environments/all_cuda-131_arch-aarch64.yaml
+++ b/conda/environments/all_cuda-131_arch-aarch64.yaml
@@ -32,7 +32,7 @@ dependencies:
- python>=3.11
- rangehttpserver
- rapids-build-backend>=0.4.0,<0.5.0
-- rapids-dask-dependency==26.4.*,>=0.0.0a0
+- rapids-dask-dependency==26.6.*,>=0.0.0a0
- scikit-build-core>=0.11.0
- sphinx
- sphinx-click
diff --git a/conda/environments/all_cuda-131_arch-x86_64.yaml b/conda/environments/all_cuda-131_arch-x86_64.yaml
index 01d14113f5..51e097c2fb 100644
--- a/conda/environments/all_cuda-131_arch-x86_64.yaml
+++ b/conda/environments/all_cuda-131_arch-x86_64.yaml
@@ -32,7 +32,7 @@ dependencies:
- python>=3.11
- rangehttpserver
- rapids-build-backend>=0.4.0,<0.5.0
-- rapids-dask-dependency==26.4.*,>=0.0.0a0
+- rapids-dask-dependency==26.6.*,>=0.0.0a0
- scikit-build-core>=0.11.0
- sphinx
- sphinx-click
diff --git a/cpp/examples/downstream/cmake/get_kvikio.cmake b/cpp/examples/downstream/cmake/get_kvikio.cmake
index 9183e7f719..4837aac087 100644
--- a/cpp/examples/downstream/cmake/get_kvikio.cmake
+++ b/cpp/examples/downstream/cmake/get_kvikio.cmake
@@ -25,4 +25,4 @@ function(find_and_configure_kvikio MIN_VERSION)
endfunction()
# rapids-pre-commit-hooks: disable-next-line[verify-hardcoded-version]
-find_and_configure_kvikio("26.04")
+find_and_configure_kvikio("26.06")
diff --git a/dependencies.yaml b/dependencies.yaml
index 26a226dc79..0573f3d211 100644
--- a/dependencies.yaml
+++ b/dependencies.yaml
@@ -151,7 +151,7 @@ dependencies:
common:
- output_types: conda
packages: &libkvikio_packages
- - libkvikio==26.4.*,>=0.0.0a0
+ - libkvikio==26.6.*,>=0.0.0a0
specific:
- output_types: [requirements, pyproject]
matrices:
@@ -159,12 +159,12 @@ dependencies:
cuda: "12.*"
cuda_suffixed: "true"
packages:
- - libkvikio-cu12==26.4.*,>=0.0.0a0
+ - libkvikio-cu12==26.6.*,>=0.0.0a0
- matrix:
cuda: "13.*"
cuda_suffixed: "true"
packages:
- - libkvikio-cu13==26.4.*,>=0.0.0a0
+ - libkvikio-cu13==26.6.*,>=0.0.0a0
- {matrix: null, packages: *libkvikio_packages}
build-py-wrapper:
common:
@@ -233,7 +233,7 @@ dependencies:
common:
- output_types: conda
packages:
- - &libkvikio_unsuffixed libkvikio==26.4.*,>=0.0.0a0
+ - &libkvikio_unsuffixed libkvikio==26.6.*,>=0.0.0a0
- output_types: requirements
packages:
# pip recognizes the index as a global option for the requirements.txt file
@@ -245,12 +245,12 @@ dependencies:
cuda: "12.*"
cuda_suffixed: "true"
packages:
- - libkvikio-cu12==26.4.*,>=0.0.0a0
+ - libkvikio-cu12==26.6.*,>=0.0.0a0
- matrix:
cuda: "13.*"
cuda_suffixed: "true"
packages:
- - libkvikio-cu13==26.4.*,>=0.0.0a0
+ - libkvikio-cu13==26.6.*,>=0.0.0a0
- {matrix: null, packages: [*libkvikio_unsuffixed]}
docs:
common:
@@ -313,14 +313,14 @@ dependencies:
common:
- output_types: conda
packages:
- - libkvikio==26.4.*,>=0.0.0a0
- - libkvikio-tests==26.4.*,>=0.0.0a0
+ - libkvikio==26.6.*,>=0.0.0a0
+ - libkvikio-tests==26.6.*,>=0.0.0a0
test_kvikio:
common:
- output_types: conda
packages:
- - libkvikio==26.4.*,>=0.0.0a0
- - kvikio==26.4.*,>=0.0.0a0
+ - libkvikio==26.6.*,>=0.0.0a0
+ - kvikio==26.6.*,>=0.0.0a0
test_cpp:
common:
- output_types: conda
@@ -330,7 +330,7 @@ dependencies:
common:
- output_types: [conda, requirements, pyproject]
packages:
- - rapids-dask-dependency==26.4.*,>=0.0.0a0
+ - rapids-dask-dependency==26.6.*,>=0.0.0a0
- pytest
- pytest-asyncio
- pytest-cov
diff --git a/java/pom.xml b/java/pom.xml
index 3d157f7b0e..e06b1b078c 100644
--- a/java/pom.xml
+++ b/java/pom.xml
@@ -10,7 +10,7 @@ SPDX-License-Identifier: Apache-2.0
ai.rapids.kvikio
cufile
- 26.04.0-SNAPSHOT
+ 26.06.0-SNAPSHOT
cuFile
diff --git a/python/kvikio/pyproject.toml b/python/kvikio/pyproject.toml
index c75ec959cb..6d3f6b3770 100644
--- a/python/kvikio/pyproject.toml
+++ b/python/kvikio/pyproject.toml
@@ -20,7 +20,7 @@ license = "Apache-2.0"
requires-python = ">=3.11"
dependencies = [
"cupy-cuda13x>=13.6.0",
- "libkvikio==26.4.*,>=0.0.0a0",
+ "libkvikio==26.6.*,>=0.0.0a0",
"numpy>=1.23,<3.0",
"packaging",
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit ../../dependencies.yaml and run `rapids-dependency-file-generator`.
@@ -45,7 +45,7 @@ test = [
"pytest-cov",
"pytest-timeout",
"rangehttpserver",
- "rapids-dask-dependency==26.4.*,>=0.0.0a0",
+ "rapids-dask-dependency==26.6.*,>=0.0.0a0",
"zarr>=3.0.0,<3.2.0,<4.0.0; python_version >= '3.11'",
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit ../../dependencies.yaml and run `rapids-dependency-file-generator`.
zarr = [
@@ -98,7 +98,7 @@ matrix-entry = "cuda_suffixed=true;use_cuda_wheels=true"
requires = [
"cmake>=3.30.4",
"cython>=3.2.2",
- "libkvikio==26.4.*,>=0.0.0a0",
+ "libkvikio==26.6.*,>=0.0.0a0",
"ninja",
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit ../../dependencies.yaml and run `rapids-dependency-file-generator`.