From d9e85c778ad4723661bdf41d367e512fdfe0f276 Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Wed, 20 Nov 2024 18:37:51 -0600 Subject: [PATCH] Add required fields to Python version example --- docs/concepts/projects/config.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/concepts/projects/config.md b/docs/concepts/projects/config.md index 93ca0b65e916..49211264cfeb 100644 --- a/docs/concepts/projects/config.md +++ b/docs/concepts/projects/config.md @@ -7,8 +7,10 @@ field of the `pyproject.toml`. It is recommended to set a `requires-python` value: -```toml title="pyproject.toml" +```toml title="pyproject.toml" hl_lines="4" [project] +name = "example" +version = "0.1.0" requires-python = ">=3.12" ```