From 59055952d08dc61e960d914b751377fd83632c18 Mon Sep 17 00:00:00 2001 From: matei jordache Date: Mon, 30 Mar 2026 00:28:42 -0700 Subject: [PATCH] fix pip vs uv --- scripts/build-windows.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build-windows.ps1 b/scripts/build-windows.ps1 index 4333aca..11316dc 100644 --- a/scripts/build-windows.ps1 +++ b/scripts/build-windows.ps1 @@ -50,7 +50,7 @@ npm run build Assert-LastExitCode "Frontend build" Write-Host "Installing desktop build dependencies..." -& $pythonExe -m pip install -e ".[desktop]" +& uv pip install -e ".[desktop]" Assert-LastExitCode "Desktop dependency installation" $mode = if ($OneFile) { "--onefile" } else { "--onedir" }