From 7e13100786cf31cf8e8cb5b02efa12bdac36e6a7 Mon Sep 17 00:00:00 2001 From: pantheraleo-7 <159872817+pantheraleo-7@users.noreply.github.com> Date: Sun, 13 Oct 2024 02:30:33 +0530 Subject: [PATCH] docs: correct typo in `index.md` (#8150) This was added in [#5426](https://github.com/astral-sh/uv/pull/5426) The output that a python shell was started, but the command will only print out the version because of the `--version` flag. I think the section `Download Python versions as needed` should be reverted back to `Download Python versions on demand` or something similar because that's what the command will do. It will download the given version if not already installed. --- docs/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/index.md b/docs/index.md index 9fb9eefe5..b40ee7c99 100644 --- a/docs/index.md +++ b/docs/index.md @@ -146,7 +146,7 @@ Using CPython 3.12.0 Creating virtual environment at: .venv Activate with: source .venv/bin/activate -$ uv run --python pypy@3.8 -- python --version +$ uv run --python pypy@3.8 -- python Python 3.8.16 (a9dbdca6fc3286b0addd2240f11d97d8e8de187a, Dec 29 2022, 11:45:30) [PyPy 7.3.11 with GCC Apple LLVM 13.1.6 (clang-1316.0.21.2.5)] on darwin Type "help", "copyright", "credits" or "license" for more information.