diff options
author | Steve Dower <steve.dower@python.org> | 2024-02-19 20:36:20 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-19 20:36:20 (GMT) |
commit | 6cd18c75a41a74cab69ebef0b7def3e48421bdd1 (patch) | |
tree | de5e75b02bd9c8593612e013a9cccf6d6856da66 /PC | |
parent | 57d31ec3598429789492e0b3544efaaffca5799f (diff) | |
download | cpython-6cd18c75a41a74cab69ebef0b7def3e48421bdd1.zip cpython-6cd18c75a41a74cab69ebef0b7def3e48421bdd1.tar.gz cpython-6cd18c75a41a74cab69ebef0b7def3e48421bdd1.tar.bz2 |
gh-115543: Update py.exe to know about Python 3.13 and to install 3.12 by default (GH-115544)
Diffstat (limited to 'PC')
-rw-r--r-- | PC/launcher2.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/PC/launcher2.c b/PC/launcher2.c index 90b0fde..139aa61 100644 --- a/PC/launcher2.c +++ b/PC/launcher2.c @@ -1962,6 +1962,7 @@ struct AppxSearchInfo { struct AppxSearchInfo APPX_SEARCH[] = { // Releases made through the Store + { L"PythonSoftwareFoundation.Python.3.13_qbz5n2kfra8p0", L"3.13", 10 }, { L"PythonSoftwareFoundation.Python.3.12_qbz5n2kfra8p0", L"3.12", 10 }, { L"PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0", L"3.11", 10 }, { L"PythonSoftwareFoundation.Python.3.10_qbz5n2kfra8p0", L"3.10", 10 }, @@ -1971,6 +1972,7 @@ struct AppxSearchInfo APPX_SEARCH[] = { // Side-loadable releases. Note that the publisher ID changes whenever we // renew our code-signing certificate, so the newer ID has a higher // priority (lower sortKey) + { L"PythonSoftwareFoundation.Python.3.13_3847v3x7pw1km", L"3.13", 11 }, { L"PythonSoftwareFoundation.Python.3.12_3847v3x7pw1km", L"3.12", 11 }, { L"PythonSoftwareFoundation.Python.3.11_3847v3x7pw1km", L"3.11", 11 }, { L"PythonSoftwareFoundation.Python.3.11_hd69rhyc2wevp", L"3.11", 12 }, @@ -2052,7 +2054,8 @@ struct StoreSearchInfo { struct StoreSearchInfo STORE_SEARCH[] = { - { L"3", /* 3.11 */ L"9NRWMJP3717K" }, + { L"3", /* 3.12 */ L"9NCVDN91XZQP" }, + { L"3.13", L"9PNRBTZXMB4Z" }, { L"3.12", L"9NCVDN91XZQP" }, { L"3.11", L"9NRWMJP3717K" }, { L"3.10", L"9PJPW5LDXLZ5" }, |