From 15af5f020c00441c5f54d1203a964cd78b9c5ebc Mon Sep 17 00:00:00 2001 From: Ray Douglass Date: Fri, 15 Nov 2024 09:32:35 -0500 Subject: [PATCH] DOC v25.02 Updates [skip ci] --- .github/workflows/build.yaml | 10 ++++---- .github/workflows/pr.yaml | 18 +++++++------- .github/workflows/test-external.yaml | 2 +- .github/workflows/test.yaml | 4 ++-- README.md | 4 ++-- VERSION | 2 +- .../all_cuda-118_arch-x86_64.yaml | 10 ++++---- .../all_cuda-125_arch-x86_64.yaml | 10 ++++---- dependencies.yaml | 24 +++++++++---------- docs/source/user_guide/installation.rst | 4 ++-- python/pyproject.toml | 6 ++--- 11 files changed, 47 insertions(+), 47 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 8aa723d2..7d20a9bf 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -28,7 +28,7 @@ concurrency: jobs: python-build: secrets: inherit - uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-24.12 + uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-25.02 with: build_type: ${{ inputs.build_type || 'branch' }} branch: ${{ inputs.branch }} @@ -37,7 +37,7 @@ jobs: upload-conda: needs: [python-build] secrets: inherit - uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@branch-24.12 + uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@branch-25.02 with: build_type: ${{ inputs.build_type || 'branch' }} branch: ${{ inputs.branch }} @@ -47,7 +47,7 @@ jobs: if: github.ref_type == 'branch' needs: python-build secrets: inherit - uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-24.12 + uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-25.02 with: arch: "amd64" branch: ${{ inputs.branch }} @@ -59,7 +59,7 @@ jobs: sha: ${{ inputs.sha }} wheel-build: secrets: inherit - uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-24.12 + uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.02 with: build_type: ${{ inputs.build_type || 'branch' }} branch: ${{ inputs.branch }} @@ -71,7 +71,7 @@ jobs: wheel-publish: needs: wheel-build secrets: inherit - uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@branch-24.12 + uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@branch-25.02 with: build_type: ${{ inputs.build_type || 'branch' }} branch: ${{ inputs.branch }} diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml index 04d8bf9d..8736c532 100644 --- a/.github/workflows/pr.yaml +++ b/.github/workflows/pr.yaml @@ -21,13 +21,13 @@ jobs: - wheel-build - wheel-tests secrets: inherit - uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@branch-24.12 + uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@branch-25.02 if: always() with: needs: ${{ toJSON(needs) }} changed-files: secrets: inherit - uses: rapidsai/shared-workflows/.github/workflows/changed-files.yaml@branch-24.12 + uses: rapidsai/shared-workflows/.github/workflows/changed-files.yaml@branch-25.02 with: files_yaml: | test_notebooks: @@ -46,17 +46,17 @@ jobs: - '!notebooks/**' checks: secrets: inherit - uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@branch-24.12 + uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@branch-25.02 conda-python-build: needs: checks secrets: inherit - uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-24.12 + uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-25.02 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-24.12 + uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-25.02 if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_python with: build_type: pull-request @@ -64,7 +64,7 @@ jobs: conda-notebook-tests: needs: [conda-python-build, changed-files] secrets: inherit - uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-24.12 + uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-25.02 if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_notebooks with: build_type: pull-request @@ -75,7 +75,7 @@ jobs: docs-build: needs: conda-python-build secrets: inherit - uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-24.12 + uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-25.02 with: build_type: pull-request node_type: "gpu-v100-latest-1" @@ -85,7 +85,7 @@ jobs: wheel-build: needs: checks secrets: inherit - uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-24.12 + uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.02 with: build_type: pull-request script: ci/build_wheel.sh @@ -94,7 +94,7 @@ jobs: wheel-tests: needs: [wheel-build, changed-files] secrets: inherit - uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-24.12 + uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-25.02 if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_python with: build_type: pull-request diff --git a/.github/workflows/test-external.yaml b/.github/workflows/test-external.yaml index 67567296..a766fe86 100644 --- a/.github/workflows/test-external.yaml +++ b/.github/workflows/test-external.yaml @@ -23,7 +23,7 @@ on: jobs: test-external: secrets: inherit - uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-24.12 + uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-25.02 with: build_type: branch node_type: "gpu-v100-latest-1" diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index cd423859..0cf004c9 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -16,7 +16,7 @@ on: jobs: conda-python-tests: secrets: inherit - uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-24.12 + uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-25.02 with: build_type: nightly branch: ${{ inputs.branch }} @@ -24,7 +24,7 @@ jobs: sha: ${{ inputs.sha }} wheel-tests: secrets: inherit - uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-24.12 + uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-25.02 with: build_type: nightly branch: ${{ inputs.branch }} diff --git a/README.md b/README.md index 9220fc20..816dbbfe 100644 --- a/README.md +++ b/README.md @@ -156,11 +156,11 @@ For the nightly version of `cuxfilter`: ```bash # for CUDA 12.5 conda install -c rapidsai-nightly -c conda-forge -c nvidia \ - cuxfilter=24.12 python=3.12 cuda-version=12.5 + cuxfilter=25.02 python=3.12 cuda-version=12.5 # for CUDA 11.8 conda install -c rapidsai-nightly -c conda-forge -c nvidia \ - cuxfilter=24.12 python=3.12 cuda-version=11.8 + cuxfilter=25.02 python=3.12 cuda-version=11.8 ``` For the stable version of `cuxfilter`: diff --git a/VERSION b/VERSION index af28c42b..72eefaf7 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -24.12.00 +25.02.00 diff --git a/conda/environments/all_cuda-118_arch-x86_64.yaml b/conda/environments/all_cuda-118_arch-x86_64.yaml index 050d8e2e..539747eb 100644 --- a/conda/environments/all_cuda-118_arch-x86_64.yaml +++ b/conda/environments/all_cuda-118_arch-x86_64.yaml @@ -10,12 +10,12 @@ dependencies: - bokeh_sampledata - cuda-version=11.8 - cudatoolkit -- cudf==24.12.*,>=0.0.0a0 -- cugraph==24.12.*,>=0.0.0a0 +- cudf==25.2.*,>=0.0.0a0 +- cugraph==25.2.*,>=0.0.0a0 - cupy>=12.0.0 -- cuspatial==24.12.*,>=0.0.0a0 -- dask-cuda==24.12.*,>=0.0.0a0 -- dask-cudf==24.12.*,>=0.0.0a0 +- cuspatial==25.2.*,>=0.0.0a0 +- dask-cuda==25.2.*,>=0.0.0a0 +- dask-cudf==25.2.*,>=0.0.0a0 - datashader>=0.15 - geopandas>=0.11.0 - holoviews>=1.16.0 diff --git a/conda/environments/all_cuda-125_arch-x86_64.yaml b/conda/environments/all_cuda-125_arch-x86_64.yaml index 6f5ca234..76f0e4e0 100644 --- a/conda/environments/all_cuda-125_arch-x86_64.yaml +++ b/conda/environments/all_cuda-125_arch-x86_64.yaml @@ -9,12 +9,12 @@ dependencies: - bokeh>=3.1 - bokeh_sampledata - cuda-version=12.5 -- cudf==24.12.*,>=0.0.0a0 -- cugraph==24.12.*,>=0.0.0a0 +- cudf==25.2.*,>=0.0.0a0 +- cugraph==25.2.*,>=0.0.0a0 - cupy>=12.0.0 -- cuspatial==24.12.*,>=0.0.0a0 -- dask-cuda==24.12.*,>=0.0.0a0 -- dask-cudf==24.12.*,>=0.0.0a0 +- cuspatial==25.2.*,>=0.0.0a0 +- dask-cuda==25.2.*,>=0.0.0a0 +- dask-cudf==25.2.*,>=0.0.0a0 - datashader>=0.15 - geopandas>=0.11.0 - holoviews>=1.16.0 diff --git a/dependencies.yaml b/dependencies.yaml index 5feed7bd..7ef50f28 100644 --- a/dependencies.yaml +++ b/dependencies.yaml @@ -159,8 +159,8 @@ dependencies: - notebook>=0.5.0 - output_types: [conda] packages: - - cugraph==24.12.*,>=0.0.0a0 - - dask-cuda==24.12.*,>=0.0.0a0 + - cugraph==25.2.*,>=0.0.0a0 + - dask-cuda==25.2.*,>=0.0.0a0 py_version: specific: - output_types: conda @@ -201,10 +201,10 @@ dependencies: - panel>=1.0 - output_types: conda packages: - - &cudf_unsuffixed cudf==24.12.*,>=0.0.0a0 + - &cudf_unsuffixed cudf==25.2.*,>=0.0.0a0 - cupy>=12.0.0 - - &cuspatial_unsuffixed cuspatial==24.12.*,>=0.0.0a0 - - &dask_cudf_unsuffixed dask-cudf==24.12.*,>=0.0.0a0 + - &cuspatial_unsuffixed cuspatial==25.2.*,>=0.0.0a0 + - &dask_cudf_unsuffixed dask-cudf==25.2.*,>=0.0.0a0 - nodejs>=18 - libwebp-base specific: @@ -214,10 +214,10 @@ dependencies: cuda: "12.*" cuda_suffixed: "true" packages: - - cudf-cu12==24.12.*,>=0.0.0a0 + - cudf-cu12==25.2.*,>=0.0.0a0 - &cupy_cu12 cupy-cuda12x>=12.0.0 - - cuspatial-cu12==24.12.*,>=0.0.0a0 - - dask-cudf-cu12==24.12.*,>=0.0.0a0 + - cuspatial-cu12==25.2.*,>=0.0.0a0 + - dask-cudf-cu12==25.2.*,>=0.0.0a0 - matrix: cuda: "12.*" cuda_suffixed: "false" @@ -232,10 +232,10 @@ dependencies: cuda: "11.*" cuda_suffixed: "true" packages: - - cudf-cu11==24.12.*,>=0.0.0a0 + - cudf-cu11==25.2.*,>=0.0.0a0 - &cupy_cu11 cupy-cuda11x>=12.0.0 - - cuspatial-cu11==24.12.*,>=0.0.0a0 - - dask-cudf-cu11==24.12.*,>=0.0.0a0 + - cuspatial-cu11==25.2.*,>=0.0.0a0 + - dask-cudf-cu11==25.2.*,>=0.0.0a0 - matrix: cuda: "11.*" cuda_suffixed: "false" @@ -269,7 +269,7 @@ dependencies: - cupy>=12.0.0 - *cuspatial_unsuffixed - *dask_cudf_unsuffixed - - cuxfilter==24.12.*,>=0.0.0a0 + - cuxfilter==25.2.*,>=0.0.0a0 - python>=3.10,<3.13 - pytest-benchmark - pytest-xdist diff --git a/docs/source/user_guide/installation.rst b/docs/source/user_guide/installation.rst index 6af07c8b..4ae3cfc6 100644 --- a/docs/source/user_guide/installation.rst +++ b/docs/source/user_guide/installation.rst @@ -9,11 +9,11 @@ For the most customized way of installing RAPIDS and cuxfilter, visit the select # for CUDA 12.5 conda install -c rapidsai -c conda-forge -c nvidia \ - cuxfilter=24.12 python=3.10 cuda-version=12.5 + cuxfilter=25.02 python=3.10 cuda-version=12.5 # for CUDA 11.8 conda install -c rapidsai -c conda-forge -c nvidia \ - cuxfilter=24.12 python=3.10 cuda-version=11.8 + cuxfilter=25.02 python=3.10 cuda-version=11.8 PyPI ---- diff --git a/python/pyproject.toml b/python/pyproject.toml index e2c1d374..5576bf45 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -19,10 +19,10 @@ license = { text = "Apache 2.0" } requires-python = ">=3.10" dependencies = [ "bokeh>=3.1", - "cudf==24.12.*,>=0.0.0a0", + "cudf==25.2.*,>=0.0.0a0", "cupy-cuda11x>=12.0.0", - "cuspatial==24.12.*,>=0.0.0a0", - "dask-cudf==24.12.*,>=0.0.0a0", + "cuspatial==25.2.*,>=0.0.0a0", + "dask-cudf==25.2.*,>=0.0.0a0", "datashader>=0.15", "geopandas>=0.11.0", "holoviews>=1.16.0",