From 2a50bc94caef528026d2233bd1572871be7e5a64 Mon Sep 17 00:00:00 2001 From: Silvano Cerza <3314350+silvanocerza@users.noreply.github.com> Date: Fri, 12 Jul 2024 18:00:38 +0200 Subject: [PATCH] Fix `CONTRIBUTING.md` instructions to install multiple Python versions (#5015) ## Summary I noticed the command to install multiple Python versions was wrong as it was failing cause `toolchain` is not a known command. I looked in the `ci.yml` workflow to see which command is used there and updated the instructions accordingly. ## Test Plan I just ran the command locally. :) --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index f07fa80ec..419497dce 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -39,7 +39,7 @@ If tests fail due to a mismatch in the JSON Schema, run: `cargo dev generate-jso Testing uv requires multiple specific Python versions; they can be installed with: ```shell -cargo run toolchain install +cargo run python install ``` The storage directory can be configured with `UV_PYTHON_INSTALL_DIR`.