Skip to content

Commit 9b53af9

Browse files
authored
fix: set minimal python version of interpreter error message to 3.8 (#169)
* fix: set minimal python version of interpreter error message to 3.8 * doc: set minimal python version of interpreter error message to 3.8
1 parent 51e06c6 commit 9b53af9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ The TypeScript part handles working with VS Code and its UI. The extension templ
1313
## Requirements
1414

1515
1. VS Code 1.64.0 or greater
16-
1. Python 3.7 or greater
16+
1. Python 3.8 or greater
1717
1. node >= 14.19.0
1818
1. npm >= 8.3.0 (`npm` is installed with node, check npm version, use `npm install -g [email protected]` to update)
1919
1. Python extension for VS Code

src/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ export async function activate(context: vscode.ExtensionContext): Promise<void>
6969
'Python interpreter missing:\r\n' +
7070
'[Option 1] Select python interpreter using the ms-python.python.\r\n' +
7171
`[Option 2] Set an interpreter using "${serverId}.interpreter" setting.\r\n` +
72-
'Please use Python 3.7 or greater.',
72+
'Please use Python 3.8 or greater.',
7373
);
7474
};
7575

0 commit comments

Comments
 (0)