Skip to content

Commit 5f36663

Browse files
committed
remove UV creator
1 parent c493f58 commit 5f36663

File tree

2 files changed

+0
-130
lines changed

2 files changed

+0
-130
lines changed

src/managers/builtin/main.ts

-8
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ import { PipPackageManager } from './pipManager';
55
import { VenvManager } from './venvManager';
66
import { getPythonApi } from '../../features/pythonApi';
77
import { NativePythonFinder } from '../common/nativePythonFinder';
8-
import { UvProjectCreator } from './uvProjectCreator';
9-
import { isUvInstalled } from './helpers';
108
import { createFileSystemWatcher, onDidDeleteFiles } from '../../common/workspace.apis';
119
import { createSimpleDebounce } from '../../common/utils/debounce';
1210
import { onDidEndTerminalShellExecution } from '../../common/window.apis';
@@ -56,10 +54,4 @@ export async function registerSystemPythonFeatures(
5654
}
5755
}),
5856
);
59-
60-
setImmediate(async () => {
61-
if (await isUvInstalled(log)) {
62-
disposables.push(api.registerPythonProjectCreator(new UvProjectCreator(api, log)));
63-
}
64-
});
6557
}

src/managers/builtin/uvProjectCreator.ts

-122
This file was deleted.

0 commit comments

Comments
 (0)