From ecad5d0c0fd886ebc7cafcb6b195271e9c9abdae Mon Sep 17 00:00:00 2001 From: Kurt Heiss Date: Fri, 5 Jun 2026 15:44:10 -0700 Subject: [PATCH 1/4] docs(nrl): pin quickstart installs to GA PyPI 26.5.0 Replace stale 26.05-RC1 install examples in the library README and Helm air-gap section now that 26.5.0 is published on PyPI. --- nemo_retriever/README.md | 6 +++--- nemo_retriever/helm/README.md | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/nemo_retriever/README.md b/nemo_retriever/README.md index 0041b5c5ce..a275703b3a 100644 --- a/nemo_retriever/README.md +++ b/nemo_retriever/README.md @@ -43,7 +43,7 @@ For **local GPU inference** (Nemotron models running on your GPU), install with ```bash uv venv retriever --python 3.12 source retriever/bin/activate -uv pip install "nemo-retriever[local]==26.05-RC1" +uv pip install "nemo-retriever[local]==26.5.0" ``` Install matching **ingestion client** and **ingestion runtime** wheels at the same version when your workflow expects them (see the [NeMo Retriever Library prerequisites](https://docs.nvidia.com/nemo/retriever/latest/extraction/overview/) for the exact PyPI coordinates for your release). @@ -54,7 +54,7 @@ For **remote NIM inference only** (no local GPU required), the base package is s uv python install 3.12 uv venv retriever --python 3.12 source retriever/bin/activate -uv pip install nemo-retriever==26.05-RC1 +uv pip install nemo-retriever==26.5.0 ``` Install matching **ingestion client** and **ingestion runtime** wheels at the same version when your workflow expects them (see the [NeMo Retriever Library prerequisites](https://docs.nvidia.com/nemo/retriever/latest/extraction/overview/) for the exact PyPI coordinates for your release). @@ -64,7 +64,7 @@ This creates a dedicated Python environment and installs the `nemo-retriever` Py If your PDF pipeline uses `extract_method="nemotron_parse"`, install the Nemotron Parse client dependencies with the `nemotron-parse` extra: ```bash -uv pip install "nemo-retriever[nemotron-parse]==26.05-RC1" +uv pip install "nemo-retriever[nemotron-parse]==26.5.0" ``` For local GPU inference with Nemotron Parse, combine the extras as `nemo-retriever[local,nemotron-parse]`. diff --git a/nemo_retriever/helm/README.md b/nemo_retriever/helm/README.md index 080bb877e0..9b99e5c32a 100644 --- a/nemo_retriever/helm/README.md +++ b/nemo_retriever/helm/README.md @@ -946,7 +946,7 @@ See [Deployment options — Air-gapped and disconnected deployment](https://docs ### Container images to mirror (26.05 chart defaults) Verify tags on the Git branch or tag you ship (for example `26.05` or -`26.05-RC1`). Defaults below match +`26.5.0`). Defaults below match [`values.yaml`](./values.yaml) on the current chart. | Role | `nimOperator` key | Default image (`repository:tag`) | From 9166066315ba1af31f0046beb69a2d472d7ae7f2 Mon Sep 17 00:00:00 2001 From: Kurt Heiss Date: Fri, 5 Jun 2026 15:48:01 -0700 Subject: [PATCH 2/4] docs(nrl): drop 26.05 RC references now that GA is 26.5.0 Update the repo README and release notes for GA PyPI/Helm coordinates; library quickstart and Helm air-gap examples were already pinned to 26.5.0. --- README.md | 2 +- docs/docs/extraction/releasenotes.md | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 241a8dd3f9..cd1abe7ae2 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ SPDX-License-Identifier: Apache-2.0 **Important: The default branch is main, which tracks active development and may be ahead of the latest supported release.** -For the latest release line use the [26.05 branch](https://github.com/NVIDIA/NeMo-Retriever/tree/26.05) (RC builds are tagged `26.05-RC1`, `26.05-RC2`, …). The previous stable line is [26.03](https://github.com/NVIDIA/NeMo-Retriever/tree/26.03). +For the latest supported release, use the [26.05 branch](https://github.com/NVIDIA/NeMo-Retriever/tree/26.05) (GA PyPI and Helm chart version `26.5.0`). The previous stable line is [26.03](https://github.com/NVIDIA/NeMo-Retriever/tree/26.03). See the corresponding [NeMo Retriever Library documentation](https://docs.nvidia.com/nemo/retriever/latest/extraction/overview/). diff --git a/docs/docs/extraction/releasenotes.md b/docs/docs/extraction/releasenotes.md index a06d20fa7c..bc9e02ad54 100644 --- a/docs/docs/extraction/releasenotes.md +++ b/docs/docs/extraction/releasenotes.md @@ -6,7 +6,7 @@ This documentation contains the release notes for [NeMo Retriever Library](overv NVIDIA® NeMo Retriever Library version 26.05 builds on the 26.03 foundation with a graph-based ingest architecture, expanded multimodal and tabular capabilities, production-oriented service deployment, and documentation aligned to a Helm-first supported path. -To upgrade the Helm charts for this release, refer to the [NeMo Retriever Library Helm Charts](https://github.com/NVIDIA/NeMo-Retriever/blob/26.05/nemo_retriever/helm/README.md). +To upgrade the Helm charts for this release, refer to the [NeMo Retriever Library Helm Charts](https://github.com/NVIDIA/NeMo-Retriever/blob/26.05/nemo_retriever/helm/README.md) and pin chart version `26.5.0`. Highlights for the 26.05 release include: @@ -64,6 +64,7 @@ Highlights for the 26.05 release include: ### Packaging and platform +- GA PyPI install: `uv pip install nemo-retriever==26.5.0` (see the library [quickstart](https://github.com/NVIDIA/NeMo-Retriever/tree/main/nemo_retriever#setup-your-environment)) - Optional install extras (`[local]`, `[multimedia]`, `[llm]`, `[tabular]`, `[nemotron-parse]`, `[service]`, and others), including slim remote/NIM-only installs on Mac and Windows ### Helm chart From a9c00b2446283ca904b6c08e00224cae79f904d8 Mon Sep 17 00:00:00 2001 From: Kurt Heiss Date: Fri, 5 Jun 2026 15:48:49 -0700 Subject: [PATCH 3/4] docs(nrl): point 26.05 release notes quickstart link at 26.05 branch --- docs/docs/extraction/releasenotes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/extraction/releasenotes.md b/docs/docs/extraction/releasenotes.md index bc9e02ad54..033e6c157e 100644 --- a/docs/docs/extraction/releasenotes.md +++ b/docs/docs/extraction/releasenotes.md @@ -64,7 +64,7 @@ Highlights for the 26.05 release include: ### Packaging and platform -- GA PyPI install: `uv pip install nemo-retriever==26.5.0` (see the library [quickstart](https://github.com/NVIDIA/NeMo-Retriever/tree/main/nemo_retriever#setup-your-environment)) +- GA PyPI install: `uv pip install nemo-retriever==26.5.0` (see the library [quickstart](https://github.com/NVIDIA/NeMo-Retriever/tree/26.05/nemo_retriever#setup-your-environment)) - Optional install extras (`[local]`, `[multimedia]`, `[llm]`, `[tabular]`, `[nemotron-parse]`, `[service]`, and others), including slim remote/NIM-only installs on Mac and Windows ### Helm chart From df7ab15735611b9b2eea94d7757d3bfcd33e2ad8 Mon Sep 17 00:00:00 2001 From: Kurt Heiss Date: Fri, 5 Jun 2026 15:51:31 -0700 Subject: [PATCH 4/4] docs(nrl): revert optional Helm chart pin on release notes line 9 Keep the upgrade sentence as a link to the Helm README only; GA install pins remain in the library quickstart and packaging section. --- docs/docs/extraction/releasenotes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/extraction/releasenotes.md b/docs/docs/extraction/releasenotes.md index 033e6c157e..643114900c 100644 --- a/docs/docs/extraction/releasenotes.md +++ b/docs/docs/extraction/releasenotes.md @@ -6,7 +6,7 @@ This documentation contains the release notes for [NeMo Retriever Library](overv NVIDIA® NeMo Retriever Library version 26.05 builds on the 26.03 foundation with a graph-based ingest architecture, expanded multimodal and tabular capabilities, production-oriented service deployment, and documentation aligned to a Helm-first supported path. -To upgrade the Helm charts for this release, refer to the [NeMo Retriever Library Helm Charts](https://github.com/NVIDIA/NeMo-Retriever/blob/26.05/nemo_retriever/helm/README.md) and pin chart version `26.5.0`. +To upgrade the Helm charts for this release, refer to the [NeMo Retriever Library Helm Charts](https://github.com/NVIDIA/NeMo-Retriever/blob/26.05/nemo_retriever/helm/README.md). Highlights for the 26.05 release include: