Skip to content

Commit b030555

Browse files
lib: find python checks order changed on windows (#2872)
These changes favor py launcher over other checks excluding command line or npm configuration and environment variable checks. Also, updated supported python versions list. Fixes: #2871
1 parent 192eec2 commit b030555

File tree

1 file changed

+16
-10
lines changed

1 file changed

+16
-10
lines changed

lib/find-python.js

+16-10
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const programFiles = process.env.ProgramW6432 || process.env.ProgramFiles || `${
1414
const programFilesX86 = process.env['ProgramFiles(x86)'] || `${programFiles} (x86)`
1515

1616
const winDefaultLocationsArray = []
17-
for (const majorMinor of ['39', '38', '37', '36']) {
17+
for (const majorMinor of ['311', '310', '39', '38']) {
1818
if (foundLocalAppData) {
1919
winDefaultLocationsArray.push(
2020
`${localAppData}\\Programs\\Python\\Python${majorMinor}\\python.exe`,
@@ -113,7 +113,20 @@ PythonFinder.prototype = {
113113
},
114114
check: this.checkCommand,
115115
arg: this.env.PYTHON
116-
},
116+
}
117+
]
118+
119+
if (this.win) {
120+
checks.push({
121+
before: () => {
122+
this.addLog(
123+
'checking if the py launcher can be used to find Python 3')
124+
},
125+
check: this.checkPyLauncher
126+
})
127+
}
128+
129+
checks.push(...[
117130
{
118131
before: () => { this.addLog('checking if "python3" can be used') },
119132
check: this.checkCommand,
@@ -124,7 +137,7 @@ PythonFinder.prototype = {
124137
check: this.checkCommand,
125138
arg: 'python'
126139
}
127-
]
140+
])
128141

129142
if (this.win) {
130143
for (let i = 0; i < this.winDefaultLocations.length; ++i) {
@@ -138,13 +151,6 @@ PythonFinder.prototype = {
138151
arg: location
139152
})
140153
}
141-
checks.push({
142-
before: () => {
143-
this.addLog(
144-
'checking if the py launcher can be used to find Python 3')
145-
},
146-
check: this.checkPyLauncher
147-
})
148154
}
149155

150156
return checks

0 commit comments

Comments
 (0)