We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 205adbd commit 84d2553Copy full SHA for 84d2553
src/common/extVersion.ts
@@ -12,7 +12,7 @@ export function ensureCorrectVersion() {
12
const parts = version.split('.');
13
const major = parseInt(parts[0]);
14
const minor = parseInt(parts[1]);
15
- if (major >= 2024 && minor >= 23) {
+ if (major >= 2025 || (major === 2024 && minor >= 23)) {
16
return;
17
}
18
traceError('Incompatible Python extension. Please update `ms-python.python` to version 2024.23 or later.');
0 commit comments