remove 26.05 RC doc references#2213
Conversation
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.
Greptile SummaryDocumentation-only PR that removes all remaining
|
| Filename | Overview |
|---|---|
| README.md | Replaces RC build tag language with GA 26.5.0 description and cleans up the branch pointer sentence. |
| nemo_retriever/README.md | Removes ==26.05-RC1 version specifiers from three uv pip install examples, leaving installs unpinned. |
| nemo_retriever/helm/README.md | Updates the air-gapped mirroring example tag from 26.05-RC1 to 26.5.0 — clean one-line change. |
Flowchart
%%{init: {'theme': 'neutral'}}%%
flowchart TD
A[User follows README install guide] --> B{Which install path?}
B --> C["Local GPU inference\nuv pip install 'nemo-retriever[local]'"]
B --> D["Remote NIM only\nuv pip install nemo-retriever"]
B --> E["Nemotron Parse\nuv pip install 'nemo-retriever[nemotron-parse]'"]
C --> F[Install matching ingest client + runtime wheels]
D --> F
E --> F
F --> G[Refer to NeMo Retriever Library prerequisites\nfor exact PyPI coordinates]
Reviews (7): Last reviewed commit: "Merge branch 'main' into docs/nrl-readme..." | Re-trigger Greptile
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.
Keep the upgrade sentence as a link to the Helm README only; GA install pins remain in the library quickstart and packaging section.
|
|
||
| ### 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)) |
There was a problem hiding this comment.
Don't we want to remove all 26.5.0 references? Couldn't this just be uv pip install nemo-retriever
| 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" |
There was a problem hiding this comment.
same as above can't we drop the ==26.5.0?
| 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 |
|
|
||
| ```bash | ||
| uv pip install "nemo-retriever[nemotron-parse]==26.05-RC1" | ||
| uv pip install "nemo-retriever[nemotron-parse]==26.5.0" |
Remove ==26.5.0 from quickstart install commands and the redundant GA install bullet in release notes so docs match unpinned conventions.
| 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]" |
There was a problem hiding this comment.
The PR description says these commands should be pinned to the GA
26.5.0 release, but the diff removes the version specifiers entirely. Without a pin, users running these commands will install whatever the current latest version of nemo-retriever is on PyPI, which may not match the documentation or the companion nv-ingest-client/runtime wheels that the following paragraph instructs them to install "at the same version". This breaks the documented reproducibility guarantee and could cause compatibility mismatches as future releases ship.
| uv pip install "nemo-retriever[local]" | |
| uv pip install "nemo-retriever[local]==26.5.0" |
Prompt To Fix With AI
This is a comment left during a code review.
Path: nemo_retriever/README.md
Line: 47
Comment:
The PR description says these commands should be pinned to the GA `26.5.0` release, but the diff removes the version specifiers entirely. Without a pin, users running these commands will install whatever the current latest version of `nemo-retriever` is on PyPI, which may not match the documentation or the companion `nv-ingest-client`/runtime wheels that the following paragraph instructs them to install "at the same version". This breaks the documented reproducibility guarantee and could cause compatibility mismatches as future releases ship.
```suggestion
uv pip install "nemo-retriever[local]==26.5.0"
```
How can I resolve this? If you propose a fix, please make it concise.| uv venv retriever --python 3.12 | ||
| source retriever/bin/activate | ||
| uv pip install nemo-retriever==26.05-RC1 | ||
| uv pip install nemo-retriever |
There was a problem hiding this comment.
Same missing version pin as the
[local] extra above — the base package install should also be pinned to the GA release so it is consistent with the surrounding version guidance.
| uv pip install nemo-retriever | |
| uv pip install nemo-retriever==26.5.0 |
Prompt To Fix With AI
This is a comment left during a code review.
Path: nemo_retriever/README.md
Line: 58
Comment:
Same missing version pin as the `[local]` extra above — the base package install should also be pinned to the GA release so it is consistent with the surrounding version guidance.
```suggestion
uv pip install nemo-retriever==26.5.0
```
How can I resolve this? If you propose a fix, please make it concise.|
|
||
| ```bash | ||
| uv pip install "nemo-retriever[nemotron-parse]==26.05-RC1" | ||
| uv pip install "nemo-retriever[nemotron-parse]" |
There was a problem hiding this comment.
Same missing version pin as the two commands above — the
[nemotron-parse] extra should be pinned to 26.5.0 for the same reasons.
| uv pip install "nemo-retriever[nemotron-parse]" | |
| uv pip install "nemo-retriever[nemotron-parse]==26.5.0" |
Prompt To Fix With AI
This is a comment left during a code review.
Path: nemo_retriever/README.md
Line: 68
Comment:
Same missing version pin as the two commands above — the `[nemotron-parse]` extra should be pinned to `26.5.0` for the same reasons.
```suggestion
uv pip install "nemo-retriever[nemotron-parse]==26.5.0"
```
How can I resolve this? If you propose a fix, please make it concise.
Summary
26.05-RC1references from README and Helm docs now that 26.05 is GA (26.5.0).==26.05-RC1/==26.5.0) per @jperez999 review — use unpinneduv pip install nemo-retriever[...], consistent with extraction docs and other README extras ([multimedia],[llm], etc.).README.md: branch pointer describes GA26.5.0instead of RC build tags.nemo_retriever/helm/README.md: air-gapped mirror example tag updated from26.05-RC1to26.5.0(container tags must stay explicit).Why unpinned quickstart installs? Published extraction docs already use unpinned
pip install nemo-retriever[...]. Pinning in the quickstart created doc drift (stale26.05-RC1after GA). GA version is still documented in the root README branch pointer and Helm mirror example; users who need exact coordinates are directed to the prerequisites page.26.05 is GA — no further RC builds.
Test plan
26.5.0is the current latest on PyPI26.05-RC/RC buildsleft in changed*.mddocs