From 8e90b03cf22aaa0c5301dbb946a4618ab477fb56 Mon Sep 17 00:00:00 2001 From: gargsaumya Date: Fri, 10 Apr 2026 08:57:40 +0530 Subject: [PATCH] fix: add psutil to Windows build stage deps to fix ModuleNotFoundError --- OneBranchPipelines/stages/build-windows-single-stage.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OneBranchPipelines/stages/build-windows-single-stage.yml b/OneBranchPipelines/stages/build-windows-single-stage.yml index 972fe494..d4a89218 100644 --- a/OneBranchPipelines/stages/build-windows-single-stage.yml +++ b/OneBranchPipelines/stages/build-windows-single-stage.yml @@ -131,7 +131,7 @@ stages: $ErrorActionPreference = "Stop" Write-Host "Installing Python dependencies..." python -m pip install --upgrade pip - python -m pip install setuptools wheel pybind11 pytest pyodbc + python -m pip install setuptools wheel pybind11 pytest psutil pyodbc Write-Host "Dependencies installed successfully" displayName: 'Install Python dependencies'