From 73f68783c13257712d432650ac9518662e26a310 Mon Sep 17 00:00:00 2001 From: Nathan Weinberg Date: Wed, 4 Jun 2025 22:14:01 -0400 Subject: [PATCH] docs: update contributin guidance around uv python versions Signed-off-by: Nathan Weinberg --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 10e3f6cee..0b72f48c8 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -72,7 +72,7 @@ source .venv/bin/activate ``` > [!NOTE] -> You can pin a specific version of Python to use for `uv` by adding a `.python-version` file in the root project directory. +> You can use a specific version of Python with `uv` by adding the `--python ` flag (e.g. `--python 3.11`) > Otherwise, `uv` will automatically select a Python version according to the `requires-python` section of the `pyproject.toml`. > For more info, see the [uv docs around Python versions](https://docs.astral.sh/uv/concepts/python-versions/).