We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c4412c commit fc89b67Copy full SHA for fc89b67
2 files changed
src/services/get-platform-version.ts
@@ -118,7 +118,15 @@ function getPythonVersion(projectPath: string, debug: DebugLogger) {
118
'virtualenv',
119
'.virtualenv',
120
];
121
- const supportedPythonVersion = ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12'];
+ const supportedPythonVersion = [
122
+ '3.7',
123
+ '3.8',
124
+ '3.9',
125
+ '3.10',
126
+ '3.11',
127
+ '3.12',
128
+ '3.13',
129
+ ];
130
131
for (const name of commonVenvNames) {
132
const venvDir = path.join(projectPath, name);
src/utils/get-supported-versions.ts
@@ -33,16 +33,16 @@ const versions: IVersions = {
33
allVersions: ['8.4', '8.3', '8.2', '8.1', '8.0', '7.4', '7.3', '7.2'],
34
},
35
python: {
36
- defaultVersion: '3.11',
37
- allVersions: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12'],
+ defaultVersion: '3.12',
+ allVersions: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13'],
38
39
django: {
40
- defaultVersion: '3.10',
41
42
43
flask: {
44
45
46
47
go: {
48
defaultVersion: '1.24',
0 commit comments