From 2ac47d76b89a95c3bacd367b05f03f02775c897b Mon Sep 17 00:00:00 2001 From: GCHQDeveloper314 <94527357+GCHQDeveloper314@users.noreply.github.com> Date: Tue, 11 Mar 2025 14:03:00 +0000 Subject: [PATCH] Docs : Quote versions string in python-versions.md (#12112) ## Summary The command `uv python find >=3.11` doesn't work . The version should be quoted otherwise the terminal interprets the `>` and pipes output to a file named `=3.11`. I've used single quotes as used on line 90 of this file. ## Test Plan Locally --- docs/concepts/python-versions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/concepts/python-versions.md b/docs/concepts/python-versions.md index 0413a4411..d1dcabecc 100644 --- a/docs/concepts/python-versions.md +++ b/docs/concepts/python-versions.md @@ -206,7 +206,7 @@ This interface also supports many [request formats](#requesting-a-version), e.g. executable that has a version of 3.11 or newer: ```console -$ uv python find >=3.11 +$ uv python find '>=3.11' ``` By default, `uv python find` will include Python versions from virtual environments. If a `.venv`