Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork33.3k
Closed
Description
If the launcher only finds a single runtime, it skips all filtering, which means if you request a mismatched version you will still get the installed one.
e.g. a user (let's call them "Guido") installs Python 3.11. They then runpy -3.12 and instead of suggesting to install 3.12, it launches 3.11!
Unrelated, but discovered at the same time:-3.1 will match-3.11, because it's a blind prefix match. The match should require a separator character.