Skip to content

Commit bebddd8

Browse files
authored
remove more cuspatial references (#774)
Contributes to rapidsai/build-planning#197 Follow-up to #742 Removes a few lingering mentions of `cuspatial`. RAPIDS 25.04 was the last version with a `cuspatial` release: https://docs.rapids.ai/notices/rsn0045/ While updating this, also pulled in a few other very minor changes (to take advantage of the CI run): * `pre-commit autoupdate` * minor formatting improvements in READMEs (see https://yihui.org/en/2021/06/markdown-breath/) ## Notes for Reviewers ### How I tested this Looked for references like this: ```shell git grep -i cuspatial git grep -i cuproj ``` Authors: - James Lamb (https://github.com/jameslamb) Approvers: - Gil Forsyth (https://github.com/gforsyth) URL: #774
1 parent 290c8d8 commit bebddd8

4 files changed

Lines changed: 8 additions & 10 deletions

File tree

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ repos:
99
- id: end-of-file-fixer
1010
- id: trailing-whitespace
1111
- repo: https://github.com/astral-sh/ruff-pre-commit
12-
rev: v0.12.2
12+
rev: v0.12.3
1313
hooks:
1414
- id: ruff
1515
args: ["--config", "pyproject.toml"]

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ LABEL com.nvidia.workbench.package-manager-environment.type="conda"
156156
LABEL com.nvidia.workbench.package-manager.apt.binary="/usr/bin/apt"
157157
LABEL com.nvidia.workbench.package-manager.apt.installed-packages=""
158158
LABEL com.nvidia.workbench.package-manager.conda3.binary="/opt/conda/bin/conda"
159-
LABEL com.nvidia.workbench.package-manager.conda3.installed-packages="rapids cudf cuml cugraph rmm pylibraft cuspatial cuxfilter cucim xgboost jupyterlab"
159+
LABEL com.nvidia.workbench.package-manager.conda3.installed-packages="rapids cudf cuml cugraph rmm pylibraft cuxfilter cucim xgboost jupyterlab"
160160
LABEL com.nvidia.workbench.package-manager.pip.binary="/opt/conda/bin/pip"
161161
LABEL com.nvidia.workbench.package-manager.pip.installed-packages="jupyterlab-nvdashboard"
162162
LABEL com.nvidia.workbench.programming-languages="python3"

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
This repository contains the end-user docker images for [RAPIDS](https://rapids.ai).
44

5-
65
## Image types
76

87
There are two image types: `base` ([`rapidsai/base`](https://hub.docker.com/r/rapidsai/base)) and `notebooks` ([`rapidsai/notebooks`](https://hub.docker.com/r/rapidsai/notebooks)).

dockerhub-readme.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,34 +2,32 @@
22

33
## What is RAPIDS?
44

5-
Visit [rapids.ai](https://rapids.ai) for more information.
6-
75
The RAPIDS suite of software libraries gives you the freedom to execute end-to-end data science and analytics pipelines entirely on GPUs. It relies on NVIDIA® CUDA® primitives for low-level compute optimization, but exposes GPU parallelism and high-bandwidth memory speed through user-friendly Python interfaces.
86

9-
**NOTE:** Review our [system requirements](https://docs.rapids.ai/install#system-req) to ensure you have a compatible system!
7+
Visit [rapids.ai](https://rapids.ai) for more information.
108

9+
**NOTE:** Review our [system requirements](https://docs.rapids.ai/install#system-req) to ensure you have a compatible system!
1110

1211
### Current Version - RAPIDS v25.08
1312

1413
RAPIDS Libraries included in the images:
14+
1515
- `cuDF`
1616
- `cuML`
1717
- `cuGraph`
1818
- `cuVS`
1919
- `RMM`
2020
- `RAFT`
21-
- `cuSpatial`
2221
- `cuxfilter`
2322
- `cuCIM`
2423
- `xgboost`
2524

26-
2725
### Image Types
2826

2927
The RAPIDS images are based on [`nvidia/cuda`](https://hub.docker.com/r/nvidia/cuda) and [`rapidsai/miniforge-cuda`](https://hub.docker.com/r/rapidsai/miniforge-cuda). The RAPIDS images provide `amd64` & `arm64` architectures [where supported](https://docs.rapids.ai/install#system-req).
3028

31-
3229
There are two types:
30+
3331
- `rapidsai/base` - contains a RAPIDS environment ready for use.
3432
- **TIP: Use this image if you want to use RAPIDS as a part of your pipeline.**
3533
- `rapidsai/notebooks` - extends the `rapidsai/base` image by adding a [`jupyterlab` server](https://jupyter.org/), example notebooks, and dependencies.
@@ -38,7 +36,8 @@ There are two types:
3836
### Image Tag Naming Scheme
3937

4038
The tag naming scheme for RAPIDS images incorporates key platform details into the tag as shown below:
41-
```
39+
40+
```text
4241
25.08-cuda12.9-py3.13
4342
^ ^ ^
4443
| | Python version

0 commit comments

Comments
 (0)