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 8521166 commit 1fff8d6Copy full SHA for 1fff8d6
tasks/toolchain_builder.js
@@ -340,7 +340,7 @@ function getPythonExecutable() {
340
const result = childProcess.spawnSync(executable, args);
341
return (result !== false && result !== null &&
342
(result.stdout.toString().indexOf('3.5') >= 0 || result.stdout.toString().indexOf('3.6') >= 0 ||
343
- result.stdout.toString().indexOf('3.7') >= 0 || result.stdout.toString().indexOf('3.8') >= 0) ||
+ result.stdout.toString().indexOf('3.7') >= 0 || result.stdout.toString().indexOf('3.8') >= 0 ||
344
result.toString().indexOf('3.9') >= 0));
345
} catch (e) {
346
return false;
0 commit comments