From 8fe69ffd87a06d50a755f251db72da1bcf85e9bc Mon Sep 17 00:00:00 2001 From: eleanorjboyd <26030610+eleanorjboyd@users.noreply.github.com> Date: Wed, 10 Sep 2025 15:10:33 -0700 Subject: [PATCH] make virtual environment search default to config not project folders --- src/managers/builtin/venvManager.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/managers/builtin/venvManager.ts b/src/managers/builtin/venvManager.ts index cf5027a9..80bbd637 100644 --- a/src/managers/builtin/venvManager.ts +++ b/src/managers/builtin/venvManager.ts @@ -317,7 +317,7 @@ export class VenvManager implements EnvironmentManager { this.api, this.log, this, - scope ? [scope] : this.api.getPythonProjects().map((p) => p.uri), + scope ? [scope] : undefined, ); await this.loadEnvMap();