From d92e65cc6f17be9a4763e897aa3c90ebd187a322 Mon Sep 17 00:00:00 2001 From: Yuneng Jiang Date: Tue, 14 Apr 2026 16:00:27 -0700 Subject: [PATCH] [Fix] Correct pip install versions for v1.83.3-stable and v1.83.7.rc.1 docs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PyPI publishes 1.83.3 and 1.83.7 (no .post1 / rc1 suffixes) — align the pip install commands with the actual published versions. --- docs/my-website/release_notes/v1.83.3/index.md | 2 +- docs/my-website/release_notes/v1.83.7.rc.1/index.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/my-website/release_notes/v1.83.3/index.md b/docs/my-website/release_notes/v1.83.3/index.md index 1eced9239c9..9eead59b285 100644 --- a/docs/my-website/release_notes/v1.83.3/index.md +++ b/docs/my-website/release_notes/v1.83.3/index.md @@ -45,7 +45,7 @@ docker.litellm.ai/berriai/litellm:main-v1.83.3-stable ```bash -pip install litellm==1.83.3.post1 +pip install litellm==1.83.3 ``` diff --git a/docs/my-website/release_notes/v1.83.7.rc.1/index.md b/docs/my-website/release_notes/v1.83.7.rc.1/index.md index 811b129d22b..f9dcbf8c243 100644 --- a/docs/my-website/release_notes/v1.83.7.rc.1/index.md +++ b/docs/my-website/release_notes/v1.83.7.rc.1/index.md @@ -45,7 +45,7 @@ docker.litellm.ai/berriai/litellm:main-v1.83.7.rc.1 ```bash -pip install litellm==1.83.7rc1 +pip install litellm==1.83.7 ```