From 227dbdd9fa29d04572655c0e53140cedeedd6e94 Mon Sep 17 00:00:00 2001 From: llama Date: Sat, 11 Oct 2025 00:51:28 +0800 Subject: [PATCH] fix: make uv use system certstore --- qt/launcher/src/main.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/qt/launcher/src/main.rs b/qt/launcher/src/main.rs index 26fbe86a7..520a1d8e0 100644 --- a/qt/launcher/src/main.rs +++ b/qt/launcher/src/main.rs @@ -1013,6 +1013,9 @@ fn uv_command(state: &State) -> Result { .env("UV_DEFAULT_INDEX", &pypi_mirror); } + // have uv use the system certstore instead of webpki-roots' + command.env("UV_NATIVE_TLS", "1"); + Ok(command) }