Skip to content

Commit cce13c3

Browse files
author
Kartik Raj
authored
Disable windows path locator until it's fixed
1 parent bcf2bdb commit cce13c3

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/client/pythonEnvironments/index.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ import { ILocator } from './base/locator';
1313
import { CachingLocator } from './base/locators/composite/cachingLocator';
1414
import { PythonEnvsReducer } from './base/locators/composite/environmentsReducer';
1515
import { PythonEnvsResolver } from './base/locators/composite/environmentsResolver';
16-
import { WindowsPathEnvVarLocator } from './base/locators/lowLevel/windowsKnownPathsLocator';
1716
import { WorkspaceVirtualEnvironmentLocator } from './base/locators/lowLevel/workspaceVirtualEnvLocator';
1817
import { getEnvs } from './base/locatorUtils';
1918
import { initializeExternalDependencies as initializeLegacyExternalDependencies } from './common/externalDependencies';
@@ -117,7 +116,7 @@ function createNonWorkspaceLocators(ext: ExtensionState): ILocator[] {
117116
// Windows specific locators go here.
118117
new WindowsRegistryLocator(),
119118
new WindowsStoreLocator(),
120-
new WindowsPathEnvVarLocator(),
119+
// new WindowsPathEnvVarLocator(),
121120
];
122121
} else {
123122
locators = [

0 commit comments

Comments
 (0)