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 d4f37ae commit c085703Copy full SHA for c085703
pioinstaller/python.py
@@ -186,10 +186,7 @@ def find_compatible_pythons(
186
continue
187
candidates.append(os.path.join(path, exe))
188
if sys.executable not in candidates:
189
- if sys.version_info >= (3,):
190
- candidates.insert(0, sys.executable)
191
- else:
192
- candidates.append(sys.executable)
+ candidates.insert(0, sys.executable)
193
result = []
194
for item in candidates:
195
if item in ignore_list:
0 commit comments