Skip to content

Commit

Permalink
fix msft store python issue (#8123)
Browse files Browse the repository at this point in the history
  • Loading branch information
StellaHuang95 authored Jan 3, 2025
1 parent c5fb841 commit a3b5cfd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public class PythonRegistrySearch {
// when queried directly (e.g. as HKCU\Software\Python\PythonCore\3.7),
// but enumerating HKCU\Software\Python\PythonCore key does not
// find it (because of deliberate limitations in Windows).
private static readonly string[] StoreAppTags = { "3.9", "3.10", "3.11", "3.12", "3.13" };
private static readonly string[] StoreAppTags = { "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13" };
private static readonly string[] StoreAppCompanies = { PythonCoreCompany };

private readonly HashSet<string> _seenIds;
Expand Down

0 comments on commit a3b5cfd

Please sign in to comment.