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 534279f commit 028d206Copy full SHA for 028d206
get-platformio.py
pioinstaller/python.py
@@ -175,7 +175,15 @@ def find_compatible_pythons(
175
ignore_list = []
176
for p in ignore_pythons or []:
177
ignore_list.extend(glob.glob(p))
178
- exenames = ["python3", "python"]
+ exenames = [
179
+ # "python3.11",
180
+ "python3.10",
181
+ "python3.9",
182
+ "python3.8",
183
+ "python3.7",
184
+ "python3",
185
+ "python",
186
+ ]
187
if util.IS_WINDOWS:
188
exenames = ["%s.exe" % item for item in exenames]
189
log.debug("Current environment PATH %s", os.getenv("PATH"))
0 commit comments