From dbeee677b3c9e5567844326c6ddf64a9bdd45a91 Mon Sep 17 00:00:00 2001 From: Martin Robinson Date: Thu, 18 Sep 2025 09:08:37 +0200 Subject: [PATCH] mach: Configure `uv` using `pyproject.toml` (#39365) We have been consolidating all of our Python configuration in `pyproject.toml`, so we can move our one `uv` specific setting there as well. Testing: There is no easy way to write an automated test for this but I confirmed it work by running `uv run --show-settings`. Signed-off-by: Martin Robinson --- pyproject.toml | 3 +++ uv.toml | 1 - 2 files changed, 3 insertions(+), 1 deletion(-) delete mode 100644 uv.toml diff --git a/pyproject.toml b/pyproject.toml index 05bb458631f..baf122210bb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -67,3 +67,6 @@ project-excludes = [ "python/mach/**/*.py", "python/servo/mutation/**/*.py", ] + +[tool.uv] +native-tls = true diff --git a/uv.toml b/uv.toml deleted file mode 100644 index 5af84e6cfda..00000000000 --- a/uv.toml +++ /dev/null @@ -1 +0,0 @@ -native-tls = true