From 179d72615bd8d6b6448adc3e2d7ba11c7fad46c2 Mon Sep 17 00:00:00 2001 From: Nathan Weinberg <31703736+nathan-weinberg@users.noreply.github.com> Date: Thu, 5 Jun 2025 02:12:03 -0400 Subject: [PATCH] docs: update contributing guidance around uv python versions (#2398) As discussed with @leseb here: https://github.com/containers/ramalama-stack/pull/81#discussion_r2125961014 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/).