From 73e0f2f7e62a9a5c369a379a097a921ed368076e Mon Sep 17 00:00:00 2001 From: Jonathan Schwender <55576758+jschwe@users.noreply.github.com> Date: Tue, 19 Aug 2025 08:38:00 +0200 Subject: [PATCH] uv: Fix warning by adding `project` table to pyproject.toml (#38774) `uv` logs a warning if the pyproject.toml does not contain a project table. There is not really much point in adding the table, but no downsides either, so lets just add the table to make `uv` happy. Testing: Manual run of `RUST_LOG=warn ./mach run` Fixes: #38761 Signed-off-by: Jonathan Schwender --- pyproject.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 05bdb887783..df7b240724e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,3 +1,8 @@ +[project] +# `uv` logs warnings if this file doesn't contain a `project` table. +name = "servo" +version = "0.0.1" + [tool.ruff] line-length = 120 extend-exclude = [