From 8963de26a73cc2513b4b783f8be5000d9fe668b2 Mon Sep 17 00:00:00 2001 From: Udi Oron Date: Wed, 6 Nov 2024 00:13:58 +0200 Subject: [PATCH] docs: fix `uv python install` docs to use an exisigin pypy version (#8845) The current docs call to install pypy@3.12 that does not exist yet. Change it to install pypy@3.10 --- docs/guides/install-python.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/install-python.md b/docs/guides/install-python.md index 5589114ee..6865eb878 100644 --- a/docs/guides/install-python.md +++ b/docs/guides/install-python.md @@ -63,7 +63,7 @@ $ uv python install 3.11 3.12 To install an alternative Python implementation, e.g. PyPy: ```console -$ uv python install pypy@3.12 +$ uv python install pypy@3.10 ``` See the [`python install`](../concepts/python-versions.md#installing-a-python-version) documentation