Skip to content
This repository was archived by the owner on Jul 7, 2026. It is now read-only.
Closed
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
10 changes: 5 additions & 5 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ permissions: {}
jobs:
python-build:
secrets: inherit # zizmor: ignore[secrets-inherit]
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@main
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@cuda-13.3.0
with:
build_type: ${{ inputs.build_type || 'branch' }}
branch: ${{ inputs.branch }}
Expand All @@ -52,7 +52,7 @@ jobs:
secrets:
CONDA_RAPIDSAI_NIGHTLY_TOKEN: ${{ secrets.CONDA_RAPIDSAI_NIGHTLY_TOKEN }}
CONDA_RAPIDSAI_TOKEN: ${{ secrets.CONDA_RAPIDSAI_TOKEN }}
uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@main
uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@cuda-13.3.0
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 # zizmor: ignore[secrets-inherit]
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@main
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@cuda-13.3.0
with:
arch: "amd64"
branch: ${{ inputs.branch }}
Expand All @@ -86,7 +86,7 @@ jobs:
pull-requests: read
wheel-build:
secrets: inherit # zizmor: ignore[secrets-inherit]
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@main
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@cuda-13.3.0
with:
build_type: ${{ inputs.build_type || 'branch' }}
branch: ${{ inputs.branch }}
Expand All @@ -107,7 +107,7 @@ jobs:
secrets:
CONDA_RAPIDSAI_WHEELS_NIGHTLY_TOKEN: ${{ secrets.CONDA_RAPIDSAI_WHEELS_NIGHTLY_TOKEN }}
RAPIDSAI_PYPI_TOKEN: ${{ secrets.RAPIDSAI_PYPI_TOKEN }}
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@main
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@cuda-13.3.0
with:
build_type: ${{ inputs.build_type || 'branch' }}
branch: ${{ inputs.branch }}
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- wheel-build
- wheel-tests
- telemetry-setup
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@main
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@cuda-13.3.0
if: always()
with:
needs: ${{ toJSON(needs) }}
Expand All @@ -39,7 +39,7 @@ jobs:
uses: rapidsai/shared-actions/telemetry-dispatch-stash-base-env-vars@main
changed-files:
needs: telemetry-setup
uses: rapidsai/shared-workflows/.github/workflows/changed-files.yaml@main
uses: rapidsai/shared-workflows/.github/workflows/changed-files.yaml@cuda-13.3.0
with:
files_yaml: |
build_docs:
Expand Down Expand Up @@ -138,7 +138,7 @@ jobs:
pull-requests: read
checks:
needs: telemetry-setup
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@main
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@cuda-13.3.0
with:
ignored_pr_jobs: telemetry-summarize
permissions:
Expand All @@ -162,7 +162,7 @@ jobs:
conda-python-build:
needs: checks
secrets: inherit # zizmor: ignore[secrets-inherit]
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@main
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@cuda-13.3.0
with:
build_type: pull-request
script: ci/build_python.sh
Expand All @@ -176,7 +176,7 @@ jobs:
conda-python-tests:
needs: [conda-python-build, changed-files]
secrets: inherit # zizmor: ignore[secrets-inherit]
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@main
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@cuda-13.3.0
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_python_conda
with:
build_type: pull-request
Expand All @@ -191,7 +191,7 @@ jobs:
conda-notebook-tests:
needs: [conda-python-build, changed-files]
secrets: inherit # zizmor: ignore[secrets-inherit]
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@main
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@cuda-13.3.0
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_notebooks
with:
build_type: pull-request
Expand All @@ -208,7 +208,7 @@ jobs:
docs-build:
needs: [conda-python-build, changed-files]
secrets: inherit # zizmor: ignore[secrets-inherit]
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@main
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@cuda-13.3.0
if: fromJSON(needs.changed-files.outputs.changed_file_groups).build_docs
with:
build_type: pull-request
Expand All @@ -225,7 +225,7 @@ jobs:
wheel-build:
needs: checks
secrets: inherit # zizmor: ignore[secrets-inherit]
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@main
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@cuda-13.3.0
with:
build_type: pull-request
script: ci/build_wheel.sh
Expand All @@ -241,7 +241,7 @@ jobs:
wheel-tests:
needs: [wheel-build, changed-files]
secrets: inherit # zizmor: ignore[secrets-inherit]
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@main
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@cuda-13.3.0
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_python_wheels
with:
build_type: pull-request
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-external.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ permissions: {}
jobs:
test-external:
secrets: inherit # zizmor: ignore[secrets-inherit]
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@main
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@cuda-13.3.0
with:
build_type: branch
node_type: "gpu-l4-latest-1"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ permissions: {}
jobs:
conda-python-tests:
secrets: inherit # zizmor: ignore[secrets-inherit]
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@main
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@cuda-13.3.0
with:
build_type: ${{ inputs.build_type }}
branch: ${{ inputs.branch }}
Expand All @@ -39,7 +39,7 @@ jobs:
pull-requests: read
wheel-tests:
secrets: inherit # zizmor: ignore[secrets-inherit]
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@main
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@cuda-13.3.0
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 @@ -18,7 +18,7 @@ jobs:
if: contains(github.event.pull_request.labels.*.name, 'breaking')
permissions:
contents: read
uses: rapidsai/shared-workflows/.github/workflows/breaking-change-alert.yaml@main
uses: rapidsai/shared-workflows/.github/workflows/breaking-change-alert.yaml@cuda-13.3.0
secrets:
slack-webhook-url: ${{ secrets.NV_SLACK_BREAKING_CHANGE_NOTIFIER_APP }}
with:
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ cd $CUXFILTER_HOME
- Create the conda development environment `cuxfilter_dev`:
```bash
# create the conda environment (assuming in base `cuxfilter` directory)
conda env create --name cuxfilter_dev --file conda/environments/all_cuda-132_arch-$(uname -m).yaml
conda env create --name cuxfilter_dev --file conda/environments/all_cuda-133_arch-$(uname -m).yaml
# activate the environment
source activate cuxfilter_dev
```
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ For the nightly version of `cuxfilter`:
```bash
# CUDA 13
conda install -c rapidsai-nightly -c conda-forge \
cuxfilter=26.08 python=3.14 cuda-version=13.2
cuxfilter=26.08 python=3.14 cuda-version=13.3

# CUDA 12
conda install -c rapidsai-nightly -c conda-forge \
Expand All @@ -168,7 +168,7 @@ For the stable version of `cuxfilter`:
```bash
# CUDA 13
conda install -c rapidsai -c conda-forge \
cuxfilter python=3.14 cuda-version=13.2
cuxfilter python=3.14 cuda-version=13.3

