Skip to content

Commit

Permalink
DOC v25.02 Updates [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
raydouglass committed Nov 15, 2024
1 parent 92dd262 commit 15af5f0
Show file tree
Hide file tree
Showing 11 changed files with 47 additions and 47 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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 }}
Expand All @@ -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 }}
Expand All @@ -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 }}
Expand All @@ -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 }}
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -46,25 +46,25 @@ 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
run_codecov: false
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
Expand All @@ -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"
Expand All @@ -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
Expand All @@ -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
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 @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ 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 }}
date: ${{ inputs.date }}
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 }}
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`:
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
24.12.00
25.02.00
10 changes: 5 additions & 5 deletions conda/environments/all_cuda-118_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
10 changes: 5 additions & 5 deletions conda/environments/all_cuda-125_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
24 changes: 12 additions & 12 deletions dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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:
Expand All @@ -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"
Expand All @@ -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"
Expand Down Expand Up @@ -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
4 changes: 2 additions & 2 deletions docs/source/user_guide/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
----
Expand Down
6 changes: 3 additions & 3 deletions python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 15af5f0

Please sign in to comment.