We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f371c7 commit 0ce0701Copy full SHA for 0ce0701
src/managers/builtin/utils.ts
@@ -125,6 +125,7 @@ export async function refreshPythons(
125
NativePythonEnvironmentKind.macXCode,
126
NativePythonEnvironmentKind.windowsRegistry,
127
NativePythonEnvironmentKind.windowsStore,
128
+ NativePythonEnvironmentKind.winpython,
129
].includes(e.kind)),
130
);
131
envs.forEach((env) => {
src/managers/common/nativePythonFinder.ts
@@ -140,6 +140,7 @@ export enum NativePythonEnvironmentKind {
140
virtualEnvWrapper = 'VirtualEnvWrapper',
141
windowsStore = 'WindowsStore',
142
windowsRegistry = 'WindowsRegistry',
143
+ winpython = 'WinPython',
144
}
145
146
export interface NativePythonFinder extends Disposable {
0 commit comments