# CUDA 12
conda install -c rapidsai -c conda-forge \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ dependencies:
- bokeh>=3.1,<=3.6.3
- bokeh_sampledata
- certifi>=2026.1.4
- cuda-version=13.2
- cuda-version=13.3
- cudf==26.8.*,>=0.0.0a0
- cugraph==26.8.*,>=0.0.0a0
- cupy>=13.6.0,!=14.0.0,!=14.1.0
Expand Down Expand Up @@ -47,4 +47,4 @@ dependencies:
- sphinx>=8.0.0,<8.2.0
- sphinx_rtd_theme
- sphinxcontrib-websupport
name: all_cuda-132_arch-aarch64
name: all_cuda-133_arch-aarch64
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ dependencies:
- bokeh>=3.1,<=3.6.3
- bokeh_sampledata
- certifi>=2026.1.4
- cuda-version=13.2
- cuda-version=13.3
- cudf==26.8.*,>=0.0.0a0
- cugraph==26.8.*,>=0.0.0a0
- cupy>=13.6.0,!=14.0.0,!=14.1.0
Expand Down Expand Up @@ -47,4 +47,4 @@ dependencies:
- sphinx>=8.0.0,<8.2.0
- sphinx_rtd_theme
- sphinxcontrib-websupport
name: all_cuda-132_arch-x86_64
name: all_cuda-133_arch-x86_64
11 changes: 10 additions & 1 deletion dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ files:
all:
output: conda
matrix:
cuda: ["12.9", "13.2"]
cuda: ["12.9", "13.3"]
arch: [x86_64, aarch64]
includes:
- build_wheels
Expand Down Expand Up @@ -129,6 +129,10 @@ dependencies:
cuda: "13.2"
packages:
- cuda-version=13.2
- matrix:
cuda: "13.3"
packages:
- cuda-version=13.3
- output_types: requirements
matrices:
# if use_cuda_wheels=false is provided, do not add dependencies on any CUDA wheels
Expand Down Expand Up @@ -179,6 +183,11 @@ dependencies:
use_cuda_wheels: "true"
packages:
- cuda-toolkit==13.2.*
- matrix:
cuda: "13.3"
use_cuda_wheels: "true"
packages:
- cuda-toolkit==13.3.*
checks:
common:
- output_types: [conda, requirements]
Expand Down
2 changes: 1 addition & 1 deletion docs/source/user_guide/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ For the most customized way of installing RAPIDS and cuxfilter, visit the select
.. code-block:: bash

# CUDA 13
conda install -c rapidsai -c conda-forge cuxfilter=26.08 cuda-version=13.2
conda install -c rapidsai -c conda-forge cuxfilter=26.08 cuda-version=13.3

# CUDA 12
conda install -c rapidsai -c conda-forge cuxfilter=26.08 cuda-version=12.9
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
"\n",
"dependencies:\n",
" - python >=3.13\n",
" - cuda-version=13.2\n",
" - cuda-version=13.3\n",
" - cudf >=26.02\n",
" - cuml >=26.02\n",
" - cugraph >=26.02\n",
Expand Down
Loading