diff --git a/_msbuild.py b/_msbuild.py index a26eb04..96e2e77 100644 --- a/_msbuild.py +++ b/_msbuild.py @@ -139,7 +139,7 @@ def mainw_exe(name): # Default index feed, mainly for testing right now Package( 'bundled', - File('src/index*.json'), + File('src/index*.json', allow_none=True), ), # Directory for template files diff --git a/make.py b/make.py index e1c12fa..1da9cc2 100644 --- a/make.py +++ b/make.py @@ -42,11 +42,9 @@ cwd=DIRS["root"], env={**os.environ, "BUILD_SOURCEBRANCH": ref}) -# Overwrite bundled feed. This will be removed eventually -run([sys.executable, "scripts/generate-nuget-index.py", LAYOUT / "bundled" / "index.json"]) - # Bundle current latest release run([LAYOUT / "py-manager.exe", "install", "-v", "-f", "--download", TEMP / "bundle", "default"]) +(LAYOUT / "bundled").mkdir(parents=True, exist_ok=True) (TEMP / "bundle" / "index.json").rename(LAYOUT / "bundled" / "fallback-index.json") for f in (TEMP / "bundle").iterdir(): f.rename(LAYOUT / "bundled" / f.name) diff --git a/scripts/generate-nuget-index.py b/scripts/generate-nuget-index.py index 8067887..b55f11d 100644 --- a/scripts/generate-nuget-index.py +++ b/scripts/generate-nuget-index.py @@ -23,6 +23,15 @@ def irm(url, method="GET", headers={}): NUGET_SOURCE = "https://api.nuget.org/v3/index.json" +# Earlier versions than this go into "legacy.json" +CURRENT_VERSION = Version("3.10") + +SKIP_OLD_PRERELEASE = True + +# Indentation for output files +INDENT = None + + SCHEMA = { "python": { "schema": 1, @@ -35,6 +44,7 @@ def irm(url, method="GET", headers={}): "$XYVERSIONNOPRE$-64", "$XVERSIONNOPRE$-64", "$XYVERSIONDEV$-64", + "$XVERSIONDEV$-64", ], "run-for": [ {"tag": "$FULLVERSION$-64", "target": "python.exe"}, @@ -80,7 +90,7 @@ def irm(url, method="GET", headers={}): "Icon": "%PREFIX%python.exe", }, { - "Name": "Python $XYVERSION$ Documentation", + "Name": "Python $XYVERSION$ Online Documentation", "Icon": r"%SystemRoot%\System32\SHELL32.dll", "IconIndex": 13, "Target": "https://docs.python.org/$XYVERSION$/", @@ -108,6 +118,7 @@ def irm(url, method="GET", headers={}): "$XYVERSIONNOPRE$-32", "$XVERSIONNOPRE$-32", "$XYVERSIONDEV$-32", + "$XVERSIONDEV$-32", ], "run-for": [ {"tag": "$FULLVERSION$-32", "target": "python.exe"}, @@ -153,7 +164,7 @@ def irm(url, method="GET", headers={}): "Icon": "%PREFIX%python.exe", }, { - "Name": "Python $XYVERSION$ Documentation", + "Name": "Python $XYVERSION$ Online Documentation", "Icon": r"%SystemRoot%\System32\SHELL32.dll", "IconIndex": 13, "Target": "https://docs.python.org/$XYVERSION$/", @@ -181,6 +192,7 @@ def irm(url, method="GET", headers={}): "$XYVERSIONNOPRE$-arm64", "$XVERSIONNOPRE$-arm64", "$XYVERSIONDEV$-arm64", + "$XVERSIONDEV$-arm64", ], "run-for": [ {"tag": "$FULLVERSION$-arm64", "target": "python.exe"}, @@ -226,7 +238,7 @@ def irm(url, method="GET", headers={}): "Icon": "%PREFIX%python.exe", }, { - "Name": "Python $XYVERSION$ Documentation", + "Name": "Python $XYVERSION$ Online Documentation", "Icon": r"%SystemRoot%\System32\SHELL32.dll", "IconIndex": 13, "Target": "https://docs.python.org/$XYVERSION$/", @@ -254,6 +266,7 @@ def irm(url, method="GET", headers={}): "$XYVERSIONNOPRE$t-64", "$XVERSIONNOPRE$t-64", "$XYVERSIONDEV$t-64", + "$XVERSIONDEV$t-64", ], "run-for": [ {"tag": "$FULLVERSION$t-64", "target": "python$XYVERSION$t.exe"}, @@ -299,7 +312,7 @@ def irm(url, method="GET", headers={}): "Icon": "%PREFIX%python.exe", }, { - "Name": "Python $XYVERSION$ Documentation", + "Name": "Python $XYVERSION$ Online Documentation", "Icon": r"%SystemRoot%\System32\SHELL32.dll", "IconIndex": 13, "Target": "https://docs.python.org/$XYVERSION$/", @@ -327,6 +340,7 @@ def irm(url, method="GET", headers={}): "$XYVERSIONNOPRE$t-32", "$XVERSIONNOPRE$t-32", "$XYVERSIONDEV$t-32", + "$XVERSIONDEV$t-32", ], "run-for": [ {"tag": "$FULLVERSION$t-32", "target": "python$XYVERSION$t.exe"}, @@ -372,7 +386,7 @@ def irm(url, method="GET", headers={}): "Icon": "%PREFIX%python.exe", }, { - "Name": "Python $XYVERSION$ Documentation", + "Name": "Python $XYVERSION$ Online Documentation", "Icon": r"%SystemRoot%\System32\SHELL32.dll", "IconIndex": 13, "Target": "https://docs.python.org/$XYVERSION$/", @@ -400,6 +414,7 @@ def irm(url, method="GET", headers={}): "$XYVERSIONNOPRE$t-arm64", "$XVERSIONNOPRE$t-arm64", "$XYVERSIONDEV$t-arm64", + "$XVERSIONDEV$t-arm64", ], "run-for": [ {"tag": "$FULLVERSION$t-arm64", "target": "python$XYVERSION$t.exe"}, @@ -445,7 +460,7 @@ def irm(url, method="GET", headers={}): "Icon": "%PREFIX%python.exe", }, { - "Name": "Python $XYVERSION$ Documentation", + "Name": "Python $XYVERSION$ Online Documentation", "Icon": r"%SystemRoot%\System32\SHELL32.dll", "IconIndex": 13, "Target": "https://docs.python.org/$XYVERSION$/", @@ -499,9 +514,6 @@ def dict_sub(d, subs): INDEX_OLD = {"versions": []} INDEX_CURRENT = {"versions": [], "next": ""} -# Earlier versions than this go into "legacy.json" -CURRENT_VERSION = Version("3.12") - for name, schema in SCHEMA.items(): data = irm(f"{BASE_URL}/{name}/index.json") @@ -509,6 +521,8 @@ def dict_sub(d, subs): last_v = None for v in all_versions: + if v.is_prerelease and v < CURRENT_VERSION and SKIP_OLD_PRERELEASE: + continue if v.is_prerelease and last_v and v.to_python_style(3, False) == last_v: continue subs = { @@ -518,6 +532,7 @@ def dict_sub(d, subs): "XYVERSIONDEV": (v.to_python_style(2, False) + "-dev") if v.is_prerelease else None, "XVERSION": v.to_python_style(1, False), "XVERSIONNOPRE": None if v.is_prerelease else v.to_python_style(1, False), + "XVERSIONDEV": (v.to_python_style(1, False) + "-dev") if v.is_prerelease else None, "PACKAGEURL": f"{BASE_URL}/{name}/{v}/{name}.{v}.nupkg", } index = INDEX_CURRENT if v >= CURRENT_VERSION else INDEX_OLD @@ -525,14 +540,17 @@ def dict_sub(d, subs): last_v = subs["FULLVERSION"] +INDEX_CURRENT["versions"].sort(key=lambda i: (Version(i["sort-version"]), i["id"]), reverse=True) +INDEX_OLD["versions"].sort(key=lambda i: (Version(i["sort-version"]), i["id"]), reverse=True) + for file in map(Path, sys.argv[1:]): legacy_name = f"{file.stem}-legacy.json" INDEX_CURRENT["next"] = legacy_name file.parent.mkdir(exist_ok=True, parents=True) with open(file, "w", encoding="utf-8") as f: - json.dump(INDEX_CURRENT, f, indent=2) + json.dump(INDEX_CURRENT, f, indent=INDENT) with open(file.with_name(legacy_name), "w", encoding="utf-8") as f: - json.dump(INDEX_OLD, f, indent=2) + json.dump(INDEX_OLD, f, indent=INDENT) if not sys.argv[1:]: diff --git a/src/index-legacy.json b/src/index-legacy.json deleted file mode 100644 index c290a50..0000000 --- a/src/index-legacy.json +++ /dev/null @@ -1,17873 +0,0 @@ -{ - "versions": [ - { - "schema": 1, - "id": "pythoncore-3.11-64", - "sort-version": "3.11.9", - "company": "PythonCore", - "tag": "3.11-64", - "install-for": [ - "3.11.9-64", - "3.11-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.11.9-64", - "target": "python.exe" - }, - { - "tag": "3.11-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.11.9-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.11-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.11.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.11.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.11", - "DisplayName": "Python 3.11.9", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.11", - "Version": "3.11.9", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.11/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.11", - "Items": [ - { - "Name": "Python 3.11", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.11 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.11/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.11/" - } - ], - "display-name": "Python 3.11.9", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.11.9/python.3.11.9.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.11-64", - "sort-version": "3.11.8", - "company": "PythonCore", - "tag": "3.11-64", - "install-for": [ - "3.11.8-64", - "3.11-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.11.8-64", - "target": "python.exe" - }, - { - "tag": "3.11-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.11.8-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.11-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.11.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.11.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.11", - "DisplayName": "Python 3.11.8", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.11", - "Version": "3.11.8", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.11/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.11", - "Items": [ - { - "Name": "Python 3.11", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.11 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.11/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.11/" - } - ], - "display-name": "Python 3.11.8", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.11.8/python.3.11.8.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.11-64", - "sort-version": "3.11.7", - "company": "PythonCore", - "tag": "3.11-64", - "install-for": [ - "3.11.7-64", - "3.11-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.11.7-64", - "target": "python.exe" - }, - { - "tag": "3.11-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.11.7-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.11-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.11.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.11.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.11", - "DisplayName": "Python 3.11.7", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.11", - "Version": "3.11.7", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.11/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.11", - "Items": [ - { - "Name": "Python 3.11", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.11 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.11/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.11/" - } - ], - "display-name": "Python 3.11.7", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.11.7/python.3.11.7.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.11-64", - "sort-version": "3.11.6", - "company": "PythonCore", - "tag": "3.11-64", - "install-for": [ - "3.11.6-64", - "3.11-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.11.6-64", - "target": "python.exe" - }, - { - "tag": "3.11-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.11.6-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.11-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.11.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.11.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.11", - "DisplayName": "Python 3.11.6", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.11", - "Version": "3.11.6", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.11/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.11", - "Items": [ - { - "Name": "Python 3.11", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.11 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.11/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.11/" - } - ], - "display-name": "Python 3.11.6", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.11.6/python.3.11.6.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.11-64", - "sort-version": "3.11.5", - "company": "PythonCore", - "tag": "3.11-64", - "install-for": [ - "3.11.5-64", - "3.11-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.11.5-64", - "target": "python.exe" - }, - { - "tag": "3.11-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.11.5-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.11-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.11.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.11.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.11", - "DisplayName": "Python 3.11.5", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.11", - "Version": "3.11.5", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.11/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.11", - "Items": [ - { - "Name": "Python 3.11", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.11 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.11/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.11/" - } - ], - "display-name": "Python 3.11.5", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.11.5/python.3.11.5.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.11-64", - "sort-version": "3.11.4", - "company": "PythonCore", - "tag": "3.11-64", - "install-for": [ - "3.11.4-64", - "3.11-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.11.4-64", - "target": "python.exe" - }, - { - "tag": "3.11-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.11.4-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.11-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.11.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.11.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.11", - "DisplayName": "Python 3.11.4", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.11", - "Version": "3.11.4", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.11/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.11", - "Items": [ - { - "Name": "Python 3.11", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.11 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.11/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.11/" - } - ], - "display-name": "Python 3.11.4", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.11.4/python.3.11.4.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.11-64", - "sort-version": "3.11.3", - "company": "PythonCore", - "tag": "3.11-64", - "install-for": [ - "3.11.3-64", - "3.11-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.11.3-64", - "target": "python.exe" - }, - { - "tag": "3.11-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.11.3-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.11-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.11.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.11.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.11", - "DisplayName": "Python 3.11.3", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.11", - "Version": "3.11.3", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.11/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.11", - "Items": [ - { - "Name": "Python 3.11", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.11 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.11/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.11/" - } - ], - "display-name": "Python 3.11.3", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.11.3/python.3.11.3.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.11-64", - "sort-version": "3.11.2", - "company": "PythonCore", - "tag": "3.11-64", - "install-for": [ - "3.11.2-64", - "3.11-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.11.2-64", - "target": "python.exe" - }, - { - "tag": "3.11-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.11.2-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.11-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.11.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.11.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.11", - "DisplayName": "Python 3.11.2", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.11", - "Version": "3.11.2", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.11/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.11", - "Items": [ - { - "Name": "Python 3.11", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.11 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.11/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.11/" - } - ], - "display-name": "Python 3.11.2", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.11.2/python.3.11.2.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.11-64", - "sort-version": "3.11.1", - "company": "PythonCore", - "tag": "3.11-64", - "install-for": [ - "3.11.1-64", - "3.11-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.11.1-64", - "target": "python.exe" - }, - { - "tag": "3.11-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.11.1-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.11-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.11.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.11.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.11", - "DisplayName": "Python 3.11.1", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.11", - "Version": "3.11.1", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.11/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.11", - "Items": [ - { - "Name": "Python 3.11", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.11 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.11/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.11/" - } - ], - "display-name": "Python 3.11.1", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.11.1/python.3.11.1.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.11-64", - "sort-version": "3.11.0", - "company": "PythonCore", - "tag": "3.11-64", - "install-for": [ - "3.11.0-64", - "3.11-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.11.0-64", - "target": "python.exe" - }, - { - "tag": "3.11-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.11.0-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.11-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.11.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.11.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.11", - "DisplayName": "Python 3.11.0", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.11", - "Version": "3.11.0", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.11/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.11", - "Items": [ - { - "Name": "Python 3.11", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.11 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.11/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.11/" - } - ], - "display-name": "Python 3.11.0", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.11.0/python.3.11.0.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.10-64", - "sort-version": "3.10.11", - "company": "PythonCore", - "tag": "3.10-64", - "install-for": [ - "3.10.11-64", - "3.10-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.10.11-64", - "target": "python.exe" - }, - { - "tag": "3.10-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.10.11-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.10-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.10.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.10.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.10", - "DisplayName": "Python 3.10.11", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.10", - "Version": "3.10.11", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.10/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.10", - "Items": [ - { - "Name": "Python 3.10", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.10 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.10/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.10/" - } - ], - "display-name": "Python 3.10.11", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.10.11/python.3.10.11.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.10-64", - "sort-version": "3.10.10", - "company": "PythonCore", - "tag": "3.10-64", - "install-for": [ - "3.10.10-64", - "3.10-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.10.10-64", - "target": "python.exe" - }, - { - "tag": "3.10-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.10.10-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.10-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.10.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.10.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.10", - "DisplayName": "Python 3.10.10", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.10", - "Version": "3.10.10", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.10/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.10", - "Items": [ - { - "Name": "Python 3.10", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.10 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.10/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.10/" - } - ], - "display-name": "Python 3.10.10", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.10.10/python.3.10.10.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.10-64", - "sort-version": "3.10.9", - "company": "PythonCore", - "tag": "3.10-64", - "install-for": [ - "3.10.9-64", - "3.10-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.10.9-64", - "target": "python.exe" - }, - { - "tag": "3.10-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.10.9-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.10-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.10.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.10.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.10", - "DisplayName": "Python 3.10.9", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.10", - "Version": "3.10.9", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.10/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.10", - "Items": [ - { - "Name": "Python 3.10", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.10 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.10/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.10/" - } - ], - "display-name": "Python 3.10.9", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.10.9/python.3.10.9.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.10-64", - "sort-version": "3.10.8", - "company": "PythonCore", - "tag": "3.10-64", - "install-for": [ - "3.10.8-64", - "3.10-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.10.8-64", - "target": "python.exe" - }, - { - "tag": "3.10-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.10.8-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.10-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.10.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.10.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.10", - "DisplayName": "Python 3.10.8", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.10", - "Version": "3.10.8", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.10/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.10", - "Items": [ - { - "Name": "Python 3.10", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.10 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.10/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.10/" - } - ], - "display-name": "Python 3.10.8", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.10.8/python.3.10.8.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.10-64", - "sort-version": "3.10.7", - "company": "PythonCore", - "tag": "3.10-64", - "install-for": [ - "3.10.7-64", - "3.10-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.10.7-64", - "target": "python.exe" - }, - { - "tag": "3.10-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.10.7-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.10-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.10.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.10.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.10", - "DisplayName": "Python 3.10.7", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.10", - "Version": "3.10.7", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.10/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.10", - "Items": [ - { - "Name": "Python 3.10", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.10 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.10/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.10/" - } - ], - "display-name": "Python 3.10.7", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.10.7/python.3.10.7.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.10-64", - "sort-version": "3.10.6", - "company": "PythonCore", - "tag": "3.10-64", - "install-for": [ - "3.10.6-64", - "3.10-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.10.6-64", - "target": "python.exe" - }, - { - "tag": "3.10-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.10.6-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.10-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.10.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.10.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.10", - "DisplayName": "Python 3.10.6", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.10", - "Version": "3.10.6", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.10/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.10", - "Items": [ - { - "Name": "Python 3.10", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.10 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.10/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.10/" - } - ], - "display-name": "Python 3.10.6", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.10.6/python.3.10.6.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.10-64", - "sort-version": "3.10.5", - "company": "PythonCore", - "tag": "3.10-64", - "install-for": [ - "3.10.5-64", - "3.10-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.10.5-64", - "target": "python.exe" - }, - { - "tag": "3.10-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.10.5-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.10-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.10.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.10.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.10", - "DisplayName": "Python 3.10.5", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.10", - "Version": "3.10.5", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.10/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.10", - "Items": [ - { - "Name": "Python 3.10", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.10 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.10/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.10/" - } - ], - "display-name": "Python 3.10.5", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.10.5/python.3.10.5.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.10-64", - "sort-version": "3.10.4", - "company": "PythonCore", - "tag": "3.10-64", - "install-for": [ - "3.10.4-64", - "3.10-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.10.4-64", - "target": "python.exe" - }, - { - "tag": "3.10-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.10.4-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.10-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.10.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.10.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.10", - "DisplayName": "Python 3.10.4", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.10", - "Version": "3.10.4", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.10/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.10", - "Items": [ - { - "Name": "Python 3.10", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.10 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.10/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.10/" - } - ], - "display-name": "Python 3.10.4", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.10.4/python.3.10.4.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.10-64", - "sort-version": "3.10.3", - "company": "PythonCore", - "tag": "3.10-64", - "install-for": [ - "3.10.3-64", - "3.10-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.10.3-64", - "target": "python.exe" - }, - { - "tag": "3.10-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.10.3-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.10-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.10.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.10.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.10", - "DisplayName": "Python 3.10.3", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.10", - "Version": "3.10.3", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.10/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.10", - "Items": [ - { - "Name": "Python 3.10", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.10 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.10/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.10/" - } - ], - "display-name": "Python 3.10.3", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.10.3/python.3.10.3.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.10-64", - "sort-version": "3.10.2", - "company": "PythonCore", - "tag": "3.10-64", - "install-for": [ - "3.10.2-64", - "3.10-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.10.2-64", - "target": "python.exe" - }, - { - "tag": "3.10-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.10.2-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.10-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.10.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.10.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.10", - "DisplayName": "Python 3.10.2", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.10", - "Version": "3.10.2", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.10/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.10", - "Items": [ - { - "Name": "Python 3.10", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.10 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.10/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.10/" - } - ], - "display-name": "Python 3.10.2", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.10.2/python.3.10.2.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.10-64", - "sort-version": "3.10.1", - "company": "PythonCore", - "tag": "3.10-64", - "install-for": [ - "3.10.1-64", - "3.10-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.10.1-64", - "target": "python.exe" - }, - { - "tag": "3.10-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.10.1-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.10-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.10.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.10.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.10", - "DisplayName": "Python 3.10.1", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.10", - "Version": "3.10.1", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.10/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.10", - "Items": [ - { - "Name": "Python 3.10", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.10 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.10/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.10/" - } - ], - "display-name": "Python 3.10.1", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.10.1/python.3.10.1.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.10-64", - "sort-version": "3.10.0", - "company": "PythonCore", - "tag": "3.10-64", - "install-for": [ - "3.10.0-64", - "3.10-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.10.0-64", - "target": "python.exe" - }, - { - "tag": "3.10-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.10.0-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.10-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.10.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.10.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.10", - "DisplayName": "Python 3.10.0", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.10", - "Version": "3.10.0", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.10/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.10", - "Items": [ - { - "Name": "Python 3.10", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.10 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.10/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.10/" - } - ], - "display-name": "Python 3.10.0", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.10.0/python.3.10.0.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.9-64", - "sort-version": "3.9.13", - "company": "PythonCore", - "tag": "3.9-64", - "install-for": [ - "3.9.13-64", - "3.9-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.9.13-64", - "target": "python.exe" - }, - { - "tag": "3.9-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.9.13-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.9-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.9.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.9.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.9", - "DisplayName": "Python 3.9.13", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.9", - "Version": "3.9.13", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.9/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.9", - "Items": [ - { - "Name": "Python 3.9", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.9 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.9/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.9/" - } - ], - "display-name": "Python 3.9.13", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.9.13/python.3.9.13.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.9-64", - "sort-version": "3.9.12", - "company": "PythonCore", - "tag": "3.9-64", - "install-for": [ - "3.9.12-64", - "3.9-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.9.12-64", - "target": "python.exe" - }, - { - "tag": "3.9-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.9.12-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.9-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.9.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.9.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.9", - "DisplayName": "Python 3.9.12", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.9", - "Version": "3.9.12", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.9/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.9", - "Items": [ - { - "Name": "Python 3.9", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.9 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.9/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.9/" - } - ], - "display-name": "Python 3.9.12", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.9.12/python.3.9.12.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.9-64", - "sort-version": "3.9.11", - "company": "PythonCore", - "tag": "3.9-64", - "install-for": [ - "3.9.11-64", - "3.9-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.9.11-64", - "target": "python.exe" - }, - { - "tag": "3.9-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.9.11-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.9-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.9.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.9.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.9", - "DisplayName": "Python 3.9.11", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.9", - "Version": "3.9.11", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.9/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.9", - "Items": [ - { - "Name": "Python 3.9", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.9 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.9/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.9/" - } - ], - "display-name": "Python 3.9.11", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.9.11.1/python.3.9.11.1.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.9-64", - "sort-version": "3.9.10", - "company": "PythonCore", - "tag": "3.9-64", - "install-for": [ - "3.9.10-64", - "3.9-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.9.10-64", - "target": "python.exe" - }, - { - "tag": "3.9-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.9.10-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.9-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.9.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.9.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.9", - "DisplayName": "Python 3.9.10", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.9", - "Version": "3.9.10", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.9/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.9", - "Items": [ - { - "Name": "Python 3.9", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.9 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.9/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.9/" - } - ], - "display-name": "Python 3.9.10", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.9.10/python.3.9.10.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.9-64", - "sort-version": "3.9.9", - "company": "PythonCore", - "tag": "3.9-64", - "install-for": [ - "3.9.9-64", - "3.9-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.9.9-64", - "target": "python.exe" - }, - { - "tag": "3.9-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.9.9-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.9-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.9.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.9.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.9", - "DisplayName": "Python 3.9.9", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.9", - "Version": "3.9.9", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.9/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.9", - "Items": [ - { - "Name": "Python 3.9", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.9 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.9/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.9/" - } - ], - "display-name": "Python 3.9.9", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.9.9/python.3.9.9.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.9-64", - "sort-version": "3.9.8", - "company": "PythonCore", - "tag": "3.9-64", - "install-for": [ - "3.9.8-64", - "3.9-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.9.8-64", - "target": "python.exe" - }, - { - "tag": "3.9-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.9.8-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.9-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.9.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.9.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.9", - "DisplayName": "Python 3.9.8", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.9", - "Version": "3.9.8", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.9/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.9", - "Items": [ - { - "Name": "Python 3.9", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.9 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.9/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.9/" - } - ], - "display-name": "Python 3.9.8", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.9.8/python.3.9.8.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.9-64", - "sort-version": "3.9.7", - "company": "PythonCore", - "tag": "3.9-64", - "install-for": [ - "3.9.7-64", - "3.9-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.9.7-64", - "target": "python.exe" - }, - { - "tag": "3.9-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.9.7-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.9-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.9.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.9.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.9", - "DisplayName": "Python 3.9.7", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.9", - "Version": "3.9.7", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.9/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.9", - "Items": [ - { - "Name": "Python 3.9", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.9 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.9/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.9/" - } - ], - "display-name": "Python 3.9.7", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.9.7/python.3.9.7.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.9-64", - "sort-version": "3.9.6", - "company": "PythonCore", - "tag": "3.9-64", - "install-for": [ - "3.9.6-64", - "3.9-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.9.6-64", - "target": "python.exe" - }, - { - "tag": "3.9-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.9.6-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.9-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.9.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.9.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.9", - "DisplayName": "Python 3.9.6", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.9", - "Version": "3.9.6", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.9/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.9", - "Items": [ - { - "Name": "Python 3.9", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.9 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.9/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.9/" - } - ], - "display-name": "Python 3.9.6", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.9.6/python.3.9.6.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.9-64", - "sort-version": "3.9.5", - "company": "PythonCore", - "tag": "3.9-64", - "install-for": [ - "3.9.5-64", - "3.9-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.9.5-64", - "target": "python.exe" - }, - { - "tag": "3.9-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.9.5-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.9-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.9.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.9.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.9", - "DisplayName": "Python 3.9.5", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.9", - "Version": "3.9.5", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.9/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.9", - "Items": [ - { - "Name": "Python 3.9", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.9 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.9/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.9/" - } - ], - "display-name": "Python 3.9.5", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.9.5/python.3.9.5.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.9-64", - "sort-version": "3.9.4", - "company": "PythonCore", - "tag": "3.9-64", - "install-for": [ - "3.9.4-64", - "3.9-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.9.4-64", - "target": "python.exe" - }, - { - "tag": "3.9-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.9.4-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.9-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.9.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.9.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.9", - "DisplayName": "Python 3.9.4", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.9", - "Version": "3.9.4", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.9/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.9", - "Items": [ - { - "Name": "Python 3.9", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.9 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.9/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.9/" - } - ], - "display-name": "Python 3.9.4", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.9.4/python.3.9.4.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.9-64", - "sort-version": "3.9.3", - "company": "PythonCore", - "tag": "3.9-64", - "install-for": [ - "3.9.3-64", - "3.9-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.9.3-64", - "target": "python.exe" - }, - { - "tag": "3.9-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.9.3-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.9-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.9.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.9.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.9", - "DisplayName": "Python 3.9.3", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.9", - "Version": "3.9.3", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.9/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.9", - "Items": [ - { - "Name": "Python 3.9", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.9 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.9/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.9/" - } - ], - "display-name": "Python 3.9.3", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.9.3/python.3.9.3.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.9-64", - "sort-version": "3.9.2", - "company": "PythonCore", - "tag": "3.9-64", - "install-for": [ - "3.9.2-64", - "3.9-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.9.2-64", - "target": "python.exe" - }, - { - "tag": "3.9-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.9.2-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.9-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.9.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.9.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.9", - "DisplayName": "Python 3.9.2", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.9", - "Version": "3.9.2", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.9/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.9", - "Items": [ - { - "Name": "Python 3.9", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.9 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.9/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.9/" - } - ], - "display-name": "Python 3.9.2", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.9.2/python.3.9.2.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.9-64", - "sort-version": "3.9.1", - "company": "PythonCore", - "tag": "3.9-64", - "install-for": [ - "3.9.1-64", - "3.9-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.9.1-64", - "target": "python.exe" - }, - { - "tag": "3.9-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.9.1-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.9-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.9.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.9.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.9", - "DisplayName": "Python 3.9.1", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.9", - "Version": "3.9.1", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.9/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.9", - "Items": [ - { - "Name": "Python 3.9", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.9 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.9/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.9/" - } - ], - "display-name": "Python 3.9.1", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.9.1/python.3.9.1.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.9-64", - "sort-version": "3.9.0", - "company": "PythonCore", - "tag": "3.9-64", - "install-for": [ - "3.9.0-64", - "3.9-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.9.0-64", - "target": "python.exe" - }, - { - "tag": "3.9-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.9.0-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.9-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.9.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.9.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.9", - "DisplayName": "Python 3.9.0", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.9", - "Version": "3.9.0", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.9/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.9", - "Items": [ - { - "Name": "Python 3.9", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.9 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.9/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.9/" - } - ], - "display-name": "Python 3.9.0", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.9.0/python.3.9.0.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.8-64", - "sort-version": "3.8.10", - "company": "PythonCore", - "tag": "3.8-64", - "install-for": [ - "3.8.10-64", - "3.8-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.8.10-64", - "target": "python.exe" - }, - { - "tag": "3.8-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.8.10-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.8-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.8.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.8.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.8", - "DisplayName": "Python 3.8.10", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.8", - "Version": "3.8.10", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.8/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.8", - "Items": [ - { - "Name": "Python 3.8", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.8 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.8/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.8/" - } - ], - "display-name": "Python 3.8.10", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.8.10/python.3.8.10.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.8-64", - "sort-version": "3.8.9", - "company": "PythonCore", - "tag": "3.8-64", - "install-for": [ - "3.8.9-64", - "3.8-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.8.9-64", - "target": "python.exe" - }, - { - "tag": "3.8-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.8.9-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.8-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.8.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.8.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.8", - "DisplayName": "Python 3.8.9", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.8", - "Version": "3.8.9", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.8/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.8", - "Items": [ - { - "Name": "Python 3.8", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.8 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.8/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.8/" - } - ], - "display-name": "Python 3.8.9", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.8.9/python.3.8.9.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.8-64", - "sort-version": "3.8.8", - "company": "PythonCore", - "tag": "3.8-64", - "install-for": [ - "3.8.8-64", - "3.8-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.8.8-64", - "target": "python.exe" - }, - { - "tag": "3.8-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.8.8-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.8-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.8.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.8.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.8", - "DisplayName": "Python 3.8.8", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.8", - "Version": "3.8.8", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.8/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.8", - "Items": [ - { - "Name": "Python 3.8", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.8 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.8/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.8/" - } - ], - "display-name": "Python 3.8.8", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.8.8/python.3.8.8.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.8-64", - "sort-version": "3.8.7", - "company": "PythonCore", - "tag": "3.8-64", - "install-for": [ - "3.8.7-64", - "3.8-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.8.7-64", - "target": "python.exe" - }, - { - "tag": "3.8-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.8.7-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.8-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.8.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.8.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.8", - "DisplayName": "Python 3.8.7", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.8", - "Version": "3.8.7", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.8/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.8", - "Items": [ - { - "Name": "Python 3.8", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.8 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.8/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.8/" - } - ], - "display-name": "Python 3.8.7", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.8.7/python.3.8.7.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.8-64", - "sort-version": "3.8.6", - "company": "PythonCore", - "tag": "3.8-64", - "install-for": [ - "3.8.6-64", - "3.8-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.8.6-64", - "target": "python.exe" - }, - { - "tag": "3.8-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.8.6-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.8-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.8.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.8.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.8", - "DisplayName": "Python 3.8.6", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.8", - "Version": "3.8.6", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.8/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.8", - "Items": [ - { - "Name": "Python 3.8", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.8 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.8/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.8/" - } - ], - "display-name": "Python 3.8.6", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.8.6/python.3.8.6.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.8-64", - "sort-version": "3.8.5", - "company": "PythonCore", - "tag": "3.8-64", - "install-for": [ - "3.8.5-64", - "3.8-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.8.5-64", - "target": "python.exe" - }, - { - "tag": "3.8-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.8.5-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.8-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.8.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.8.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.8", - "DisplayName": "Python 3.8.5", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.8", - "Version": "3.8.5", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.8/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.8", - "Items": [ - { - "Name": "Python 3.8", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.8 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.8/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.8/" - } - ], - "display-name": "Python 3.8.5", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.8.5/python.3.8.5.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.8-64", - "sort-version": "3.8.4", - "company": "PythonCore", - "tag": "3.8-64", - "install-for": [ - "3.8.4-64", - "3.8-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.8.4-64", - "target": "python.exe" - }, - { - "tag": "3.8-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.8.4-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.8-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.8.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.8.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.8", - "DisplayName": "Python 3.8.4", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.8", - "Version": "3.8.4", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.8/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.8", - "Items": [ - { - "Name": "Python 3.8", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.8 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.8/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.8/" - } - ], - "display-name": "Python 3.8.4", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.8.4/python.3.8.4.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.8-64", - "sort-version": "3.8.3", - "company": "PythonCore", - "tag": "3.8-64", - "install-for": [ - "3.8.3-64", - "3.8-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.8.3-64", - "target": "python.exe" - }, - { - "tag": "3.8-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.8.3-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.8-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.8.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.8.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.8", - "DisplayName": "Python 3.8.3", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.8", - "Version": "3.8.3", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.8/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.8", - "Items": [ - { - "Name": "Python 3.8", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.8 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.8/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.8/" - } - ], - "display-name": "Python 3.8.3", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.8.3/python.3.8.3.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.8-64", - "sort-version": "3.8.2", - "company": "PythonCore", - "tag": "3.8-64", - "install-for": [ - "3.8.2-64", - "3.8-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.8.2-64", - "target": "python.exe" - }, - { - "tag": "3.8-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.8.2-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.8-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.8.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.8.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.8", - "DisplayName": "Python 3.8.2", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.8", - "Version": "3.8.2", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.8/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.8", - "Items": [ - { - "Name": "Python 3.8", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.8 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.8/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.8/" - } - ], - "display-name": "Python 3.8.2", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.8.2/python.3.8.2.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.8-64", - "sort-version": "3.8.1", - "company": "PythonCore", - "tag": "3.8-64", - "install-for": [ - "3.8.1-64", - "3.8-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.8.1-64", - "target": "python.exe" - }, - { - "tag": "3.8-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.8.1-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.8-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.8.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.8.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.8", - "DisplayName": "Python 3.8.1", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.8", - "Version": "3.8.1", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.8/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.8", - "Items": [ - { - "Name": "Python 3.8", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.8 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.8/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.8/" - } - ], - "display-name": "Python 3.8.1", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.8.1/python.3.8.1.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.8-64", - "sort-version": "3.8.0", - "company": "PythonCore", - "tag": "3.8-64", - "install-for": [ - "3.8.0-64", - "3.8-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.8.0-64", - "target": "python.exe" - }, - { - "tag": "3.8-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.8.0-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.8-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.8.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.8.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.8", - "DisplayName": "Python 3.8.0", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.8", - "Version": "3.8.0", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.8/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.8", - "Items": [ - { - "Name": "Python 3.8", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.8 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.8/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.8/" - } - ], - "display-name": "Python 3.8.0", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.8.0/python.3.8.0.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.7-64", - "sort-version": "3.7.9", - "company": "PythonCore", - "tag": "3.7-64", - "install-for": [ - "3.7.9-64", - "3.7-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.7.9-64", - "target": "python.exe" - }, - { - "tag": "3.7-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.7.9-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.7-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.7.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.7.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.7", - "DisplayName": "Python 3.7.9", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.7", - "Version": "3.7.9", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.7/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.7", - "Items": [ - { - "Name": "Python 3.7", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.7 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.7/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.7/" - } - ], - "display-name": "Python 3.7.9", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.7.9/python.3.7.9.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.7-64", - "sort-version": "3.7.8", - "company": "PythonCore", - "tag": "3.7-64", - "install-for": [ - "3.7.8-64", - "3.7-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.7.8-64", - "target": "python.exe" - }, - { - "tag": "3.7-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.7.8-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.7-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.7.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.7.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.7", - "DisplayName": "Python 3.7.8", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.7", - "Version": "3.7.8", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.7/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.7", - "Items": [ - { - "Name": "Python 3.7", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.7 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.7/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.7/" - } - ], - "display-name": "Python 3.7.8", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.7.8/python.3.7.8.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.7-64", - "sort-version": "3.7.7", - "company": "PythonCore", - "tag": "3.7-64", - "install-for": [ - "3.7.7-64", - "3.7-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.7.7-64", - "target": "python.exe" - }, - { - "tag": "3.7-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.7.7-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.7-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.7.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.7.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.7", - "DisplayName": "Python 3.7.7", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.7", - "Version": "3.7.7", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.7/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.7", - "Items": [ - { - "Name": "Python 3.7", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.7 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.7/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.7/" - } - ], - "display-name": "Python 3.7.7", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.7.7/python.3.7.7.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.7-64", - "sort-version": "3.7.6", - "company": "PythonCore", - "tag": "3.7-64", - "install-for": [ - "3.7.6-64", - "3.7-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.7.6-64", - "target": "python.exe" - }, - { - "tag": "3.7-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.7.6-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.7-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.7.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.7.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.7", - "DisplayName": "Python 3.7.6", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.7", - "Version": "3.7.6", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.7/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.7", - "Items": [ - { - "Name": "Python 3.7", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.7 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.7/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.7/" - } - ], - "display-name": "Python 3.7.6", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.7.6/python.3.7.6.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.7-64", - "sort-version": "3.7.5", - "company": "PythonCore", - "tag": "3.7-64", - "install-for": [ - "3.7.5-64", - "3.7-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.7.5-64", - "target": "python.exe" - }, - { - "tag": "3.7-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.7.5-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.7-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.7.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.7.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.7", - "DisplayName": "Python 3.7.5", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.7", - "Version": "3.7.5", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.7/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.7", - "Items": [ - { - "Name": "Python 3.7", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.7 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.7/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.7/" - } - ], - "display-name": "Python 3.7.5", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.7.5/python.3.7.5.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.7-64", - "sort-version": "3.7.4", - "company": "PythonCore", - "tag": "3.7-64", - "install-for": [ - "3.7.4-64", - "3.7-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.7.4-64", - "target": "python.exe" - }, - { - "tag": "3.7-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.7.4-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.7-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.7.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.7.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.7", - "DisplayName": "Python 3.7.4", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.7", - "Version": "3.7.4", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.7/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.7", - "Items": [ - { - "Name": "Python 3.7", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.7 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.7/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.7/" - } - ], - "display-name": "Python 3.7.4", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.7.4/python.3.7.4.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.7-64", - "sort-version": "3.7.3", - "company": "PythonCore", - "tag": "3.7-64", - "install-for": [ - "3.7.3-64", - "3.7-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.7.3-64", - "target": "python.exe" - }, - { - "tag": "3.7-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.7.3-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.7-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.7.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.7.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.7", - "DisplayName": "Python 3.7.3", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.7", - "Version": "3.7.3", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.7/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.7", - "Items": [ - { - "Name": "Python 3.7", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.7 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.7/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.7/" - } - ], - "display-name": "Python 3.7.3", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.7.3/python.3.7.3.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.7-64", - "sort-version": "3.7.2", - "company": "PythonCore", - "tag": "3.7-64", - "install-for": [ - "3.7.2-64", - "3.7-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.7.2-64", - "target": "python.exe" - }, - { - "tag": "3.7-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.7.2-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.7-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.7.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.7.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.7", - "DisplayName": "Python 3.7.2", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.7", - "Version": "3.7.2", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.7/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.7", - "Items": [ - { - "Name": "Python 3.7", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.7 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.7/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.7/" - } - ], - "display-name": "Python 3.7.2", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.7.2/python.3.7.2.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.7-64", - "sort-version": "3.7.1", - "company": "PythonCore", - "tag": "3.7-64", - "install-for": [ - "3.7.1-64", - "3.7-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.7.1-64", - "target": "python.exe" - }, - { - "tag": "3.7-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.7.1-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.7-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.7.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.7.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.7", - "DisplayName": "Python 3.7.1", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.7", - "Version": "3.7.1", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.7/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.7", - "Items": [ - { - "Name": "Python 3.7", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.7 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.7/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.7/" - } - ], - "display-name": "Python 3.7.1", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.7.1/python.3.7.1.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.7-64", - "sort-version": "3.7.0", - "company": "PythonCore", - "tag": "3.7-64", - "install-for": [ - "3.7.0-64", - "3.7-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.7.0-64", - "target": "python.exe" - }, - { - "tag": "3.7-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.7.0-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.7-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.7.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.7.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.7", - "DisplayName": "Python 3.7.0", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.7", - "Version": "3.7.0", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.7/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.7", - "Items": [ - { - "Name": "Python 3.7", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.7 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.7/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.7/" - } - ], - "display-name": "Python 3.7.0", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.7.0/python.3.7.0.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.6-64", - "sort-version": "3.6.8", - "company": "PythonCore", - "tag": "3.6-64", - "install-for": [ - "3.6.8-64", - "3.6-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.6.8-64", - "target": "python.exe" - }, - { - "tag": "3.6-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.6.8-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.6-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.6.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.6.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.6", - "DisplayName": "Python 3.6.8", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.6", - "Version": "3.6.8", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.6/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.6", - "Items": [ - { - "Name": "Python 3.6", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.6 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.6/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.6/" - } - ], - "display-name": "Python 3.6.8", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.6.8/python.3.6.8.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.6-64", - "sort-version": "3.6.7", - "company": "PythonCore", - "tag": "3.6-64", - "install-for": [ - "3.6.7-64", - "3.6-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.6.7-64", - "target": "python.exe" - }, - { - "tag": "3.6-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.6.7-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.6-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.6.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.6.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.6", - "DisplayName": "Python 3.6.7", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.6", - "Version": "3.6.7", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.6/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.6", - "Items": [ - { - "Name": "Python 3.6", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.6 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.6/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.6/" - } - ], - "display-name": "Python 3.6.7", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.6.7/python.3.6.7.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.6-64", - "sort-version": "3.6.6", - "company": "PythonCore", - "tag": "3.6-64", - "install-for": [ - "3.6.6-64", - "3.6-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.6.6-64", - "target": "python.exe" - }, - { - "tag": "3.6-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.6.6-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.6-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.6.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.6.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.6", - "DisplayName": "Python 3.6.6", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.6", - "Version": "3.6.6", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.6/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.6", - "Items": [ - { - "Name": "Python 3.6", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.6 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.6/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.6/" - } - ], - "display-name": "Python 3.6.6", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.6.6/python.3.6.6.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.6-64", - "sort-version": "3.6.5", - "company": "PythonCore", - "tag": "3.6-64", - "install-for": [ - "3.6.5-64", - "3.6-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.6.5-64", - "target": "python.exe" - }, - { - "tag": "3.6-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.6.5-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.6-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.6.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.6.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.6", - "DisplayName": "Python 3.6.5", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.6", - "Version": "3.6.5", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.6/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.6", - "Items": [ - { - "Name": "Python 3.6", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.6 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.6/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.6/" - } - ], - "display-name": "Python 3.6.5", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.6.5/python.3.6.5.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.6-64", - "sort-version": "3.6.4", - "company": "PythonCore", - "tag": "3.6-64", - "install-for": [ - "3.6.4-64", - "3.6-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.6.4-64", - "target": "python.exe" - }, - { - "tag": "3.6-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.6.4-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.6-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.6.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.6.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.6", - "DisplayName": "Python 3.6.4", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.6", - "Version": "3.6.4", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.6/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.6", - "Items": [ - { - "Name": "Python 3.6", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.6 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.6/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.6/" - } - ], - "display-name": "Python 3.6.4", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.6.4/python.3.6.4.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.6-64", - "sort-version": "3.6.3", - "company": "PythonCore", - "tag": "3.6-64", - "install-for": [ - "3.6.3-64", - "3.6-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.6.3-64", - "target": "python.exe" - }, - { - "tag": "3.6-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.6.3-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.6-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.6.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.6.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.6", - "DisplayName": "Python 3.6.3", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.6", - "Version": "3.6.3", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.6/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.6", - "Items": [ - { - "Name": "Python 3.6", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.6 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.6/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.6/" - } - ], - "display-name": "Python 3.6.3", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.6.3/python.3.6.3.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.6-64", - "sort-version": "3.6.2", - "company": "PythonCore", - "tag": "3.6-64", - "install-for": [ - "3.6.2-64", - "3.6-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.6.2-64", - "target": "python.exe" - }, - { - "tag": "3.6-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.6.2-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.6-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.6.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.6.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.6", - "DisplayName": "Python 3.6.2", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.6", - "Version": "3.6.2", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.6/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.6", - "Items": [ - { - "Name": "Python 3.6", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.6 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.6/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.6/" - } - ], - "display-name": "Python 3.6.2", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.6.2/python.3.6.2.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.6-64", - "sort-version": "3.6.1", - "company": "PythonCore", - "tag": "3.6-64", - "install-for": [ - "3.6.1-64", - "3.6-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.6.1-64", - "target": "python.exe" - }, - { - "tag": "3.6-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.6.1-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.6-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.6.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.6.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.6", - "DisplayName": "Python 3.6.1", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.6", - "Version": "3.6.1", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.6/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.6", - "Items": [ - { - "Name": "Python 3.6", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.6 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.6/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.6/" - } - ], - "display-name": "Python 3.6.1", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.6.1/python.3.6.1.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.6-64", - "sort-version": "3.6.0", - "company": "PythonCore", - "tag": "3.6-64", - "install-for": [ - "3.6.0-64", - "3.6-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.6.0-64", - "target": "python.exe" - }, - { - "tag": "3.6-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.6.0-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.6-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.6.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.6.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.6", - "DisplayName": "Python 3.6.0", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.6", - "Version": "3.6.0", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.6/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.6", - "Items": [ - { - "Name": "Python 3.6", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.6 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.6/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.6/" - } - ], - "display-name": "Python 3.6.0", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.6.0/python.3.6.0.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.5-64", - "sort-version": "3.5.4", - "company": "PythonCore", - "tag": "3.5-64", - "install-for": [ - "3.5.4-64", - "3.5-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.5.4-64", - "target": "python.exe" - }, - { - "tag": "3.5-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.5.4-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.5-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.5.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.5.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.5", - "DisplayName": "Python 3.5.4", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.5", - "Version": "3.5.4", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.5/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.5", - "Items": [ - { - "Name": "Python 3.5", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.5 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.5/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.5/" - } - ], - "display-name": "Python 3.5.4", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.5.4/python.3.5.4.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.5-64", - "sort-version": "3.5.3", - "company": "PythonCore", - "tag": "3.5-64", - "install-for": [ - "3.5.3-64", - "3.5-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.5.3-64", - "target": "python.exe" - }, - { - "tag": "3.5-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.5.3-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.5-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.5.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.5.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.5", - "DisplayName": "Python 3.5.3", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.5", - "Version": "3.5.3", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.5/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.5", - "Items": [ - { - "Name": "Python 3.5", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.5 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.5/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.5/" - } - ], - "display-name": "Python 3.5.3", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.5.3/python.3.5.3.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.5-64", - "sort-version": "3.5.2", - "company": "PythonCore", - "tag": "3.5-64", - "install-for": [ - "3.5.2-64", - "3.5-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.5.2-64", - "target": "python.exe" - }, - { - "tag": "3.5-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.5.2-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.5-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.5.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.5.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.5", - "DisplayName": "Python 3.5.2", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.5", - "Version": "3.5.2", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.5/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.5", - "Items": [ - { - "Name": "Python 3.5", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.5 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.5/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.5/" - } - ], - "display-name": "Python 3.5.2", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.5.2.2/python.3.5.2.2.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.5-64", - "sort-version": "3.5.2", - "company": "PythonCore", - "tag": "3.5-64", - "install-for": [ - "3.5.2-64", - "3.5-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.5.2-64", - "target": "python.exe" - }, - { - "tag": "3.5-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.5.2-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.5-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.5.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.5.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.5", - "DisplayName": "Python 3.5.2", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.5", - "Version": "3.5.2", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.5/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.5", - "Items": [ - { - "Name": "Python 3.5", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.5 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.5/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.5/" - } - ], - "display-name": "Python 3.5.2", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.5.2.1/python.3.5.2.1.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.5-64", - "sort-version": "3.5.2", - "company": "PythonCore", - "tag": "3.5-64", - "install-for": [ - "3.5.2-64", - "3.5-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.5.2-64", - "target": "python.exe" - }, - { - "tag": "3.5-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.5.2-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.5-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.5.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.5.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.5", - "DisplayName": "Python 3.5.2", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.5", - "Version": "3.5.2", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.5/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.5", - "Items": [ - { - "Name": "Python 3.5", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.5 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.5/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.5/" - } - ], - "display-name": "Python 3.5.2", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.5.2/python.3.5.2.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.11-32", - "sort-version": "3.11.9", - "company": "PythonCore", - "tag": "3.11-32", - "install-for": [ - "3.11.9-32", - "3.11-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.11.9-32", - "target": "python.exe" - }, - { - "tag": "3.11-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.11.9-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.11-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.11-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.11-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.11-32", - "DisplayName": "Python 3.11.9 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.11", - "Version": "3.11.9", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.11/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.11 (32-bit)", - "Items": [ - { - "Name": "Python 3.11 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.11 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.11/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.11/" - } - ], - "display-name": "Python 3.11.9 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.11.9/pythonx86.3.11.9.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.11-32", - "sort-version": "3.11.8", - "company": "PythonCore", - "tag": "3.11-32", - "install-for": [ - "3.11.8-32", - "3.11-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.11.8-32", - "target": "python.exe" - }, - { - "tag": "3.11-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.11.8-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.11-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.11-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.11-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.11-32", - "DisplayName": "Python 3.11.8 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.11", - "Version": "3.11.8", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.11/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.11 (32-bit)", - "Items": [ - { - "Name": "Python 3.11 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.11 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.11/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.11/" - } - ], - "display-name": "Python 3.11.8 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.11.8/pythonx86.3.11.8.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.11-32", - "sort-version": "3.11.7", - "company": "PythonCore", - "tag": "3.11-32", - "install-for": [ - "3.11.7-32", - "3.11-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.11.7-32", - "target": "python.exe" - }, - { - "tag": "3.11-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.11.7-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.11-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.11-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.11-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.11-32", - "DisplayName": "Python 3.11.7 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.11", - "Version": "3.11.7", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.11/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.11 (32-bit)", - "Items": [ - { - "Name": "Python 3.11 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.11 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.11/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.11/" - } - ], - "display-name": "Python 3.11.7 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.11.7/pythonx86.3.11.7.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.11-32", - "sort-version": "3.11.6", - "company": "PythonCore", - "tag": "3.11-32", - "install-for": [ - "3.11.6-32", - "3.11-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.11.6-32", - "target": "python.exe" - }, - { - "tag": "3.11-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.11.6-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.11-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.11-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.11-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.11-32", - "DisplayName": "Python 3.11.6 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.11", - "Version": "3.11.6", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.11/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.11 (32-bit)", - "Items": [ - { - "Name": "Python 3.11 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.11 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.11/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.11/" - } - ], - "display-name": "Python 3.11.6 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.11.6/pythonx86.3.11.6.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.11-32", - "sort-version": "3.11.5", - "company": "PythonCore", - "tag": "3.11-32", - "install-for": [ - "3.11.5-32", - "3.11-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.11.5-32", - "target": "python.exe" - }, - { - "tag": "3.11-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.11.5-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.11-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.11-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.11-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.11-32", - "DisplayName": "Python 3.11.5 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.11", - "Version": "3.11.5", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.11/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.11 (32-bit)", - "Items": [ - { - "Name": "Python 3.11 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.11 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.11/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.11/" - } - ], - "display-name": "Python 3.11.5 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.11.5/pythonx86.3.11.5.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.11-32", - "sort-version": "3.11.4", - "company": "PythonCore", - "tag": "3.11-32", - "install-for": [ - "3.11.4-32", - "3.11-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.11.4-32", - "target": "python.exe" - }, - { - "tag": "3.11-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.11.4-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.11-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.11-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.11-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.11-32", - "DisplayName": "Python 3.11.4 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.11", - "Version": "3.11.4", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.11/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.11 (32-bit)", - "Items": [ - { - "Name": "Python 3.11 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.11 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.11/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.11/" - } - ], - "display-name": "Python 3.11.4 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.11.4/pythonx86.3.11.4.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.11-32", - "sort-version": "3.11.3", - "company": "PythonCore", - "tag": "3.11-32", - "install-for": [ - "3.11.3-32", - "3.11-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.11.3-32", - "target": "python.exe" - }, - { - "tag": "3.11-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.11.3-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.11-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.11-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.11-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.11-32", - "DisplayName": "Python 3.11.3 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.11", - "Version": "3.11.3", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.11/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.11 (32-bit)", - "Items": [ - { - "Name": "Python 3.11 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.11 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.11/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.11/" - } - ], - "display-name": "Python 3.11.3 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.11.3/pythonx86.3.11.3.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.11-32", - "sort-version": "3.11.2", - "company": "PythonCore", - "tag": "3.11-32", - "install-for": [ - "3.11.2-32", - "3.11-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.11.2-32", - "target": "python.exe" - }, - { - "tag": "3.11-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.11.2-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.11-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.11-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.11-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.11-32", - "DisplayName": "Python 3.11.2 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.11", - "Version": "3.11.2", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.11/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.11 (32-bit)", - "Items": [ - { - "Name": "Python 3.11 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.11 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.11/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.11/" - } - ], - "display-name": "Python 3.11.2 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.11.2/pythonx86.3.11.2.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.11-32", - "sort-version": "3.11.1", - "company": "PythonCore", - "tag": "3.11-32", - "install-for": [ - "3.11.1-32", - "3.11-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.11.1-32", - "target": "python.exe" - }, - { - "tag": "3.11-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.11.1-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.11-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.11-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.11-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.11-32", - "DisplayName": "Python 3.11.1 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.11", - "Version": "3.11.1", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.11/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.11 (32-bit)", - "Items": [ - { - "Name": "Python 3.11 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.11 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.11/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.11/" - } - ], - "display-name": "Python 3.11.1 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.11.1/pythonx86.3.11.1.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.11-32", - "sort-version": "3.11.0", - "company": "PythonCore", - "tag": "3.11-32", - "install-for": [ - "3.11.0-32", - "3.11-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.11.0-32", - "target": "python.exe" - }, - { - "tag": "3.11-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.11.0-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.11-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.11-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.11-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.11-32", - "DisplayName": "Python 3.11.0 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.11", - "Version": "3.11.0", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.11/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.11 (32-bit)", - "Items": [ - { - "Name": "Python 3.11 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.11 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.11/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.11/" - } - ], - "display-name": "Python 3.11.0 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.11.0/pythonx86.3.11.0.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.10-32", - "sort-version": "3.10.11", - "company": "PythonCore", - "tag": "3.10-32", - "install-for": [ - "3.10.11-32", - "3.10-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.10.11-32", - "target": "python.exe" - }, - { - "tag": "3.10-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.10.11-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.10-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.10-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.10-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.10-32", - "DisplayName": "Python 3.10.11 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.10", - "Version": "3.10.11", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.10/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.10 (32-bit)", - "Items": [ - { - "Name": "Python 3.10 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.10 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.10/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.10/" - } - ], - "display-name": "Python 3.10.11 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.10.11/pythonx86.3.10.11.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.10-32", - "sort-version": "3.10.10", - "company": "PythonCore", - "tag": "3.10-32", - "install-for": [ - "3.10.10-32", - "3.10-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.10.10-32", - "target": "python.exe" - }, - { - "tag": "3.10-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.10.10-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.10-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.10-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.10-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.10-32", - "DisplayName": "Python 3.10.10 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.10", - "Version": "3.10.10", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.10/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.10 (32-bit)", - "Items": [ - { - "Name": "Python 3.10 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.10 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.10/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.10/" - } - ], - "display-name": "Python 3.10.10 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.10.10/pythonx86.3.10.10.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.10-32", - "sort-version": "3.10.9", - "company": "PythonCore", - "tag": "3.10-32", - "install-for": [ - "3.10.9-32", - "3.10-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.10.9-32", - "target": "python.exe" - }, - { - "tag": "3.10-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.10.9-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.10-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.10-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.10-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.10-32", - "DisplayName": "Python 3.10.9 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.10", - "Version": "3.10.9", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.10/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.10 (32-bit)", - "Items": [ - { - "Name": "Python 3.10 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.10 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.10/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.10/" - } - ], - "display-name": "Python 3.10.9 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.10.9/pythonx86.3.10.9.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.10-32", - "sort-version": "3.10.8", - "company": "PythonCore", - "tag": "3.10-32", - "install-for": [ - "3.10.8-32", - "3.10-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.10.8-32", - "target": "python.exe" - }, - { - "tag": "3.10-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.10.8-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.10-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.10-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.10-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.10-32", - "DisplayName": "Python 3.10.8 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.10", - "Version": "3.10.8", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.10/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.10 (32-bit)", - "Items": [ - { - "Name": "Python 3.10 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.10 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.10/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.10/" - } - ], - "display-name": "Python 3.10.8 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.10.8/pythonx86.3.10.8.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.10-32", - "sort-version": "3.10.7", - "company": "PythonCore", - "tag": "3.10-32", - "install-for": [ - "3.10.7-32", - "3.10-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.10.7-32", - "target": "python.exe" - }, - { - "tag": "3.10-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.10.7-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.10-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.10-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.10-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.10-32", - "DisplayName": "Python 3.10.7 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.10", - "Version": "3.10.7", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.10/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.10 (32-bit)", - "Items": [ - { - "Name": "Python 3.10 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.10 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.10/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.10/" - } - ], - "display-name": "Python 3.10.7 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.10.7/pythonx86.3.10.7.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.10-32", - "sort-version": "3.10.6", - "company": "PythonCore", - "tag": "3.10-32", - "install-for": [ - "3.10.6-32", - "3.10-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.10.6-32", - "target": "python.exe" - }, - { - "tag": "3.10-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.10.6-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.10-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.10-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.10-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.10-32", - "DisplayName": "Python 3.10.6 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.10", - "Version": "3.10.6", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.10/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.10 (32-bit)", - "Items": [ - { - "Name": "Python 3.10 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.10 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.10/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.10/" - } - ], - "display-name": "Python 3.10.6 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.10.6/pythonx86.3.10.6.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.10-32", - "sort-version": "3.10.5", - "company": "PythonCore", - "tag": "3.10-32", - "install-for": [ - "3.10.5-32", - "3.10-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.10.5-32", - "target": "python.exe" - }, - { - "tag": "3.10-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.10.5-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.10-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.10-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.10-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.10-32", - "DisplayName": "Python 3.10.5 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.10", - "Version": "3.10.5", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.10/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.10 (32-bit)", - "Items": [ - { - "Name": "Python 3.10 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.10 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.10/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.10/" - } - ], - "display-name": "Python 3.10.5 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.10.5/pythonx86.3.10.5.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.10-32", - "sort-version": "3.10.4", - "company": "PythonCore", - "tag": "3.10-32", - "install-for": [ - "3.10.4-32", - "3.10-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.10.4-32", - "target": "python.exe" - }, - { - "tag": "3.10-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.10.4-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.10-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.10-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.10-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.10-32", - "DisplayName": "Python 3.10.4 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.10", - "Version": "3.10.4", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.10/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.10 (32-bit)", - "Items": [ - { - "Name": "Python 3.10 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.10 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.10/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.10/" - } - ], - "display-name": "Python 3.10.4 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.10.4/pythonx86.3.10.4.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.10-32", - "sort-version": "3.10.3", - "company": "PythonCore", - "tag": "3.10-32", - "install-for": [ - "3.10.3-32", - "3.10-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.10.3-32", - "target": "python.exe" - }, - { - "tag": "3.10-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.10.3-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.10-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.10-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.10-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.10-32", - "DisplayName": "Python 3.10.3 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.10", - "Version": "3.10.3", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.10/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.10 (32-bit)", - "Items": [ - { - "Name": "Python 3.10 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.10 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.10/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.10/" - } - ], - "display-name": "Python 3.10.3 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.10.3/pythonx86.3.10.3.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.10-32", - "sort-version": "3.10.2", - "company": "PythonCore", - "tag": "3.10-32", - "install-for": [ - "3.10.2-32", - "3.10-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.10.2-32", - "target": "python.exe" - }, - { - "tag": "3.10-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.10.2-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.10-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.10-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.10-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.10-32", - "DisplayName": "Python 3.10.2 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.10", - "Version": "3.10.2", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.10/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.10 (32-bit)", - "Items": [ - { - "Name": "Python 3.10 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.10 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.10/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.10/" - } - ], - "display-name": "Python 3.10.2 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.10.2/pythonx86.3.10.2.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.10-32", - "sort-version": "3.10.1", - "company": "PythonCore", - "tag": "3.10-32", - "install-for": [ - "3.10.1-32", - "3.10-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.10.1-32", - "target": "python.exe" - }, - { - "tag": "3.10-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.10.1-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.10-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.10-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.10-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.10-32", - "DisplayName": "Python 3.10.1 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.10", - "Version": "3.10.1", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.10/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.10 (32-bit)", - "Items": [ - { - "Name": "Python 3.10 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.10 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.10/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.10/" - } - ], - "display-name": "Python 3.10.1 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.10.1/pythonx86.3.10.1.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.10-32", - "sort-version": "3.10.0", - "company": "PythonCore", - "tag": "3.10-32", - "install-for": [ - "3.10.0-32", - "3.10-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.10.0-32", - "target": "python.exe" - }, - { - "tag": "3.10-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.10.0-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.10-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.10-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.10-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.10-32", - "DisplayName": "Python 3.10.0 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.10", - "Version": "3.10.0", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.10/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.10 (32-bit)", - "Items": [ - { - "Name": "Python 3.10 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.10 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.10/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.10/" - } - ], - "display-name": "Python 3.10.0 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.10.0/pythonx86.3.10.0.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.9-32", - "sort-version": "3.9.13", - "company": "PythonCore", - "tag": "3.9-32", - "install-for": [ - "3.9.13-32", - "3.9-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.9.13-32", - "target": "python.exe" - }, - { - "tag": "3.9-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.9.13-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.9-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.9-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.9-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.9-32", - "DisplayName": "Python 3.9.13 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.9", - "Version": "3.9.13", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.9/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.9 (32-bit)", - "Items": [ - { - "Name": "Python 3.9 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.9 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.9/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.9/" - } - ], - "display-name": "Python 3.9.13 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.9.13/pythonx86.3.9.13.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.9-32", - "sort-version": "3.9.12", - "company": "PythonCore", - "tag": "3.9-32", - "install-for": [ - "3.9.12-32", - "3.9-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.9.12-32", - "target": "python.exe" - }, - { - "tag": "3.9-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.9.12-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.9-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.9-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.9-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.9-32", - "DisplayName": "Python 3.9.12 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.9", - "Version": "3.9.12", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.9/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.9 (32-bit)", - "Items": [ - { - "Name": "Python 3.9 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.9 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.9/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.9/" - } - ], - "display-name": "Python 3.9.12 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.9.12/pythonx86.3.9.12.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.9-32", - "sort-version": "3.9.11", - "company": "PythonCore", - "tag": "3.9-32", - "install-for": [ - "3.9.11-32", - "3.9-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.9.11-32", - "target": "python.exe" - }, - { - "tag": "3.9-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.9.11-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.9-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.9-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.9-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.9-32", - "DisplayName": "Python 3.9.11 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.9", - "Version": "3.9.11", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.9/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.9 (32-bit)", - "Items": [ - { - "Name": "Python 3.9 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.9 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.9/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.9/" - } - ], - "display-name": "Python 3.9.11 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.9.11.1/pythonx86.3.9.11.1.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.9-32", - "sort-version": "3.9.10", - "company": "PythonCore", - "tag": "3.9-32", - "install-for": [ - "3.9.10-32", - "3.9-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.9.10-32", - "target": "python.exe" - }, - { - "tag": "3.9-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.9.10-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.9-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.9-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.9-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.9-32", - "DisplayName": "Python 3.9.10 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.9", - "Version": "3.9.10", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.9/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.9 (32-bit)", - "Items": [ - { - "Name": "Python 3.9 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.9 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.9/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.9/" - } - ], - "display-name": "Python 3.9.10 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.9.10/pythonx86.3.9.10.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.9-32", - "sort-version": "3.9.9", - "company": "PythonCore", - "tag": "3.9-32", - "install-for": [ - "3.9.9-32", - "3.9-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.9.9-32", - "target": "python.exe" - }, - { - "tag": "3.9-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.9.9-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.9-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.9-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.9-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.9-32", - "DisplayName": "Python 3.9.9 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.9", - "Version": "3.9.9", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.9/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.9 (32-bit)", - "Items": [ - { - "Name": "Python 3.9 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.9 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.9/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.9/" - } - ], - "display-name": "Python 3.9.9 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.9.9/pythonx86.3.9.9.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.9-32", - "sort-version": "3.9.8", - "company": "PythonCore", - "tag": "3.9-32", - "install-for": [ - "3.9.8-32", - "3.9-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.9.8-32", - "target": "python.exe" - }, - { - "tag": "3.9-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.9.8-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.9-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.9-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.9-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.9-32", - "DisplayName": "Python 3.9.8 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.9", - "Version": "3.9.8", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.9/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.9 (32-bit)", - "Items": [ - { - "Name": "Python 3.9 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.9 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.9/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.9/" - } - ], - "display-name": "Python 3.9.8 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.9.8/pythonx86.3.9.8.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.9-32", - "sort-version": "3.9.7", - "company": "PythonCore", - "tag": "3.9-32", - "install-for": [ - "3.9.7-32", - "3.9-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.9.7-32", - "target": "python.exe" - }, - { - "tag": "3.9-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.9.7-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.9-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.9-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.9-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.9-32", - "DisplayName": "Python 3.9.7 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.9", - "Version": "3.9.7", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.9/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.9 (32-bit)", - "Items": [ - { - "Name": "Python 3.9 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.9 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.9/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.9/" - } - ], - "display-name": "Python 3.9.7 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.9.7/pythonx86.3.9.7.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.9-32", - "sort-version": "3.9.6", - "company": "PythonCore", - "tag": "3.9-32", - "install-for": [ - "3.9.6-32", - "3.9-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.9.6-32", - "target": "python.exe" - }, - { - "tag": "3.9-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.9.6-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.9-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.9-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.9-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.9-32", - "DisplayName": "Python 3.9.6 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.9", - "Version": "3.9.6", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.9/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.9 (32-bit)", - "Items": [ - { - "Name": "Python 3.9 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.9 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.9/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.9/" - } - ], - "display-name": "Python 3.9.6 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.9.6/pythonx86.3.9.6.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.9-32", - "sort-version": "3.9.5", - "company": "PythonCore", - "tag": "3.9-32", - "install-for": [ - "3.9.5-32", - "3.9-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.9.5-32", - "target": "python.exe" - }, - { - "tag": "3.9-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.9.5-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.9-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.9-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.9-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.9-32", - "DisplayName": "Python 3.9.5 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.9", - "Version": "3.9.5", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.9/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.9 (32-bit)", - "Items": [ - { - "Name": "Python 3.9 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.9 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.9/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.9/" - } - ], - "display-name": "Python 3.9.5 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.9.5/pythonx86.3.9.5.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.9-32", - "sort-version": "3.9.4", - "company": "PythonCore", - "tag": "3.9-32", - "install-for": [ - "3.9.4-32", - "3.9-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.9.4-32", - "target": "python.exe" - }, - { - "tag": "3.9-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.9.4-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.9-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.9-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.9-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.9-32", - "DisplayName": "Python 3.9.4 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.9", - "Version": "3.9.4", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.9/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.9 (32-bit)", - "Items": [ - { - "Name": "Python 3.9 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.9 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.9/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.9/" - } - ], - "display-name": "Python 3.9.4 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.9.4/pythonx86.3.9.4.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.9-32", - "sort-version": "3.9.3", - "company": "PythonCore", - "tag": "3.9-32", - "install-for": [ - "3.9.3-32", - "3.9-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.9.3-32", - "target": "python.exe" - }, - { - "tag": "3.9-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.9.3-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.9-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.9-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.9-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.9-32", - "DisplayName": "Python 3.9.3 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.9", - "Version": "3.9.3", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.9/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.9 (32-bit)", - "Items": [ - { - "Name": "Python 3.9 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.9 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.9/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.9/" - } - ], - "display-name": "Python 3.9.3 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.9.3/pythonx86.3.9.3.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.9-32", - "sort-version": "3.9.2", - "company": "PythonCore", - "tag": "3.9-32", - "install-for": [ - "3.9.2-32", - "3.9-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.9.2-32", - "target": "python.exe" - }, - { - "tag": "3.9-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.9.2-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.9-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.9-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.9-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.9-32", - "DisplayName": "Python 3.9.2 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.9", - "Version": "3.9.2", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.9/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.9 (32-bit)", - "Items": [ - { - "Name": "Python 3.9 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.9 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.9/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.9/" - } - ], - "display-name": "Python 3.9.2 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.9.2/pythonx86.3.9.2.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.9-32", - "sort-version": "3.9.1", - "company": "PythonCore", - "tag": "3.9-32", - "install-for": [ - "3.9.1-32", - "3.9-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.9.1-32", - "target": "python.exe" - }, - { - "tag": "3.9-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.9.1-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.9-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.9-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.9-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.9-32", - "DisplayName": "Python 3.9.1 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.9", - "Version": "3.9.1", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.9/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.9 (32-bit)", - "Items": [ - { - "Name": "Python 3.9 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.9 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.9/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.9/" - } - ], - "display-name": "Python 3.9.1 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.9.1/pythonx86.3.9.1.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.9-32", - "sort-version": "3.9.0", - "company": "PythonCore", - "tag": "3.9-32", - "install-for": [ - "3.9.0-32", - "3.9-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.9.0-32", - "target": "python.exe" - }, - { - "tag": "3.9-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.9.0-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.9-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.9-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.9-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.9-32", - "DisplayName": "Python 3.9.0 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.9", - "Version": "3.9.0", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.9/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.9 (32-bit)", - "Items": [ - { - "Name": "Python 3.9 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.9 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.9/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.9/" - } - ], - "display-name": "Python 3.9.0 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.9.0/pythonx86.3.9.0.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.8-32", - "sort-version": "3.8.10", - "company": "PythonCore", - "tag": "3.8-32", - "install-for": [ - "3.8.10-32", - "3.8-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.8.10-32", - "target": "python.exe" - }, - { - "tag": "3.8-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.8.10-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.8-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.8-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.8-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.8-32", - "DisplayName": "Python 3.8.10 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.8", - "Version": "3.8.10", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.8/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.8 (32-bit)", - "Items": [ - { - "Name": "Python 3.8 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.8 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.8/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.8/" - } - ], - "display-name": "Python 3.8.10 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.8.10/pythonx86.3.8.10.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.8-32", - "sort-version": "3.8.9", - "company": "PythonCore", - "tag": "3.8-32", - "install-for": [ - "3.8.9-32", - "3.8-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.8.9-32", - "target": "python.exe" - }, - { - "tag": "3.8-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.8.9-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.8-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.8-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.8-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.8-32", - "DisplayName": "Python 3.8.9 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.8", - "Version": "3.8.9", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.8/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.8 (32-bit)", - "Items": [ - { - "Name": "Python 3.8 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.8 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.8/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.8/" - } - ], - "display-name": "Python 3.8.9 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.8.9/pythonx86.3.8.9.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.8-32", - "sort-version": "3.8.8", - "company": "PythonCore", - "tag": "3.8-32", - "install-for": [ - "3.8.8-32", - "3.8-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.8.8-32", - "target": "python.exe" - }, - { - "tag": "3.8-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.8.8-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.8-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.8-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.8-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.8-32", - "DisplayName": "Python 3.8.8 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.8", - "Version": "3.8.8", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.8/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.8 (32-bit)", - "Items": [ - { - "Name": "Python 3.8 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.8 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.8/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.8/" - } - ], - "display-name": "Python 3.8.8 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.8.8/pythonx86.3.8.8.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.8-32", - "sort-version": "3.8.7", - "company": "PythonCore", - "tag": "3.8-32", - "install-for": [ - "3.8.7-32", - "3.8-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.8.7-32", - "target": "python.exe" - }, - { - "tag": "3.8-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.8.7-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.8-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.8-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.8-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.8-32", - "DisplayName": "Python 3.8.7 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.8", - "Version": "3.8.7", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.8/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.8 (32-bit)", - "Items": [ - { - "Name": "Python 3.8 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.8 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.8/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.8/" - } - ], - "display-name": "Python 3.8.7 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.8.7/pythonx86.3.8.7.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.8-32", - "sort-version": "3.8.6", - "company": "PythonCore", - "tag": "3.8-32", - "install-for": [ - "3.8.6-32", - "3.8-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.8.6-32", - "target": "python.exe" - }, - { - "tag": "3.8-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.8.6-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.8-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.8-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.8-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.8-32", - "DisplayName": "Python 3.8.6 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.8", - "Version": "3.8.6", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.8/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.8 (32-bit)", - "Items": [ - { - "Name": "Python 3.8 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.8 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.8/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.8/" - } - ], - "display-name": "Python 3.8.6 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.8.6/pythonx86.3.8.6.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.8-32", - "sort-version": "3.8.5", - "company": "PythonCore", - "tag": "3.8-32", - "install-for": [ - "3.8.5-32", - "3.8-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.8.5-32", - "target": "python.exe" - }, - { - "tag": "3.8-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.8.5-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.8-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.8-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.8-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.8-32", - "DisplayName": "Python 3.8.5 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.8", - "Version": "3.8.5", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.8/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.8 (32-bit)", - "Items": [ - { - "Name": "Python 3.8 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.8 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.8/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.8/" - } - ], - "display-name": "Python 3.8.5 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.8.5/pythonx86.3.8.5.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.8-32", - "sort-version": "3.8.4", - "company": "PythonCore", - "tag": "3.8-32", - "install-for": [ - "3.8.4-32", - "3.8-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.8.4-32", - "target": "python.exe" - }, - { - "tag": "3.8-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.8.4-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.8-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.8-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.8-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.8-32", - "DisplayName": "Python 3.8.4 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.8", - "Version": "3.8.4", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.8/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.8 (32-bit)", - "Items": [ - { - "Name": "Python 3.8 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.8 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.8/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.8/" - } - ], - "display-name": "Python 3.8.4 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.8.4/pythonx86.3.8.4.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.8-32", - "sort-version": "3.8.3", - "company": "PythonCore", - "tag": "3.8-32", - "install-for": [ - "3.8.3-32", - "3.8-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.8.3-32", - "target": "python.exe" - }, - { - "tag": "3.8-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.8.3-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.8-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.8-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.8-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.8-32", - "DisplayName": "Python 3.8.3 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.8", - "Version": "3.8.3", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.8/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.8 (32-bit)", - "Items": [ - { - "Name": "Python 3.8 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.8 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.8/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.8/" - } - ], - "display-name": "Python 3.8.3 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.8.3/pythonx86.3.8.3.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.8-32", - "sort-version": "3.8.2", - "company": "PythonCore", - "tag": "3.8-32", - "install-for": [ - "3.8.2-32", - "3.8-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.8.2-32", - "target": "python.exe" - }, - { - "tag": "3.8-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.8.2-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.8-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.8-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.8-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.8-32", - "DisplayName": "Python 3.8.2 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.8", - "Version": "3.8.2", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.8/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.8 (32-bit)", - "Items": [ - { - "Name": "Python 3.8 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.8 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.8/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.8/" - } - ], - "display-name": "Python 3.8.2 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.8.2/pythonx86.3.8.2.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.8-32", - "sort-version": "3.8.1", - "company": "PythonCore", - "tag": "3.8-32", - "install-for": [ - "3.8.1-32", - "3.8-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.8.1-32", - "target": "python.exe" - }, - { - "tag": "3.8-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.8.1-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.8-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.8-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.8-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.8-32", - "DisplayName": "Python 3.8.1 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.8", - "Version": "3.8.1", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.8/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.8 (32-bit)", - "Items": [ - { - "Name": "Python 3.8 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.8 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.8/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.8/" - } - ], - "display-name": "Python 3.8.1 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.8.1/pythonx86.3.8.1.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.8-32", - "sort-version": "3.8.0", - "company": "PythonCore", - "tag": "3.8-32", - "install-for": [ - "3.8.0-32", - "3.8-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.8.0-32", - "target": "python.exe" - }, - { - "tag": "3.8-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.8.0-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.8-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.8-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.8-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.8-32", - "DisplayName": "Python 3.8.0 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.8", - "Version": "3.8.0", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.8/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.8 (32-bit)", - "Items": [ - { - "Name": "Python 3.8 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.8 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.8/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.8/" - } - ], - "display-name": "Python 3.8.0 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.8.0/pythonx86.3.8.0.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.7-32", - "sort-version": "3.7.9", - "company": "PythonCore", - "tag": "3.7-32", - "install-for": [ - "3.7.9-32", - "3.7-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.7.9-32", - "target": "python.exe" - }, - { - "tag": "3.7-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.7.9-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.7-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.7-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.7-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.7-32", - "DisplayName": "Python 3.7.9 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.7", - "Version": "3.7.9", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.7/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.7 (32-bit)", - "Items": [ - { - "Name": "Python 3.7 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.7 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.7/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.7/" - } - ], - "display-name": "Python 3.7.9 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.7.9/pythonx86.3.7.9.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.7-32", - "sort-version": "3.7.8", - "company": "PythonCore", - "tag": "3.7-32", - "install-for": [ - "3.7.8-32", - "3.7-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.7.8-32", - "target": "python.exe" - }, - { - "tag": "3.7-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.7.8-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.7-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.7-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.7-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.7-32", - "DisplayName": "Python 3.7.8 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.7", - "Version": "3.7.8", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.7/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.7 (32-bit)", - "Items": [ - { - "Name": "Python 3.7 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.7 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.7/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.7/" - } - ], - "display-name": "Python 3.7.8 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.7.8/pythonx86.3.7.8.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.7-32", - "sort-version": "3.7.7", - "company": "PythonCore", - "tag": "3.7-32", - "install-for": [ - "3.7.7-32", - "3.7-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.7.7-32", - "target": "python.exe" - }, - { - "tag": "3.7-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.7.7-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.7-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.7-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.7-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.7-32", - "DisplayName": "Python 3.7.7 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.7", - "Version": "3.7.7", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.7/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.7 (32-bit)", - "Items": [ - { - "Name": "Python 3.7 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.7 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.7/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.7/" - } - ], - "display-name": "Python 3.7.7 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.7.7/pythonx86.3.7.7.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.7-32", - "sort-version": "3.7.6", - "company": "PythonCore", - "tag": "3.7-32", - "install-for": [ - "3.7.6-32", - "3.7-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.7.6-32", - "target": "python.exe" - }, - { - "tag": "3.7-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.7.6-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.7-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.7-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.7-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.7-32", - "DisplayName": "Python 3.7.6 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.7", - "Version": "3.7.6", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.7/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.7 (32-bit)", - "Items": [ - { - "Name": "Python 3.7 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.7 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.7/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.7/" - } - ], - "display-name": "Python 3.7.6 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.7.6/pythonx86.3.7.6.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.7-32", - "sort-version": "3.7.5", - "company": "PythonCore", - "tag": "3.7-32", - "install-for": [ - "3.7.5-32", - "3.7-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.7.5-32", - "target": "python.exe" - }, - { - "tag": "3.7-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.7.5-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.7-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.7-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.7-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.7-32", - "DisplayName": "Python 3.7.5 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.7", - "Version": "3.7.5", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.7/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.7 (32-bit)", - "Items": [ - { - "Name": "Python 3.7 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.7 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.7/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.7/" - } - ], - "display-name": "Python 3.7.5 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.7.5/pythonx86.3.7.5.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.7-32", - "sort-version": "3.7.4", - "company": "PythonCore", - "tag": "3.7-32", - "install-for": [ - "3.7.4-32", - "3.7-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.7.4-32", - "target": "python.exe" - }, - { - "tag": "3.7-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.7.4-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.7-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.7-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.7-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.7-32", - "DisplayName": "Python 3.7.4 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.7", - "Version": "3.7.4", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.7/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.7 (32-bit)", - "Items": [ - { - "Name": "Python 3.7 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.7 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.7/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.7/" - } - ], - "display-name": "Python 3.7.4 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.7.4/pythonx86.3.7.4.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.7-32", - "sort-version": "3.7.3", - "company": "PythonCore", - "tag": "3.7-32", - "install-for": [ - "3.7.3-32", - "3.7-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.7.3-32", - "target": "python.exe" - }, - { - "tag": "3.7-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.7.3-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.7-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.7-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.7-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.7-32", - "DisplayName": "Python 3.7.3 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.7", - "Version": "3.7.3", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.7/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.7 (32-bit)", - "Items": [ - { - "Name": "Python 3.7 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.7 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.7/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.7/" - } - ], - "display-name": "Python 3.7.3 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.7.3/pythonx86.3.7.3.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.7-32", - "sort-version": "3.7.2", - "company": "PythonCore", - "tag": "3.7-32", - "install-for": [ - "3.7.2-32", - "3.7-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.7.2-32", - "target": "python.exe" - }, - { - "tag": "3.7-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.7.2-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.7-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.7-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.7-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.7-32", - "DisplayName": "Python 3.7.2 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.7", - "Version": "3.7.2", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.7/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.7 (32-bit)", - "Items": [ - { - "Name": "Python 3.7 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.7 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.7/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.7/" - } - ], - "display-name": "Python 3.7.2 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.7.2/pythonx86.3.7.2.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.7-32", - "sort-version": "3.7.1", - "company": "PythonCore", - "tag": "3.7-32", - "install-for": [ - "3.7.1-32", - "3.7-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.7.1-32", - "target": "python.exe" - }, - { - "tag": "3.7-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.7.1-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.7-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.7-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.7-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.7-32", - "DisplayName": "Python 3.7.1 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.7", - "Version": "3.7.1", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.7/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.7 (32-bit)", - "Items": [ - { - "Name": "Python 3.7 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.7 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.7/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.7/" - } - ], - "display-name": "Python 3.7.1 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.7.1/pythonx86.3.7.1.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.7-32", - "sort-version": "3.7.0", - "company": "PythonCore", - "tag": "3.7-32", - "install-for": [ - "3.7.0-32", - "3.7-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.7.0-32", - "target": "python.exe" - }, - { - "tag": "3.7-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.7.0-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.7-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.7-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.7-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.7-32", - "DisplayName": "Python 3.7.0 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.7", - "Version": "3.7.0", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.7/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.7 (32-bit)", - "Items": [ - { - "Name": "Python 3.7 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.7 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.7/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.7/" - } - ], - "display-name": "Python 3.7.0 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.7.0/pythonx86.3.7.0.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.6-32", - "sort-version": "3.6.8", - "company": "PythonCore", - "tag": "3.6-32", - "install-for": [ - "3.6.8-32", - "3.6-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.6.8-32", - "target": "python.exe" - }, - { - "tag": "3.6-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.6.8-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.6-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.6-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.6-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.6-32", - "DisplayName": "Python 3.6.8 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.6", - "Version": "3.6.8", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.6/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.6 (32-bit)", - "Items": [ - { - "Name": "Python 3.6 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.6 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.6/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.6/" - } - ], - "display-name": "Python 3.6.8 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.6.8/pythonx86.3.6.8.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.6-32", - "sort-version": "3.6.7", - "company": "PythonCore", - "tag": "3.6-32", - "install-for": [ - "3.6.7-32", - "3.6-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.6.7-32", - "target": "python.exe" - }, - { - "tag": "3.6-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.6.7-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.6-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.6-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.6-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.6-32", - "DisplayName": "Python 3.6.7 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.6", - "Version": "3.6.7", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.6/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.6 (32-bit)", - "Items": [ - { - "Name": "Python 3.6 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.6 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.6/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.6/" - } - ], - "display-name": "Python 3.6.7 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.6.7/pythonx86.3.6.7.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.6-32", - "sort-version": "3.6.6", - "company": "PythonCore", - "tag": "3.6-32", - "install-for": [ - "3.6.6-32", - "3.6-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.6.6-32", - "target": "python.exe" - }, - { - "tag": "3.6-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.6.6-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.6-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.6-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.6-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.6-32", - "DisplayName": "Python 3.6.6 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.6", - "Version": "3.6.6", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.6/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.6 (32-bit)", - "Items": [ - { - "Name": "Python 3.6 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.6 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.6/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.6/" - } - ], - "display-name": "Python 3.6.6 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.6.6/pythonx86.3.6.6.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.6-32", - "sort-version": "3.6.5", - "company": "PythonCore", - "tag": "3.6-32", - "install-for": [ - "3.6.5-32", - "3.6-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.6.5-32", - "target": "python.exe" - }, - { - "tag": "3.6-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.6.5-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.6-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.6-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.6-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.6-32", - "DisplayName": "Python 3.6.5 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.6", - "Version": "3.6.5", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.6/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.6 (32-bit)", - "Items": [ - { - "Name": "Python 3.6 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.6 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.6/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.6/" - } - ], - "display-name": "Python 3.6.5 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.6.5/pythonx86.3.6.5.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.6-32", - "sort-version": "3.6.4", - "company": "PythonCore", - "tag": "3.6-32", - "install-for": [ - "3.6.4-32", - "3.6-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.6.4-32", - "target": "python.exe" - }, - { - "tag": "3.6-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.6.4-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.6-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.6-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.6-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.6-32", - "DisplayName": "Python 3.6.4 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.6", - "Version": "3.6.4", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.6/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.6 (32-bit)", - "Items": [ - { - "Name": "Python 3.6 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.6 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.6/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.6/" - } - ], - "display-name": "Python 3.6.4 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.6.4/pythonx86.3.6.4.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.6-32", - "sort-version": "3.6.3", - "company": "PythonCore", - "tag": "3.6-32", - "install-for": [ - "3.6.3-32", - "3.6-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.6.3-32", - "target": "python.exe" - }, - { - "tag": "3.6-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.6.3-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.6-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.6-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.6-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.6-32", - "DisplayName": "Python 3.6.3 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.6", - "Version": "3.6.3", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.6/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.6 (32-bit)", - "Items": [ - { - "Name": "Python 3.6 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.6 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.6/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.6/" - } - ], - "display-name": "Python 3.6.3 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.6.3/pythonx86.3.6.3.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.6-32", - "sort-version": "3.6.2", - "company": "PythonCore", - "tag": "3.6-32", - "install-for": [ - "3.6.2-32", - "3.6-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.6.2-32", - "target": "python.exe" - }, - { - "tag": "3.6-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.6.2-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.6-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.6-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.6-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.6-32", - "DisplayName": "Python 3.6.2 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.6", - "Version": "3.6.2", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.6/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.6 (32-bit)", - "Items": [ - { - "Name": "Python 3.6 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.6 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.6/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.6/" - } - ], - "display-name": "Python 3.6.2 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.6.2/pythonx86.3.6.2.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.6-32", - "sort-version": "3.6.1", - "company": "PythonCore", - "tag": "3.6-32", - "install-for": [ - "3.6.1-32", - "3.6-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.6.1-32", - "target": "python.exe" - }, - { - "tag": "3.6-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.6.1-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.6-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.6-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.6-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.6-32", - "DisplayName": "Python 3.6.1 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.6", - "Version": "3.6.1", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.6/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.6 (32-bit)", - "Items": [ - { - "Name": "Python 3.6 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.6 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.6/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.6/" - } - ], - "display-name": "Python 3.6.1 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.6.1/pythonx86.3.6.1.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.6-32", - "sort-version": "3.6.0", - "company": "PythonCore", - "tag": "3.6-32", - "install-for": [ - "3.6.0-32", - "3.6-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.6.0-32", - "target": "python.exe" - }, - { - "tag": "3.6-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.6.0-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.6-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.6-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.6-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.6-32", - "DisplayName": "Python 3.6.0 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.6", - "Version": "3.6.0", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.6/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.6 (32-bit)", - "Items": [ - { - "Name": "Python 3.6 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.6 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.6/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.6/" - } - ], - "display-name": "Python 3.6.0 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.6.0/pythonx86.3.6.0.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.5-32", - "sort-version": "3.5.4", - "company": "PythonCore", - "tag": "3.5-32", - "install-for": [ - "3.5.4-32", - "3.5-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.5.4-32", - "target": "python.exe" - }, - { - "tag": "3.5-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.5.4-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.5-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.5-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.5-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.5-32", - "DisplayName": "Python 3.5.4 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.5", - "Version": "3.5.4", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.5/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.5 (32-bit)", - "Items": [ - { - "Name": "Python 3.5 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.5 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.5/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.5/" - } - ], - "display-name": "Python 3.5.4 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.5.4/pythonx86.3.5.4.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.5-32", - "sort-version": "3.5.3", - "company": "PythonCore", - "tag": "3.5-32", - "install-for": [ - "3.5.3-32", - "3.5-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.5.3-32", - "target": "python.exe" - }, - { - "tag": "3.5-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.5.3-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.5-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.5-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.5-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.5-32", - "DisplayName": "Python 3.5.3 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.5", - "Version": "3.5.3", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.5/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.5 (32-bit)", - "Items": [ - { - "Name": "Python 3.5 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.5 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.5/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.5/" - } - ], - "display-name": "Python 3.5.3 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.5.3/pythonx86.3.5.3.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.5-32", - "sort-version": "3.5.2", - "company": "PythonCore", - "tag": "3.5-32", - "install-for": [ - "3.5.2-32", - "3.5-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.5.2-32", - "target": "python.exe" - }, - { - "tag": "3.5-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.5.2-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.5-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.5-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.5-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.5-32", - "DisplayName": "Python 3.5.2 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.5", - "Version": "3.5.2", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.5/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.5 (32-bit)", - "Items": [ - { - "Name": "Python 3.5 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.5 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.5/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.5/" - } - ], - "display-name": "Python 3.5.2 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.5.2.2/pythonx86.3.5.2.2.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.5-32", - "sort-version": "3.5.2", - "company": "PythonCore", - "tag": "3.5-32", - "install-for": [ - "3.5.2-32", - "3.5-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.5.2-32", - "target": "python.exe" - }, - { - "tag": "3.5-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.5.2-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.5-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.5-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.5-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.5-32", - "DisplayName": "Python 3.5.2 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.5", - "Version": "3.5.2", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.5/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.5 (32-bit)", - "Items": [ - { - "Name": "Python 3.5 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.5 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.5/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.5/" - } - ], - "display-name": "Python 3.5.2 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.5.2.1/pythonx86.3.5.2.1.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.5-32", - "sort-version": "3.5.2", - "company": "PythonCore", - "tag": "3.5-32", - "install-for": [ - "3.5.2-32", - "3.5-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.5.2-32", - "target": "python.exe" - }, - { - "tag": "3.5-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.5.2-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.5-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.5-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.5-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.5-32", - "DisplayName": "Python 3.5.2 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.5", - "Version": "3.5.2", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.5/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.5 (32-bit)", - "Items": [ - { - "Name": "Python 3.5 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.5 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.5/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.5/" - } - ], - "display-name": "Python 3.5.2 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.5.2/pythonx86.3.5.2.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.11-arm64", - "sort-version": "3.11.9", - "company": "PythonCore", - "tag": "3.11-arm64", - "install-for": [ - "3.11.9-arm64", - "3.11-arm64", - "3-arm64" - ], - "run-for": [ - { - "tag": "3.11.9-arm64", - "target": "python.exe" - }, - { - "tag": "3.11-arm64", - "target": "python.exe" - }, - { - "tag": "3-arm64", - "target": "python.exe" - }, - { - "tag": "3.11.9-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.11-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-arm64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.11-arm64.exe", - "target": "python.exe" - }, - { - "name": "python3-arm64.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.11-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.11-arm64", - "DisplayName": "Python 3.11.9 (ARM64)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.11", - "Version": "3.11.9", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.11/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.11 (ARM64)", - "Items": [ - { - "Name": "Python 3.11 (ARM64)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.11 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.11/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.11/" - } - ], - "display-name": "Python 3.11.9 (ARM64)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonarm64/3.11.9/pythonarm64.3.11.9.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.11-arm64", - "sort-version": "3.11.8", - "company": "PythonCore", - "tag": "3.11-arm64", - "install-for": [ - "3.11.8-arm64", - "3.11-arm64", - "3-arm64" - ], - "run-for": [ - { - "tag": "3.11.8-arm64", - "target": "python.exe" - }, - { - "tag": "3.11-arm64", - "target": "python.exe" - }, - { - "tag": "3-arm64", - "target": "python.exe" - }, - { - "tag": "3.11.8-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.11-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-arm64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.11-arm64.exe", - "target": "python.exe" - }, - { - "name": "python3-arm64.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.11-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.11-arm64", - "DisplayName": "Python 3.11.8 (ARM64)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.11", - "Version": "3.11.8", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.11/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.11 (ARM64)", - "Items": [ - { - "Name": "Python 3.11 (ARM64)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.11 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.11/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.11/" - } - ], - "display-name": "Python 3.11.8 (ARM64)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonarm64/3.11.8/pythonarm64.3.11.8.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.11-arm64", - "sort-version": "3.11.7", - "company": "PythonCore", - "tag": "3.11-arm64", - "install-for": [ - "3.11.7-arm64", - "3.11-arm64", - "3-arm64" - ], - "run-for": [ - { - "tag": "3.11.7-arm64", - "target": "python.exe" - }, - { - "tag": "3.11-arm64", - "target": "python.exe" - }, - { - "tag": "3-arm64", - "target": "python.exe" - }, - { - "tag": "3.11.7-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.11-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-arm64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.11-arm64.exe", - "target": "python.exe" - }, - { - "name": "python3-arm64.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.11-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.11-arm64", - "DisplayName": "Python 3.11.7 (ARM64)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.11", - "Version": "3.11.7", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.11/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.11 (ARM64)", - "Items": [ - { - "Name": "Python 3.11 (ARM64)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.11 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.11/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.11/" - } - ], - "display-name": "Python 3.11.7 (ARM64)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonarm64/3.11.7/pythonarm64.3.11.7.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.11-arm64", - "sort-version": "3.11.6", - "company": "PythonCore", - "tag": "3.11-arm64", - "install-for": [ - "3.11.6-arm64", - "3.11-arm64", - "3-arm64" - ], - "run-for": [ - { - "tag": "3.11.6-arm64", - "target": "python.exe" - }, - { - "tag": "3.11-arm64", - "target": "python.exe" - }, - { - "tag": "3-arm64", - "target": "python.exe" - }, - { - "tag": "3.11.6-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.11-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-arm64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.11-arm64.exe", - "target": "python.exe" - }, - { - "name": "python3-arm64.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.11-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.11-arm64", - "DisplayName": "Python 3.11.6 (ARM64)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.11", - "Version": "3.11.6", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.11/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.11 (ARM64)", - "Items": [ - { - "Name": "Python 3.11 (ARM64)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.11 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.11/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.11/" - } - ], - "display-name": "Python 3.11.6 (ARM64)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonarm64/3.11.6/pythonarm64.3.11.6.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.11-arm64", - "sort-version": "3.11.5", - "company": "PythonCore", - "tag": "3.11-arm64", - "install-for": [ - "3.11.5-arm64", - "3.11-arm64", - "3-arm64" - ], - "run-for": [ - { - "tag": "3.11.5-arm64", - "target": "python.exe" - }, - { - "tag": "3.11-arm64", - "target": "python.exe" - }, - { - "tag": "3-arm64", - "target": "python.exe" - }, - { - "tag": "3.11.5-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.11-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-arm64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.11-arm64.exe", - "target": "python.exe" - }, - { - "name": "python3-arm64.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.11-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.11-arm64", - "DisplayName": "Python 3.11.5 (ARM64)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.11", - "Version": "3.11.5", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.11/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.11 (ARM64)", - "Items": [ - { - "Name": "Python 3.11 (ARM64)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.11 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.11/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.11/" - } - ], - "display-name": "Python 3.11.5 (ARM64)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonarm64/3.11.5/pythonarm64.3.11.5.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.11-arm64", - "sort-version": "3.11.4", - "company": "PythonCore", - "tag": "3.11-arm64", - "install-for": [ - "3.11.4-arm64", - "3.11-arm64", - "3-arm64" - ], - "run-for": [ - { - "tag": "3.11.4-arm64", - "target": "python.exe" - }, - { - "tag": "3.11-arm64", - "target": "python.exe" - }, - { - "tag": "3-arm64", - "target": "python.exe" - }, - { - "tag": "3.11.4-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.11-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-arm64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.11-arm64.exe", - "target": "python.exe" - }, - { - "name": "python3-arm64.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.11-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.11-arm64", - "DisplayName": "Python 3.11.4 (ARM64)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.11", - "Version": "3.11.4", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.11/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.11 (ARM64)", - "Items": [ - { - "Name": "Python 3.11 (ARM64)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.11 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.11/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.11/" - } - ], - "display-name": "Python 3.11.4 (ARM64)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonarm64/3.11.4/pythonarm64.3.11.4.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.11-arm64", - "sort-version": "3.11.3", - "company": "PythonCore", - "tag": "3.11-arm64", - "install-for": [ - "3.11.3-arm64", - "3.11-arm64", - "3-arm64" - ], - "run-for": [ - { - "tag": "3.11.3-arm64", - "target": "python.exe" - }, - { - "tag": "3.11-arm64", - "target": "python.exe" - }, - { - "tag": "3-arm64", - "target": "python.exe" - }, - { - "tag": "3.11.3-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.11-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-arm64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.11-arm64.exe", - "target": "python.exe" - }, - { - "name": "python3-arm64.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.11-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.11-arm64", - "DisplayName": "Python 3.11.3 (ARM64)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.11", - "Version": "3.11.3", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.11/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.11 (ARM64)", - "Items": [ - { - "Name": "Python 3.11 (ARM64)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.11 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.11/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.11/" - } - ], - "display-name": "Python 3.11.3 (ARM64)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonarm64/3.11.3/pythonarm64.3.11.3.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.11-arm64", - "sort-version": "3.11.2", - "company": "PythonCore", - "tag": "3.11-arm64", - "install-for": [ - "3.11.2-arm64", - "3.11-arm64", - "3-arm64" - ], - "run-for": [ - { - "tag": "3.11.2-arm64", - "target": "python.exe" - }, - { - "tag": "3.11-arm64", - "target": "python.exe" - }, - { - "tag": "3-arm64", - "target": "python.exe" - }, - { - "tag": "3.11.2-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.11-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-arm64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.11-arm64.exe", - "target": "python.exe" - }, - { - "name": "python3-arm64.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.11-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.11-arm64", - "DisplayName": "Python 3.11.2 (ARM64)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.11", - "Version": "3.11.2", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.11/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.11 (ARM64)", - "Items": [ - { - "Name": "Python 3.11 (ARM64)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.11 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.11/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.11/" - } - ], - "display-name": "Python 3.11.2 (ARM64)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonarm64/3.11.2/pythonarm64.3.11.2.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.11-arm64", - "sort-version": "3.11.1", - "company": "PythonCore", - "tag": "3.11-arm64", - "install-for": [ - "3.11.1-arm64", - "3.11-arm64", - "3-arm64" - ], - "run-for": [ - { - "tag": "3.11.1-arm64", - "target": "python.exe" - }, - { - "tag": "3.11-arm64", - "target": "python.exe" - }, - { - "tag": "3-arm64", - "target": "python.exe" - }, - { - "tag": "3.11.1-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.11-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-arm64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.11-arm64.exe", - "target": "python.exe" - }, - { - "name": "python3-arm64.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.11-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.11-arm64", - "DisplayName": "Python 3.11.1 (ARM64)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.11", - "Version": "3.11.1", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.11/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.11 (ARM64)", - "Items": [ - { - "Name": "Python 3.11 (ARM64)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.11 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.11/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.11/" - } - ], - "display-name": "Python 3.11.1 (ARM64)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonarm64/3.11.1/pythonarm64.3.11.1.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.11-arm64", - "sort-version": "3.11.0", - "company": "PythonCore", - "tag": "3.11-arm64", - "install-for": [ - "3.11.0-arm64", - "3.11-arm64", - "3-arm64" - ], - "run-for": [ - { - "tag": "3.11.0-arm64", - "target": "python.exe" - }, - { - "tag": "3.11-arm64", - "target": "python.exe" - }, - { - "tag": "3-arm64", - "target": "python.exe" - }, - { - "tag": "3.11.0-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.11-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-arm64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.11-arm64.exe", - "target": "python.exe" - }, - { - "name": "python3-arm64.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.11-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.11-arm64", - "DisplayName": "Python 3.11.0 (ARM64)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.11", - "Version": "3.11.0", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.11/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.11 (ARM64)", - "Items": [ - { - "Name": "Python 3.11 (ARM64)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.11 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.11/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.11/" - } - ], - "display-name": "Python 3.11.0 (ARM64)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonarm64/3.11.0/pythonarm64.3.11.0.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.10-arm64", - "sort-version": "3.10.11", - "company": "PythonCore", - "tag": "3.10-arm64", - "install-for": [ - "3.10.11-arm64", - "3.10-arm64", - "3-arm64" - ], - "run-for": [ - { - "tag": "3.10.11-arm64", - "target": "python.exe" - }, - { - "tag": "3.10-arm64", - "target": "python.exe" - }, - { - "tag": "3-arm64", - "target": "python.exe" - }, - { - "tag": "3.10.11-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.10-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-arm64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.10-arm64.exe", - "target": "python.exe" - }, - { - "name": "python3-arm64.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.10-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.10-arm64", - "DisplayName": "Python 3.10.11 (ARM64)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.10", - "Version": "3.10.11", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.10/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.10 (ARM64)", - "Items": [ - { - "Name": "Python 3.10 (ARM64)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.10 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.10/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.10/" - } - ], - "display-name": "Python 3.10.11 (ARM64)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonarm64/3.10.11/pythonarm64.3.10.11.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.10-arm64", - "sort-version": "3.10.10", - "company": "PythonCore", - "tag": "3.10-arm64", - "install-for": [ - "3.10.10-arm64", - "3.10-arm64", - "3-arm64" - ], - "run-for": [ - { - "tag": "3.10.10-arm64", - "target": "python.exe" - }, - { - "tag": "3.10-arm64", - "target": "python.exe" - }, - { - "tag": "3-arm64", - "target": "python.exe" - }, - { - "tag": "3.10.10-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.10-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-arm64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.10-arm64.exe", - "target": "python.exe" - }, - { - "name": "python3-arm64.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.10-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.10-arm64", - "DisplayName": "Python 3.10.10 (ARM64)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.10", - "Version": "3.10.10", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.10/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.10 (ARM64)", - "Items": [ - { - "Name": "Python 3.10 (ARM64)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.10 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.10/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.10/" - } - ], - "display-name": "Python 3.10.10 (ARM64)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonarm64/3.10.10/pythonarm64.3.10.10.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.10-arm64", - "sort-version": "3.10.8", - "company": "PythonCore", - "tag": "3.10-arm64", - "install-for": [ - "3.10.8-arm64", - "3.10-arm64", - "3-arm64" - ], - "run-for": [ - { - "tag": "3.10.8-arm64", - "target": "python.exe" - }, - { - "tag": "3.10-arm64", - "target": "python.exe" - }, - { - "tag": "3-arm64", - "target": "python.exe" - }, - { - "tag": "3.10.8-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.10-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-arm64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.10-arm64.exe", - "target": "python.exe" - }, - { - "name": "python3-arm64.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.10-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.10-arm64", - "DisplayName": "Python 3.10.8 (ARM64)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.10", - "Version": "3.10.8", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.10/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.10 (ARM64)", - "Items": [ - { - "Name": "Python 3.10 (ARM64)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.10 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.10/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.10/" - } - ], - "display-name": "Python 3.10.8 (ARM64)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonarm64/3.10.8/pythonarm64.3.10.8.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.10-arm64", - "sort-version": "3.10.7", - "company": "PythonCore", - "tag": "3.10-arm64", - "install-for": [ - "3.10.7-arm64", - "3.10-arm64", - "3-arm64" - ], - "run-for": [ - { - "tag": "3.10.7-arm64", - "target": "python.exe" - }, - { - "tag": "3.10-arm64", - "target": "python.exe" - }, - { - "tag": "3-arm64", - "target": "python.exe" - }, - { - "tag": "3.10.7-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.10-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-arm64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.10-arm64.exe", - "target": "python.exe" - }, - { - "name": "python3-arm64.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.10-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.10-arm64", - "DisplayName": "Python 3.10.7 (ARM64)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.10", - "Version": "3.10.7", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.10/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.10 (ARM64)", - "Items": [ - { - "Name": "Python 3.10 (ARM64)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.10 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.10/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.10/" - } - ], - "display-name": "Python 3.10.7 (ARM64)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonarm64/3.10.7/pythonarm64.3.10.7.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.10-arm64", - "sort-version": "3.10.6", - "company": "PythonCore", - "tag": "3.10-arm64", - "install-for": [ - "3.10.6-arm64", - "3.10-arm64", - "3-arm64" - ], - "run-for": [ - { - "tag": "3.10.6-arm64", - "target": "python.exe" - }, - { - "tag": "3.10-arm64", - "target": "python.exe" - }, - { - "tag": "3-arm64", - "target": "python.exe" - }, - { - "tag": "3.10.6-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.10-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-arm64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.10-arm64.exe", - "target": "python.exe" - }, - { - "name": "python3-arm64.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.10-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.10-arm64", - "DisplayName": "Python 3.10.6 (ARM64)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.10", - "Version": "3.10.6", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.10/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.10 (ARM64)", - "Items": [ - { - "Name": "Python 3.10 (ARM64)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.10 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.10/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.10/" - } - ], - "display-name": "Python 3.10.6 (ARM64)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonarm64/3.10.6/pythonarm64.3.10.6.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.10-arm64", - "sort-version": "3.10.5", - "company": "PythonCore", - "tag": "3.10-arm64", - "install-for": [ - "3.10.5-arm64", - "3.10-arm64", - "3-arm64" - ], - "run-for": [ - { - "tag": "3.10.5-arm64", - "target": "python.exe" - }, - { - "tag": "3.10-arm64", - "target": "python.exe" - }, - { - "tag": "3-arm64", - "target": "python.exe" - }, - { - "tag": "3.10.5-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.10-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-arm64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.10-arm64.exe", - "target": "python.exe" - }, - { - "name": "python3-arm64.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.10-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.10-arm64", - "DisplayName": "Python 3.10.5 (ARM64)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.10", - "Version": "3.10.5", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.10/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.10 (ARM64)", - "Items": [ - { - "Name": "Python 3.10 (ARM64)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.10 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.10/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.10/" - } - ], - "display-name": "Python 3.10.5 (ARM64)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonarm64/3.10.5/pythonarm64.3.10.5.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.10-arm64", - "sort-version": "3.10.4", - "company": "PythonCore", - "tag": "3.10-arm64", - "install-for": [ - "3.10.4-arm64", - "3.10-arm64", - "3-arm64" - ], - "run-for": [ - { - "tag": "3.10.4-arm64", - "target": "python.exe" - }, - { - "tag": "3.10-arm64", - "target": "python.exe" - }, - { - "tag": "3-arm64", - "target": "python.exe" - }, - { - "tag": "3.10.4-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.10-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-arm64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.10-arm64.exe", - "target": "python.exe" - }, - { - "name": "python3-arm64.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.10-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.10-arm64", - "DisplayName": "Python 3.10.4 (ARM64)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.10", - "Version": "3.10.4", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.10/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.10 (ARM64)", - "Items": [ - { - "Name": "Python 3.10 (ARM64)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.10 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.10/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.10/" - } - ], - "display-name": "Python 3.10.4 (ARM64)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonarm64/3.10.4/pythonarm64.3.10.4.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.10-arm64", - "sort-version": "3.10.3", - "company": "PythonCore", - "tag": "3.10-arm64", - "install-for": [ - "3.10.3-arm64", - "3.10-arm64", - "3-arm64" - ], - "run-for": [ - { - "tag": "3.10.3-arm64", - "target": "python.exe" - }, - { - "tag": "3.10-arm64", - "target": "python.exe" - }, - { - "tag": "3-arm64", - "target": "python.exe" - }, - { - "tag": "3.10.3-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.10-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-arm64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.10-arm64.exe", - "target": "python.exe" - }, - { - "name": "python3-arm64.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.10-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.10-arm64", - "DisplayName": "Python 3.10.3 (ARM64)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.10", - "Version": "3.10.3", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.10/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.10 (ARM64)", - "Items": [ - { - "Name": "Python 3.10 (ARM64)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.10 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.10/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.10/" - } - ], - "display-name": "Python 3.10.3 (ARM64)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonarm64/3.10.3/pythonarm64.3.10.3.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.10-arm64", - "sort-version": "3.10.2", - "company": "PythonCore", - "tag": "3.10-arm64", - "install-for": [ - "3.10.2-arm64", - "3.10-arm64", - "3-arm64" - ], - "run-for": [ - { - "tag": "3.10.2-arm64", - "target": "python.exe" - }, - { - "tag": "3.10-arm64", - "target": "python.exe" - }, - { - "tag": "3-arm64", - "target": "python.exe" - }, - { - "tag": "3.10.2-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.10-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-arm64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.10-arm64.exe", - "target": "python.exe" - }, - { - "name": "python3-arm64.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.10-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.10-arm64", - "DisplayName": "Python 3.10.2 (ARM64)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.10", - "Version": "3.10.2", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.10/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.10 (ARM64)", - "Items": [ - { - "Name": "Python 3.10 (ARM64)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.10 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.10/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.10/" - } - ], - "display-name": "Python 3.10.2 (ARM64)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonarm64/3.10.2/pythonarm64.3.10.2.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.10-arm64", - "sort-version": "3.10.1", - "company": "PythonCore", - "tag": "3.10-arm64", - "install-for": [ - "3.10.1-arm64", - "3.10-arm64", - "3-arm64" - ], - "run-for": [ - { - "tag": "3.10.1-arm64", - "target": "python.exe" - }, - { - "tag": "3.10-arm64", - "target": "python.exe" - }, - { - "tag": "3-arm64", - "target": "python.exe" - }, - { - "tag": "3.10.1-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.10-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-arm64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.10-arm64.exe", - "target": "python.exe" - }, - { - "name": "python3-arm64.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.10-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.10-arm64", - "DisplayName": "Python 3.10.1 (ARM64)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.10", - "Version": "3.10.1", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.10/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.10 (ARM64)", - "Items": [ - { - "Name": "Python 3.10 (ARM64)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.10 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.10/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.10/" - } - ], - "display-name": "Python 3.10.1 (ARM64)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonarm64/3.10.1/pythonarm64.3.10.1.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.10-arm64", - "sort-version": "3.10.0", - "company": "PythonCore", - "tag": "3.10-arm64", - "install-for": [ - "3.10.0-arm64", - "3.10-arm64", - "3-arm64" - ], - "run-for": [ - { - "tag": "3.10.0-arm64", - "target": "python.exe" - }, - { - "tag": "3.10-arm64", - "target": "python.exe" - }, - { - "tag": "3-arm64", - "target": "python.exe" - }, - { - "tag": "3.10.0-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.10-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-arm64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.10-arm64.exe", - "target": "python.exe" - }, - { - "name": "python3-arm64.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.10-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.10-arm64", - "DisplayName": "Python 3.10.0 (ARM64)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.10", - "Version": "3.10.0", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.10/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.10 (ARM64)", - "Items": [ - { - "Name": "Python 3.10 (ARM64)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.10 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.10/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.10/" - } - ], - "display-name": "Python 3.10.0 (ARM64)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonarm64/3.10.0/pythonarm64.3.10.0.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.9-arm64", - "sort-version": "3.9.10", - "company": "PythonCore", - "tag": "3.9-arm64", - "install-for": [ - "3.9.10-arm64", - "3.9-arm64", - "3-arm64" - ], - "run-for": [ - { - "tag": "3.9.10-arm64", - "target": "python.exe" - }, - { - "tag": "3.9-arm64", - "target": "python.exe" - }, - { - "tag": "3-arm64", - "target": "python.exe" - }, - { - "tag": "3.9.10-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.9-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-arm64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.9-arm64.exe", - "target": "python.exe" - }, - { - "name": "python3-arm64.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.9-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.9-arm64", - "DisplayName": "Python 3.9.10 (ARM64)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.9", - "Version": "3.9.10", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.9/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.9 (ARM64)", - "Items": [ - { - "Name": "Python 3.9 (ARM64)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.9 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.9/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.9/" - } - ], - "display-name": "Python 3.9.10 (ARM64)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonarm64/3.9.10/pythonarm64.3.9.10.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.9-arm64", - "sort-version": "3.9.9", - "company": "PythonCore", - "tag": "3.9-arm64", - "install-for": [ - "3.9.9-arm64", - "3.9-arm64", - "3-arm64" - ], - "run-for": [ - { - "tag": "3.9.9-arm64", - "target": "python.exe" - }, - { - "tag": "3.9-arm64", - "target": "python.exe" - }, - { - "tag": "3-arm64", - "target": "python.exe" - }, - { - "tag": "3.9.9-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.9-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-arm64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.9-arm64.exe", - "target": "python.exe" - }, - { - "name": "python3-arm64.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.9-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.9-arm64", - "DisplayName": "Python 3.9.9 (ARM64)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.9", - "Version": "3.9.9", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.9/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.9 (ARM64)", - "Items": [ - { - "Name": "Python 3.9 (ARM64)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.9 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.9/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.9/" - } - ], - "display-name": "Python 3.9.9 (ARM64)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonarm64/3.9.9/pythonarm64.3.9.9.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.9-arm64", - "sort-version": "3.9.8", - "company": "PythonCore", - "tag": "3.9-arm64", - "install-for": [ - "3.9.8-arm64", - "3.9-arm64", - "3-arm64" - ], - "run-for": [ - { - "tag": "3.9.8-arm64", - "target": "python.exe" - }, - { - "tag": "3.9-arm64", - "target": "python.exe" - }, - { - "tag": "3-arm64", - "target": "python.exe" - }, - { - "tag": "3.9.8-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.9-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-arm64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.9-arm64.exe", - "target": "python.exe" - }, - { - "name": "python3-arm64.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.9-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.9-arm64", - "DisplayName": "Python 3.9.8 (ARM64)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.9", - "Version": "3.9.8", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.9/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.9 (ARM64)", - "Items": [ - { - "Name": "Python 3.9 (ARM64)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.9 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.9/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.9/" - } - ], - "display-name": "Python 3.9.8 (ARM64)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonarm64/3.9.8/pythonarm64.3.9.8.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.9-arm64", - "sort-version": "3.9.7", - "company": "PythonCore", - "tag": "3.9-arm64", - "install-for": [ - "3.9.7-arm64", - "3.9-arm64", - "3-arm64" - ], - "run-for": [ - { - "tag": "3.9.7-arm64", - "target": "python.exe" - }, - { - "tag": "3.9-arm64", - "target": "python.exe" - }, - { - "tag": "3-arm64", - "target": "python.exe" - }, - { - "tag": "3.9.7-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.9-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-arm64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.9-arm64.exe", - "target": "python.exe" - }, - { - "name": "python3-arm64.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.9-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.9-arm64", - "DisplayName": "Python 3.9.7 (ARM64)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.9", - "Version": "3.9.7", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.9/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.9 (ARM64)", - "Items": [ - { - "Name": "Python 3.9 (ARM64)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.9 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.9/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.9/" - } - ], - "display-name": "Python 3.9.7 (ARM64)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonarm64/3.9.7/pythonarm64.3.9.7.nupkg" - } - ] -} \ No newline at end of file diff --git a/src/index.json b/src/index.json deleted file mode 100644 index 47389ea..0000000 --- a/src/index.json +++ /dev/null @@ -1,9800 +0,0 @@ -{ - "versions": [ - { - "schema": 1, - "id": "pythoncore-3.14-64", - "sort-version": "3.14.0a7", - "company": "PythonCore", - "tag": "3.14-64", - "install-for": [ - "3.14.0a7-64", - "3.14-dev-64" - ], - "run-for": [ - { - "tag": "3.14.0a7-64", - "target": "python.exe" - }, - { - "tag": "3.14-64", - "target": "python.exe" - }, - { - "tag": "3.14.0a7-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.14-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.14.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.14.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.14", - "DisplayName": "Python 3.14.0a7", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.14", - "Version": "3.14.0a7", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.14/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.14", - "Items": [ - { - "Name": "Python 3.14", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.14 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.14/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.14/" - } - ], - "display-name": "Python 3.14.0a7", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.14.0-a7/python.3.14.0-a7.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.14-64", - "sort-version": "3.14.0a6", - "company": "PythonCore", - "tag": "3.14-64", - "install-for": [ - "3.14.0a6-64", - "3.14-dev-64" - ], - "run-for": [ - { - "tag": "3.14.0a6-64", - "target": "python.exe" - }, - { - "tag": "3.14-64", - "target": "python.exe" - }, - { - "tag": "3.14.0a6-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.14-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.14.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.14.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.14", - "DisplayName": "Python 3.14.0a6", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.14", - "Version": "3.14.0a6", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.14/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.14", - "Items": [ - { - "Name": "Python 3.14", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.14 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.14/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.14/" - } - ], - "display-name": "Python 3.14.0a6", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.14.0-a6/python.3.14.0-a6.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.14-64", - "sort-version": "3.14.0a5", - "company": "PythonCore", - "tag": "3.14-64", - "install-for": [ - "3.14.0a5-64", - "3.14-dev-64" - ], - "run-for": [ - { - "tag": "3.14.0a5-64", - "target": "python.exe" - }, - { - "tag": "3.14-64", - "target": "python.exe" - }, - { - "tag": "3.14.0a5-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.14-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.14.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.14.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.14", - "DisplayName": "Python 3.14.0a5", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.14", - "Version": "3.14.0a5", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.14/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.14", - "Items": [ - { - "Name": "Python 3.14", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.14 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.14/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.14/" - } - ], - "display-name": "Python 3.14.0a5", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.14.0-a5/python.3.14.0-a5.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.14-64", - "sort-version": "3.14.0a4", - "company": "PythonCore", - "tag": "3.14-64", - "install-for": [ - "3.14.0a4-64", - "3.14-dev-64" - ], - "run-for": [ - { - "tag": "3.14.0a4-64", - "target": "python.exe" - }, - { - "tag": "3.14-64", - "target": "python.exe" - }, - { - "tag": "3.14.0a4-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.14-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.14.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.14.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.14", - "DisplayName": "Python 3.14.0a4", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.14", - "Version": "3.14.0a4", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.14/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.14", - "Items": [ - { - "Name": "Python 3.14", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.14 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.14/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.14/" - } - ], - "display-name": "Python 3.14.0a4", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.14.0-a4/python.3.14.0-a4.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.14-64", - "sort-version": "3.14.0a3", - "company": "PythonCore", - "tag": "3.14-64", - "install-for": [ - "3.14.0a3-64", - "3.14-dev-64" - ], - "run-for": [ - { - "tag": "3.14.0a3-64", - "target": "python.exe" - }, - { - "tag": "3.14-64", - "target": "python.exe" - }, - { - "tag": "3.14.0a3-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.14-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.14.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.14.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.14", - "DisplayName": "Python 3.14.0a3", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.14", - "Version": "3.14.0a3", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.14/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.14", - "Items": [ - { - "Name": "Python 3.14", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.14 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.14/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.14/" - } - ], - "display-name": "Python 3.14.0a3", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.14.0-a3/python.3.14.0-a3.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.14-64", - "sort-version": "3.14.0a2", - "company": "PythonCore", - "tag": "3.14-64", - "install-for": [ - "3.14.0a2-64", - "3.14-dev-64" - ], - "run-for": [ - { - "tag": "3.14.0a2-64", - "target": "python.exe" - }, - { - "tag": "3.14-64", - "target": "python.exe" - }, - { - "tag": "3.14.0a2-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.14-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.14.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.14.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.14", - "DisplayName": "Python 3.14.0a2", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.14", - "Version": "3.14.0a2", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.14/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.14", - "Items": [ - { - "Name": "Python 3.14", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.14 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.14/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.14/" - } - ], - "display-name": "Python 3.14.0a2", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.14.0-a2/python.3.14.0-a2.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.14-64", - "sort-version": "3.14.0a1", - "company": "PythonCore", - "tag": "3.14-64", - "install-for": [ - "3.14.0a1-64", - "3.14-dev-64" - ], - "run-for": [ - { - "tag": "3.14.0a1-64", - "target": "python.exe" - }, - { - "tag": "3.14-64", - "target": "python.exe" - }, - { - "tag": "3.14.0a1-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.14-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.14.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.14.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.14", - "DisplayName": "Python 3.14.0a1", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.14", - "Version": "3.14.0a1", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.14/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.14", - "Items": [ - { - "Name": "Python 3.14", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.14 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.14/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.14/" - } - ], - "display-name": "Python 3.14.0a1", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.14.0-a1/python.3.14.0-a1.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.13-64", - "sort-version": "3.13.3", - "company": "PythonCore", - "tag": "3.13-64", - "install-for": [ - "3.13.3-64", - "3.13-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.13.3-64", - "target": "python.exe" - }, - { - "tag": "3.13-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.13.3-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.13-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.13.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.13.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.13", - "DisplayName": "Python 3.13.3", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.13", - "Version": "3.13.3", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.13/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.13", - "Items": [ - { - "Name": "Python 3.13", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.13 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.13/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.13/" - } - ], - "display-name": "Python 3.13.3", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.13.3/python.3.13.3.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.13-64", - "sort-version": "3.13.2", - "company": "PythonCore", - "tag": "3.13-64", - "install-for": [ - "3.13.2-64", - "3.13-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.13.2-64", - "target": "python.exe" - }, - { - "tag": "3.13-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.13.2-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.13-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.13.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.13.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.13", - "DisplayName": "Python 3.13.2", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.13", - "Version": "3.13.2", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.13/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.13", - "Items": [ - { - "Name": "Python 3.13", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.13 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.13/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.13/" - } - ], - "display-name": "Python 3.13.2", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.13.2/python.3.13.2.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.13-64", - "sort-version": "3.13.1", - "company": "PythonCore", - "tag": "3.13-64", - "install-for": [ - "3.13.1-64", - "3.13-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.13.1-64", - "target": "python.exe" - }, - { - "tag": "3.13-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.13.1-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.13-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.13.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.13.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.13", - "DisplayName": "Python 3.13.1", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.13", - "Version": "3.13.1", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.13/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.13", - "Items": [ - { - "Name": "Python 3.13", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.13 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.13/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.13/" - } - ], - "display-name": "Python 3.13.1", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.13.1/python.3.13.1.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.13-64", - "sort-version": "3.13.0", - "company": "PythonCore", - "tag": "3.13-64", - "install-for": [ - "3.13.0-64", - "3.13-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.13.0-64", - "target": "python.exe" - }, - { - "tag": "3.13-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.13.0-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.13-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.13.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.13.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.13", - "DisplayName": "Python 3.13.0", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.13", - "Version": "3.13.0", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.13/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.13", - "Items": [ - { - "Name": "Python 3.13", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.13 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.13/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.13/" - } - ], - "display-name": "Python 3.13.0", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.13.0/python.3.13.0.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.12-64", - "sort-version": "3.12.10", - "company": "PythonCore", - "tag": "3.12-64", - "install-for": [ - "3.12.10-64", - "3.12-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.12.10-64", - "target": "python.exe" - }, - { - "tag": "3.12-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.12.10-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.12-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.12.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.12.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.12", - "DisplayName": "Python 3.12.10", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.12", - "Version": "3.12.10", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.12/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.12", - "Items": [ - { - "Name": "Python 3.12", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.12 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.12/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.12/" - } - ], - "display-name": "Python 3.12.10", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.12.10/python.3.12.10.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.12-64", - "sort-version": "3.12.9", - "company": "PythonCore", - "tag": "3.12-64", - "install-for": [ - "3.12.9-64", - "3.12-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.12.9-64", - "target": "python.exe" - }, - { - "tag": "3.12-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.12.9-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.12-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.12.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.12.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.12", - "DisplayName": "Python 3.12.9", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.12", - "Version": "3.12.9", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.12/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.12", - "Items": [ - { - "Name": "Python 3.12", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.12 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.12/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.12/" - } - ], - "display-name": "Python 3.12.9", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.12.9/python.3.12.9.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.12-64", - "sort-version": "3.12.8", - "company": "PythonCore", - "tag": "3.12-64", - "install-for": [ - "3.12.8-64", - "3.12-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.12.8-64", - "target": "python.exe" - }, - { - "tag": "3.12-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.12.8-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.12-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.12.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.12.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.12", - "DisplayName": "Python 3.12.8", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.12", - "Version": "3.12.8", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.12/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.12", - "Items": [ - { - "Name": "Python 3.12", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.12 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.12/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.12/" - } - ], - "display-name": "Python 3.12.8", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.12.8/python.3.12.8.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.12-64", - "sort-version": "3.12.7", - "company": "PythonCore", - "tag": "3.12-64", - "install-for": [ - "3.12.7-64", - "3.12-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.12.7-64", - "target": "python.exe" - }, - { - "tag": "3.12-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.12.7-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.12-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.12.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.12.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.12", - "DisplayName": "Python 3.12.7", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.12", - "Version": "3.12.7", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.12/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.12", - "Items": [ - { - "Name": "Python 3.12", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.12 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.12/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.12/" - } - ], - "display-name": "Python 3.12.7", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.12.7/python.3.12.7.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.12-64", - "sort-version": "3.12.6", - "company": "PythonCore", - "tag": "3.12-64", - "install-for": [ - "3.12.6-64", - "3.12-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.12.6-64", - "target": "python.exe" - }, - { - "tag": "3.12-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.12.6-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.12-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.12.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.12.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.12", - "DisplayName": "Python 3.12.6", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.12", - "Version": "3.12.6", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.12/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.12", - "Items": [ - { - "Name": "Python 3.12", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.12 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.12/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.12/" - } - ], - "display-name": "Python 3.12.6", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.12.6/python.3.12.6.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.12-64", - "sort-version": "3.12.5", - "company": "PythonCore", - "tag": "3.12-64", - "install-for": [ - "3.12.5-64", - "3.12-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.12.5-64", - "target": "python.exe" - }, - { - "tag": "3.12-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.12.5-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.12-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.12.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.12.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.12", - "DisplayName": "Python 3.12.5", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.12", - "Version": "3.12.5", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.12/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.12", - "Items": [ - { - "Name": "Python 3.12", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.12 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.12/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.12/" - } - ], - "display-name": "Python 3.12.5", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.12.5/python.3.12.5.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.12-64", - "sort-version": "3.12.4", - "company": "PythonCore", - "tag": "3.12-64", - "install-for": [ - "3.12.4-64", - "3.12-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.12.4-64", - "target": "python.exe" - }, - { - "tag": "3.12-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.12.4-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.12-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.12.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.12.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.12", - "DisplayName": "Python 3.12.4", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.12", - "Version": "3.12.4", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.12/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.12", - "Items": [ - { - "Name": "Python 3.12", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.12 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.12/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.12/" - } - ], - "display-name": "Python 3.12.4", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.12.4/python.3.12.4.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.12-64", - "sort-version": "3.12.3", - "company": "PythonCore", - "tag": "3.12-64", - "install-for": [ - "3.12.3-64", - "3.12-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.12.3-64", - "target": "python.exe" - }, - { - "tag": "3.12-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.12.3-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.12-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.12.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.12.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.12", - "DisplayName": "Python 3.12.3", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.12", - "Version": "3.12.3", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.12/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.12", - "Items": [ - { - "Name": "Python 3.12", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.12 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.12/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.12/" - } - ], - "display-name": "Python 3.12.3", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.12.3/python.3.12.3.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.12-64", - "sort-version": "3.12.2", - "company": "PythonCore", - "tag": "3.12-64", - "install-for": [ - "3.12.2-64", - "3.12-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.12.2-64", - "target": "python.exe" - }, - { - "tag": "3.12-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.12.2-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.12-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.12.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.12.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.12", - "DisplayName": "Python 3.12.2", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.12", - "Version": "3.12.2", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.12/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.12", - "Items": [ - { - "Name": "Python 3.12", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.12 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.12/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.12/" - } - ], - "display-name": "Python 3.12.2", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.12.2/python.3.12.2.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.12-64", - "sort-version": "3.12.1", - "company": "PythonCore", - "tag": "3.12-64", - "install-for": [ - "3.12.1-64", - "3.12-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.12.1-64", - "target": "python.exe" - }, - { - "tag": "3.12-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.12.1-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.12-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.12.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.12.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.12", - "DisplayName": "Python 3.12.1", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.12", - "Version": "3.12.1", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.12/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.12", - "Items": [ - { - "Name": "Python 3.12", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.12 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.12/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.12/" - } - ], - "display-name": "Python 3.12.1", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.12.1/python.3.12.1.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.12-64", - "sort-version": "3.12.0", - "company": "PythonCore", - "tag": "3.12-64", - "install-for": [ - "3.12.0-64", - "3.12-64", - "3-64" - ], - "run-for": [ - { - "tag": "3.12.0-64", - "target": "python.exe" - }, - { - "tag": "3.12-64", - "target": "python.exe" - }, - { - "tag": "3-64", - "target": "python.exe" - }, - { - "tag": "3.12.0-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.12-64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.12.exe", - "target": "python.exe" - }, - { - "name": "python3.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.12.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.12", - "DisplayName": "Python 3.12.0", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.12", - "Version": "3.12.0", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.12/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.12", - "Items": [ - { - "Name": "Python 3.12", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.12 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.12/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.12/" - } - ], - "display-name": "Python 3.12.0", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python/3.12.0/python.3.12.0.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.14-32", - "sort-version": "3.14.0a7", - "company": "PythonCore", - "tag": "3.14-32", - "install-for": [ - "3.14.0a7-32", - "3.14-dev-32" - ], - "run-for": [ - { - "tag": "3.14.0a7-32", - "target": "python.exe" - }, - { - "tag": "3.14-32", - "target": "python.exe" - }, - { - "tag": "3.14.0a7-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.14-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.14-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.14-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.14-32", - "DisplayName": "Python 3.14.0a7 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.14", - "Version": "3.14.0a7", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.14/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.14 (32-bit)", - "Items": [ - { - "Name": "Python 3.14 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.14 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.14/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.14/" - } - ], - "display-name": "Python 3.14.0a7 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.14.0-a7/pythonx86.3.14.0-a7.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.14-32", - "sort-version": "3.14.0a6", - "company": "PythonCore", - "tag": "3.14-32", - "install-for": [ - "3.14.0a6-32", - "3.14-dev-32" - ], - "run-for": [ - { - "tag": "3.14.0a6-32", - "target": "python.exe" - }, - { - "tag": "3.14-32", - "target": "python.exe" - }, - { - "tag": "3.14.0a6-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.14-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.14-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.14-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.14-32", - "DisplayName": "Python 3.14.0a6 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.14", - "Version": "3.14.0a6", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.14/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.14 (32-bit)", - "Items": [ - { - "Name": "Python 3.14 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.14 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.14/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.14/" - } - ], - "display-name": "Python 3.14.0a6 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.14.0-a6/pythonx86.3.14.0-a6.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.14-32", - "sort-version": "3.14.0a5", - "company": "PythonCore", - "tag": "3.14-32", - "install-for": [ - "3.14.0a5-32", - "3.14-dev-32" - ], - "run-for": [ - { - "tag": "3.14.0a5-32", - "target": "python.exe" - }, - { - "tag": "3.14-32", - "target": "python.exe" - }, - { - "tag": "3.14.0a5-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.14-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.14-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.14-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.14-32", - "DisplayName": "Python 3.14.0a5 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.14", - "Version": "3.14.0a5", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.14/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.14 (32-bit)", - "Items": [ - { - "Name": "Python 3.14 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.14 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.14/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.14/" - } - ], - "display-name": "Python 3.14.0a5 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.14.0-a5/pythonx86.3.14.0-a5.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.14-32", - "sort-version": "3.14.0a4", - "company": "PythonCore", - "tag": "3.14-32", - "install-for": [ - "3.14.0a4-32", - "3.14-dev-32" - ], - "run-for": [ - { - "tag": "3.14.0a4-32", - "target": "python.exe" - }, - { - "tag": "3.14-32", - "target": "python.exe" - }, - { - "tag": "3.14.0a4-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.14-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.14-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.14-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.14-32", - "DisplayName": "Python 3.14.0a4 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.14", - "Version": "3.14.0a4", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.14/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.14 (32-bit)", - "Items": [ - { - "Name": "Python 3.14 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.14 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.14/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.14/" - } - ], - "display-name": "Python 3.14.0a4 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.14.0-a4/pythonx86.3.14.0-a4.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.14-32", - "sort-version": "3.14.0a3", - "company": "PythonCore", - "tag": "3.14-32", - "install-for": [ - "3.14.0a3-32", - "3.14-dev-32" - ], - "run-for": [ - { - "tag": "3.14.0a3-32", - "target": "python.exe" - }, - { - "tag": "3.14-32", - "target": "python.exe" - }, - { - "tag": "3.14.0a3-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.14-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.14-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.14-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.14-32", - "DisplayName": "Python 3.14.0a3 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.14", - "Version": "3.14.0a3", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.14/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.14 (32-bit)", - "Items": [ - { - "Name": "Python 3.14 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.14 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.14/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.14/" - } - ], - "display-name": "Python 3.14.0a3 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.14.0-a3/pythonx86.3.14.0-a3.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.14-32", - "sort-version": "3.14.0a2", - "company": "PythonCore", - "tag": "3.14-32", - "install-for": [ - "3.14.0a2-32", - "3.14-dev-32" - ], - "run-for": [ - { - "tag": "3.14.0a2-32", - "target": "python.exe" - }, - { - "tag": "3.14-32", - "target": "python.exe" - }, - { - "tag": "3.14.0a2-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.14-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.14-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.14-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.14-32", - "DisplayName": "Python 3.14.0a2 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.14", - "Version": "3.14.0a2", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.14/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.14 (32-bit)", - "Items": [ - { - "Name": "Python 3.14 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.14 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.14/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.14/" - } - ], - "display-name": "Python 3.14.0a2 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.14.0-a2/pythonx86.3.14.0-a2.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.14-32", - "sort-version": "3.14.0a1", - "company": "PythonCore", - "tag": "3.14-32", - "install-for": [ - "3.14.0a1-32", - "3.14-dev-32" - ], - "run-for": [ - { - "tag": "3.14.0a1-32", - "target": "python.exe" - }, - { - "tag": "3.14-32", - "target": "python.exe" - }, - { - "tag": "3.14.0a1-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.14-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.14-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.14-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.14-32", - "DisplayName": "Python 3.14.0a1 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.14", - "Version": "3.14.0a1", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.14/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.14 (32-bit)", - "Items": [ - { - "Name": "Python 3.14 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.14 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.14/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.14/" - } - ], - "display-name": "Python 3.14.0a1 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.14.0-a1/pythonx86.3.14.0-a1.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.13-32", - "sort-version": "3.13.3", - "company": "PythonCore", - "tag": "3.13-32", - "install-for": [ - "3.13.3-32", - "3.13-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.13.3-32", - "target": "python.exe" - }, - { - "tag": "3.13-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.13.3-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.13-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.13-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.13-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.13-32", - "DisplayName": "Python 3.13.3 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.13", - "Version": "3.13.3", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.13/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.13 (32-bit)", - "Items": [ - { - "Name": "Python 3.13 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.13 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.13/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.13/" - } - ], - "display-name": "Python 3.13.3 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.13.3/pythonx86.3.13.3.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.13-32", - "sort-version": "3.13.2", - "company": "PythonCore", - "tag": "3.13-32", - "install-for": [ - "3.13.2-32", - "3.13-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.13.2-32", - "target": "python.exe" - }, - { - "tag": "3.13-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.13.2-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.13-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.13-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.13-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.13-32", - "DisplayName": "Python 3.13.2 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.13", - "Version": "3.13.2", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.13/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.13 (32-bit)", - "Items": [ - { - "Name": "Python 3.13 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.13 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.13/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.13/" - } - ], - "display-name": "Python 3.13.2 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.13.2/pythonx86.3.13.2.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.13-32", - "sort-version": "3.13.1", - "company": "PythonCore", - "tag": "3.13-32", - "install-for": [ - "3.13.1-32", - "3.13-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.13.1-32", - "target": "python.exe" - }, - { - "tag": "3.13-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.13.1-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.13-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.13-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.13-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.13-32", - "DisplayName": "Python 3.13.1 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.13", - "Version": "3.13.1", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.13/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.13 (32-bit)", - "Items": [ - { - "Name": "Python 3.13 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.13 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.13/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.13/" - } - ], - "display-name": "Python 3.13.1 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.13.1/pythonx86.3.13.1.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.13-32", - "sort-version": "3.13.0", - "company": "PythonCore", - "tag": "3.13-32", - "install-for": [ - "3.13.0-32", - "3.13-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.13.0-32", - "target": "python.exe" - }, - { - "tag": "3.13-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.13.0-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.13-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.13-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.13-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.13-32", - "DisplayName": "Python 3.13.0 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.13", - "Version": "3.13.0", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.13/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.13 (32-bit)", - "Items": [ - { - "Name": "Python 3.13 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.13 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.13/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.13/" - } - ], - "display-name": "Python 3.13.0 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.13.0/pythonx86.3.13.0.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.12-32", - "sort-version": "3.12.10", - "company": "PythonCore", - "tag": "3.12-32", - "install-for": [ - "3.12.10-32", - "3.12-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.12.10-32", - "target": "python.exe" - }, - { - "tag": "3.12-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.12.10-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.12-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.12-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.12-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.12-32", - "DisplayName": "Python 3.12.10 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.12", - "Version": "3.12.10", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.12/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.12 (32-bit)", - "Items": [ - { - "Name": "Python 3.12 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.12 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.12/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.12/" - } - ], - "display-name": "Python 3.12.10 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.12.10/pythonx86.3.12.10.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.12-32", - "sort-version": "3.12.9", - "company": "PythonCore", - "tag": "3.12-32", - "install-for": [ - "3.12.9-32", - "3.12-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.12.9-32", - "target": "python.exe" - }, - { - "tag": "3.12-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.12.9-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.12-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.12-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.12-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.12-32", - "DisplayName": "Python 3.12.9 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.12", - "Version": "3.12.9", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.12/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.12 (32-bit)", - "Items": [ - { - "Name": "Python 3.12 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.12 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.12/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.12/" - } - ], - "display-name": "Python 3.12.9 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.12.9/pythonx86.3.12.9.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.12-32", - "sort-version": "3.12.8", - "company": "PythonCore", - "tag": "3.12-32", - "install-for": [ - "3.12.8-32", - "3.12-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.12.8-32", - "target": "python.exe" - }, - { - "tag": "3.12-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.12.8-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.12-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.12-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.12-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.12-32", - "DisplayName": "Python 3.12.8 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.12", - "Version": "3.12.8", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.12/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.12 (32-bit)", - "Items": [ - { - "Name": "Python 3.12 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.12 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.12/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.12/" - } - ], - "display-name": "Python 3.12.8 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.12.8/pythonx86.3.12.8.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.12-32", - "sort-version": "3.12.7", - "company": "PythonCore", - "tag": "3.12-32", - "install-for": [ - "3.12.7-32", - "3.12-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.12.7-32", - "target": "python.exe" - }, - { - "tag": "3.12-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.12.7-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.12-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.12-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.12-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.12-32", - "DisplayName": "Python 3.12.7 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.12", - "Version": "3.12.7", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.12/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.12 (32-bit)", - "Items": [ - { - "Name": "Python 3.12 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.12 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.12/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.12/" - } - ], - "display-name": "Python 3.12.7 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.12.7/pythonx86.3.12.7.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.12-32", - "sort-version": "3.12.6", - "company": "PythonCore", - "tag": "3.12-32", - "install-for": [ - "3.12.6-32", - "3.12-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.12.6-32", - "target": "python.exe" - }, - { - "tag": "3.12-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.12.6-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.12-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.12-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.12-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.12-32", - "DisplayName": "Python 3.12.6 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.12", - "Version": "3.12.6", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.12/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.12 (32-bit)", - "Items": [ - { - "Name": "Python 3.12 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.12 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.12/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.12/" - } - ], - "display-name": "Python 3.12.6 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.12.6/pythonx86.3.12.6.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.12-32", - "sort-version": "3.12.5", - "company": "PythonCore", - "tag": "3.12-32", - "install-for": [ - "3.12.5-32", - "3.12-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.12.5-32", - "target": "python.exe" - }, - { - "tag": "3.12-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.12.5-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.12-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.12-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.12-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.12-32", - "DisplayName": "Python 3.12.5 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.12", - "Version": "3.12.5", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.12/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.12 (32-bit)", - "Items": [ - { - "Name": "Python 3.12 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.12 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.12/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.12/" - } - ], - "display-name": "Python 3.12.5 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.12.5/pythonx86.3.12.5.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.12-32", - "sort-version": "3.12.4", - "company": "PythonCore", - "tag": "3.12-32", - "install-for": [ - "3.12.4-32", - "3.12-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.12.4-32", - "target": "python.exe" - }, - { - "tag": "3.12-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.12.4-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.12-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.12-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.12-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.12-32", - "DisplayName": "Python 3.12.4 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.12", - "Version": "3.12.4", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.12/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.12 (32-bit)", - "Items": [ - { - "Name": "Python 3.12 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.12 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.12/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.12/" - } - ], - "display-name": "Python 3.12.4 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.12.4/pythonx86.3.12.4.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.12-32", - "sort-version": "3.12.3", - "company": "PythonCore", - "tag": "3.12-32", - "install-for": [ - "3.12.3-32", - "3.12-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.12.3-32", - "target": "python.exe" - }, - { - "tag": "3.12-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.12.3-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.12-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.12-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.12-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.12-32", - "DisplayName": "Python 3.12.3 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.12", - "Version": "3.12.3", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.12/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.12 (32-bit)", - "Items": [ - { - "Name": "Python 3.12 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.12 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.12/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.12/" - } - ], - "display-name": "Python 3.12.3 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.12.3/pythonx86.3.12.3.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.12-32", - "sort-version": "3.12.2", - "company": "PythonCore", - "tag": "3.12-32", - "install-for": [ - "3.12.2-32", - "3.12-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.12.2-32", - "target": "python.exe" - }, - { - "tag": "3.12-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.12.2-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.12-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.12-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.12-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.12-32", - "DisplayName": "Python 3.12.2 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.12", - "Version": "3.12.2", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.12/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.12 (32-bit)", - "Items": [ - { - "Name": "Python 3.12 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.12 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.12/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.12/" - } - ], - "display-name": "Python 3.12.2 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.12.2/pythonx86.3.12.2.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.12-32", - "sort-version": "3.12.1", - "company": "PythonCore", - "tag": "3.12-32", - "install-for": [ - "3.12.1-32", - "3.12-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.12.1-32", - "target": "python.exe" - }, - { - "tag": "3.12-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.12.1-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.12-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.12-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.12-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.12-32", - "DisplayName": "Python 3.12.1 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.12", - "Version": "3.12.1", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.12/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.12 (32-bit)", - "Items": [ - { - "Name": "Python 3.12 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.12 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.12/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.12/" - } - ], - "display-name": "Python 3.12.1 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.12.1/pythonx86.3.12.1.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.12-32", - "sort-version": "3.12.0", - "company": "PythonCore", - "tag": "3.12-32", - "install-for": [ - "3.12.0-32", - "3.12-32", - "3-32" - ], - "run-for": [ - { - "tag": "3.12.0-32", - "target": "python.exe" - }, - { - "tag": "3.12-32", - "target": "python.exe" - }, - { - "tag": "3-32", - "target": "python.exe" - }, - { - "tag": "3.12.0-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.12-32", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-32", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.12-32.exe", - "target": "python.exe" - }, - { - "name": "python3-32.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.12-32.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-32.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.12-32", - "DisplayName": "Python 3.12.0 (32-bit)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.12", - "Version": "3.12.0", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.12/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.12 (32-bit)", - "Items": [ - { - "Name": "Python 3.12 (32-bit)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.12 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.12/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.12/" - } - ], - "display-name": "Python 3.12.0 (32-bit)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86/3.12.0/pythonx86.3.12.0.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.14-arm64", - "sort-version": "3.14.0a7", - "company": "PythonCore", - "tag": "3.14-arm64", - "install-for": [ - "3.14.0a7-arm64", - "3.14-dev-arm64" - ], - "run-for": [ - { - "tag": "3.14.0a7-arm64", - "target": "python.exe" - }, - { - "tag": "3.14-arm64", - "target": "python.exe" - }, - { - "tag": "3.14.0a7-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.14-arm64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.14-arm64.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.14-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.14-arm64", - "DisplayName": "Python 3.14.0a7 (ARM64)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.14", - "Version": "3.14.0a7", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.14/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.14 (ARM64)", - "Items": [ - { - "Name": "Python 3.14 (ARM64)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.14 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.14/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.14/" - } - ], - "display-name": "Python 3.14.0a7 (ARM64)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonarm64/3.14.0-a7/pythonarm64.3.14.0-a7.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.14-arm64", - "sort-version": "3.14.0a6", - "company": "PythonCore", - "tag": "3.14-arm64", - "install-for": [ - "3.14.0a6-arm64", - "3.14-dev-arm64" - ], - "run-for": [ - { - "tag": "3.14.0a6-arm64", - "target": "python.exe" - }, - { - "tag": "3.14-arm64", - "target": "python.exe" - }, - { - "tag": "3.14.0a6-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.14-arm64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.14-arm64.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.14-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.14-arm64", - "DisplayName": "Python 3.14.0a6 (ARM64)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.14", - "Version": "3.14.0a6", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.14/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.14 (ARM64)", - "Items": [ - { - "Name": "Python 3.14 (ARM64)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.14 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.14/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.14/" - } - ], - "display-name": "Python 3.14.0a6 (ARM64)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonarm64/3.14.0-a6/pythonarm64.3.14.0-a6.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.14-arm64", - "sort-version": "3.14.0a5", - "company": "PythonCore", - "tag": "3.14-arm64", - "install-for": [ - "3.14.0a5-arm64", - "3.14-dev-arm64" - ], - "run-for": [ - { - "tag": "3.14.0a5-arm64", - "target": "python.exe" - }, - { - "tag": "3.14-arm64", - "target": "python.exe" - }, - { - "tag": "3.14.0a5-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.14-arm64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.14-arm64.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.14-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.14-arm64", - "DisplayName": "Python 3.14.0a5 (ARM64)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.14", - "Version": "3.14.0a5", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.14/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.14 (ARM64)", - "Items": [ - { - "Name": "Python 3.14 (ARM64)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.14 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.14/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.14/" - } - ], - "display-name": "Python 3.14.0a5 (ARM64)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonarm64/3.14.0-a5/pythonarm64.3.14.0-a5.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.14-arm64", - "sort-version": "3.14.0a4", - "company": "PythonCore", - "tag": "3.14-arm64", - "install-for": [ - "3.14.0a4-arm64", - "3.14-dev-arm64" - ], - "run-for": [ - { - "tag": "3.14.0a4-arm64", - "target": "python.exe" - }, - { - "tag": "3.14-arm64", - "target": "python.exe" - }, - { - "tag": "3.14.0a4-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.14-arm64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.14-arm64.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.14-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.14-arm64", - "DisplayName": "Python 3.14.0a4 (ARM64)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.14", - "Version": "3.14.0a4", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.14/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.14 (ARM64)", - "Items": [ - { - "Name": "Python 3.14 (ARM64)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.14 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.14/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.14/" - } - ], - "display-name": "Python 3.14.0a4 (ARM64)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonarm64/3.14.0-a4/pythonarm64.3.14.0-a4.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.14-arm64", - "sort-version": "3.14.0a3", - "company": "PythonCore", - "tag": "3.14-arm64", - "install-for": [ - "3.14.0a3-arm64", - "3.14-dev-arm64" - ], - "run-for": [ - { - "tag": "3.14.0a3-arm64", - "target": "python.exe" - }, - { - "tag": "3.14-arm64", - "target": "python.exe" - }, - { - "tag": "3.14.0a3-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.14-arm64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.14-arm64.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.14-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.14-arm64", - "DisplayName": "Python 3.14.0a3 (ARM64)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.14", - "Version": "3.14.0a3", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.14/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.14 (ARM64)", - "Items": [ - { - "Name": "Python 3.14 (ARM64)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.14 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.14/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.14/" - } - ], - "display-name": "Python 3.14.0a3 (ARM64)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonarm64/3.14.0-a3/pythonarm64.3.14.0-a3.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.14-arm64", - "sort-version": "3.14.0a2", - "company": "PythonCore", - "tag": "3.14-arm64", - "install-for": [ - "3.14.0a2-arm64", - "3.14-dev-arm64" - ], - "run-for": [ - { - "tag": "3.14.0a2-arm64", - "target": "python.exe" - }, - { - "tag": "3.14-arm64", - "target": "python.exe" - }, - { - "tag": "3.14.0a2-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.14-arm64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.14-arm64.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.14-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.14-arm64", - "DisplayName": "Python 3.14.0a2 (ARM64)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.14", - "Version": "3.14.0a2", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.14/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.14 (ARM64)", - "Items": [ - { - "Name": "Python 3.14 (ARM64)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.14 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.14/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.14/" - } - ], - "display-name": "Python 3.14.0a2 (ARM64)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonarm64/3.14.0-a2/pythonarm64.3.14.0-a2.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.14-arm64", - "sort-version": "3.14.0a1", - "company": "PythonCore", - "tag": "3.14-arm64", - "install-for": [ - "3.14.0a1-arm64", - "3.14-dev-arm64" - ], - "run-for": [ - { - "tag": "3.14.0a1-arm64", - "target": "python.exe" - }, - { - "tag": "3.14-arm64", - "target": "python.exe" - }, - { - "tag": "3.14.0a1-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.14-arm64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.14-arm64.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.14-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.14-arm64", - "DisplayName": "Python 3.14.0a1 (ARM64)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.14", - "Version": "3.14.0a1", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.14/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.14 (ARM64)", - "Items": [ - { - "Name": "Python 3.14 (ARM64)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.14 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.14/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.14/" - } - ], - "display-name": "Python 3.14.0a1 (ARM64)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonarm64/3.14.0-a1/pythonarm64.3.14.0-a1.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.13-arm64", - "sort-version": "3.13.3", - "company": "PythonCore", - "tag": "3.13-arm64", - "install-for": [ - "3.13.3-arm64", - "3.13-arm64", - "3-arm64" - ], - "run-for": [ - { - "tag": "3.13.3-arm64", - "target": "python.exe" - }, - { - "tag": "3.13-arm64", - "target": "python.exe" - }, - { - "tag": "3-arm64", - "target": "python.exe" - }, - { - "tag": "3.13.3-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.13-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-arm64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.13-arm64.exe", - "target": "python.exe" - }, - { - "name": "python3-arm64.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.13-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.13-arm64", - "DisplayName": "Python 3.13.3 (ARM64)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.13", - "Version": "3.13.3", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.13/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.13 (ARM64)", - "Items": [ - { - "Name": "Python 3.13 (ARM64)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.13 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.13/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.13/" - } - ], - "display-name": "Python 3.13.3 (ARM64)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonarm64/3.13.3/pythonarm64.3.13.3.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.13-arm64", - "sort-version": "3.13.2", - "company": "PythonCore", - "tag": "3.13-arm64", - "install-for": [ - "3.13.2-arm64", - "3.13-arm64", - "3-arm64" - ], - "run-for": [ - { - "tag": "3.13.2-arm64", - "target": "python.exe" - }, - { - "tag": "3.13-arm64", - "target": "python.exe" - }, - { - "tag": "3-arm64", - "target": "python.exe" - }, - { - "tag": "3.13.2-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.13-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-arm64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.13-arm64.exe", - "target": "python.exe" - }, - { - "name": "python3-arm64.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.13-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.13-arm64", - "DisplayName": "Python 3.13.2 (ARM64)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.13", - "Version": "3.13.2", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.13/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.13 (ARM64)", - "Items": [ - { - "Name": "Python 3.13 (ARM64)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.13 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.13/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.13/" - } - ], - "display-name": "Python 3.13.2 (ARM64)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonarm64/3.13.2/pythonarm64.3.13.2.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.13-arm64", - "sort-version": "3.13.1", - "company": "PythonCore", - "tag": "3.13-arm64", - "install-for": [ - "3.13.1-arm64", - "3.13-arm64", - "3-arm64" - ], - "run-for": [ - { - "tag": "3.13.1-arm64", - "target": "python.exe" - }, - { - "tag": "3.13-arm64", - "target": "python.exe" - }, - { - "tag": "3-arm64", - "target": "python.exe" - }, - { - "tag": "3.13.1-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.13-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-arm64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.13-arm64.exe", - "target": "python.exe" - }, - { - "name": "python3-arm64.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.13-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.13-arm64", - "DisplayName": "Python 3.13.1 (ARM64)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.13", - "Version": "3.13.1", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.13/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.13 (ARM64)", - "Items": [ - { - "Name": "Python 3.13 (ARM64)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.13 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.13/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.13/" - } - ], - "display-name": "Python 3.13.1 (ARM64)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonarm64/3.13.1/pythonarm64.3.13.1.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.13-arm64", - "sort-version": "3.13.0", - "company": "PythonCore", - "tag": "3.13-arm64", - "install-for": [ - "3.13.0-arm64", - "3.13-arm64", - "3-arm64" - ], - "run-for": [ - { - "tag": "3.13.0-arm64", - "target": "python.exe" - }, - { - "tag": "3.13-arm64", - "target": "python.exe" - }, - { - "tag": "3-arm64", - "target": "python.exe" - }, - { - "tag": "3.13.0-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.13-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-arm64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.13-arm64.exe", - "target": "python.exe" - }, - { - "name": "python3-arm64.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.13-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.13-arm64", - "DisplayName": "Python 3.13.0 (ARM64)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.13", - "Version": "3.13.0", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.13/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.13 (ARM64)", - "Items": [ - { - "Name": "Python 3.13 (ARM64)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.13 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.13/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.13/" - } - ], - "display-name": "Python 3.13.0 (ARM64)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonarm64/3.13.0/pythonarm64.3.13.0.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.12-arm64", - "sort-version": "3.12.10", - "company": "PythonCore", - "tag": "3.12-arm64", - "install-for": [ - "3.12.10-arm64", - "3.12-arm64", - "3-arm64" - ], - "run-for": [ - { - "tag": "3.12.10-arm64", - "target": "python.exe" - }, - { - "tag": "3.12-arm64", - "target": "python.exe" - }, - { - "tag": "3-arm64", - "target": "python.exe" - }, - { - "tag": "3.12.10-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.12-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-arm64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.12-arm64.exe", - "target": "python.exe" - }, - { - "name": "python3-arm64.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.12-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.12-arm64", - "DisplayName": "Python 3.12.10 (ARM64)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.12", - "Version": "3.12.10", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.12/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.12 (ARM64)", - "Items": [ - { - "Name": "Python 3.12 (ARM64)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.12 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.12/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.12/" - } - ], - "display-name": "Python 3.12.10 (ARM64)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonarm64/3.12.10/pythonarm64.3.12.10.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.12-arm64", - "sort-version": "3.12.9", - "company": "PythonCore", - "tag": "3.12-arm64", - "install-for": [ - "3.12.9-arm64", - "3.12-arm64", - "3-arm64" - ], - "run-for": [ - { - "tag": "3.12.9-arm64", - "target": "python.exe" - }, - { - "tag": "3.12-arm64", - "target": "python.exe" - }, - { - "tag": "3-arm64", - "target": "python.exe" - }, - { - "tag": "3.12.9-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.12-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-arm64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.12-arm64.exe", - "target": "python.exe" - }, - { - "name": "python3-arm64.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.12-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.12-arm64", - "DisplayName": "Python 3.12.9 (ARM64)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.12", - "Version": "3.12.9", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.12/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.12 (ARM64)", - "Items": [ - { - "Name": "Python 3.12 (ARM64)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.12 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.12/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.12/" - } - ], - "display-name": "Python 3.12.9 (ARM64)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonarm64/3.12.9/pythonarm64.3.12.9.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.12-arm64", - "sort-version": "3.12.8", - "company": "PythonCore", - "tag": "3.12-arm64", - "install-for": [ - "3.12.8-arm64", - "3.12-arm64", - "3-arm64" - ], - "run-for": [ - { - "tag": "3.12.8-arm64", - "target": "python.exe" - }, - { - "tag": "3.12-arm64", - "target": "python.exe" - }, - { - "tag": "3-arm64", - "target": "python.exe" - }, - { - "tag": "3.12.8-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.12-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-arm64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.12-arm64.exe", - "target": "python.exe" - }, - { - "name": "python3-arm64.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.12-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.12-arm64", - "DisplayName": "Python 3.12.8 (ARM64)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.12", - "Version": "3.12.8", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.12/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.12 (ARM64)", - "Items": [ - { - "Name": "Python 3.12 (ARM64)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.12 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.12/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.12/" - } - ], - "display-name": "Python 3.12.8 (ARM64)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonarm64/3.12.8/pythonarm64.3.12.8.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.12-arm64", - "sort-version": "3.12.7", - "company": "PythonCore", - "tag": "3.12-arm64", - "install-for": [ - "3.12.7-arm64", - "3.12-arm64", - "3-arm64" - ], - "run-for": [ - { - "tag": "3.12.7-arm64", - "target": "python.exe" - }, - { - "tag": "3.12-arm64", - "target": "python.exe" - }, - { - "tag": "3-arm64", - "target": "python.exe" - }, - { - "tag": "3.12.7-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.12-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-arm64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.12-arm64.exe", - "target": "python.exe" - }, - { - "name": "python3-arm64.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.12-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.12-arm64", - "DisplayName": "Python 3.12.7 (ARM64)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.12", - "Version": "3.12.7", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.12/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.12 (ARM64)", - "Items": [ - { - "Name": "Python 3.12 (ARM64)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.12 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.12/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.12/" - } - ], - "display-name": "Python 3.12.7 (ARM64)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonarm64/3.12.7/pythonarm64.3.12.7.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.12-arm64", - "sort-version": "3.12.6", - "company": "PythonCore", - "tag": "3.12-arm64", - "install-for": [ - "3.12.6-arm64", - "3.12-arm64", - "3-arm64" - ], - "run-for": [ - { - "tag": "3.12.6-arm64", - "target": "python.exe" - }, - { - "tag": "3.12-arm64", - "target": "python.exe" - }, - { - "tag": "3-arm64", - "target": "python.exe" - }, - { - "tag": "3.12.6-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.12-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-arm64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.12-arm64.exe", - "target": "python.exe" - }, - { - "name": "python3-arm64.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.12-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.12-arm64", - "DisplayName": "Python 3.12.6 (ARM64)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.12", - "Version": "3.12.6", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.12/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.12 (ARM64)", - "Items": [ - { - "Name": "Python 3.12 (ARM64)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.12 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.12/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.12/" - } - ], - "display-name": "Python 3.12.6 (ARM64)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonarm64/3.12.6/pythonarm64.3.12.6.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.12-arm64", - "sort-version": "3.12.5", - "company": "PythonCore", - "tag": "3.12-arm64", - "install-for": [ - "3.12.5-arm64", - "3.12-arm64", - "3-arm64" - ], - "run-for": [ - { - "tag": "3.12.5-arm64", - "target": "python.exe" - }, - { - "tag": "3.12-arm64", - "target": "python.exe" - }, - { - "tag": "3-arm64", - "target": "python.exe" - }, - { - "tag": "3.12.5-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.12-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-arm64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.12-arm64.exe", - "target": "python.exe" - }, - { - "name": "python3-arm64.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.12-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.12-arm64", - "DisplayName": "Python 3.12.5 (ARM64)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.12", - "Version": "3.12.5", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.12/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.12 (ARM64)", - "Items": [ - { - "Name": "Python 3.12 (ARM64)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.12 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.12/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.12/" - } - ], - "display-name": "Python 3.12.5 (ARM64)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonarm64/3.12.5/pythonarm64.3.12.5.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.12-arm64", - "sort-version": "3.12.4", - "company": "PythonCore", - "tag": "3.12-arm64", - "install-for": [ - "3.12.4-arm64", - "3.12-arm64", - "3-arm64" - ], - "run-for": [ - { - "tag": "3.12.4-arm64", - "target": "python.exe" - }, - { - "tag": "3.12-arm64", - "target": "python.exe" - }, - { - "tag": "3-arm64", - "target": "python.exe" - }, - { - "tag": "3.12.4-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.12-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-arm64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.12-arm64.exe", - "target": "python.exe" - }, - { - "name": "python3-arm64.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.12-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.12-arm64", - "DisplayName": "Python 3.12.4 (ARM64)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.12", - "Version": "3.12.4", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.12/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.12 (ARM64)", - "Items": [ - { - "Name": "Python 3.12 (ARM64)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.12 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.12/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.12/" - } - ], - "display-name": "Python 3.12.4 (ARM64)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonarm64/3.12.4/pythonarm64.3.12.4.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.12-arm64", - "sort-version": "3.12.3", - "company": "PythonCore", - "tag": "3.12-arm64", - "install-for": [ - "3.12.3-arm64", - "3.12-arm64", - "3-arm64" - ], - "run-for": [ - { - "tag": "3.12.3-arm64", - "target": "python.exe" - }, - { - "tag": "3.12-arm64", - "target": "python.exe" - }, - { - "tag": "3-arm64", - "target": "python.exe" - }, - { - "tag": "3.12.3-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.12-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-arm64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.12-arm64.exe", - "target": "python.exe" - }, - { - "name": "python3-arm64.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.12-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.12-arm64", - "DisplayName": "Python 3.12.3 (ARM64)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.12", - "Version": "3.12.3", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.12/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.12 (ARM64)", - "Items": [ - { - "Name": "Python 3.12 (ARM64)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.12 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.12/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.12/" - } - ], - "display-name": "Python 3.12.3 (ARM64)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonarm64/3.12.3/pythonarm64.3.12.3.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.12-arm64", - "sort-version": "3.12.2", - "company": "PythonCore", - "tag": "3.12-arm64", - "install-for": [ - "3.12.2-arm64", - "3.12-arm64", - "3-arm64" - ], - "run-for": [ - { - "tag": "3.12.2-arm64", - "target": "python.exe" - }, - { - "tag": "3.12-arm64", - "target": "python.exe" - }, - { - "tag": "3-arm64", - "target": "python.exe" - }, - { - "tag": "3.12.2-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.12-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-arm64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.12-arm64.exe", - "target": "python.exe" - }, - { - "name": "python3-arm64.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.12-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.12-arm64", - "DisplayName": "Python 3.12.2 (ARM64)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.12", - "Version": "3.12.2", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.12/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.12 (ARM64)", - "Items": [ - { - "Name": "Python 3.12 (ARM64)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.12 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.12/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.12/" - } - ], - "display-name": "Python 3.12.2 (ARM64)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonarm64/3.12.2/pythonarm64.3.12.2.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.12-arm64", - "sort-version": "3.12.1", - "company": "PythonCore", - "tag": "3.12-arm64", - "install-for": [ - "3.12.1-arm64", - "3.12-arm64", - "3-arm64" - ], - "run-for": [ - { - "tag": "3.12.1-arm64", - "target": "python.exe" - }, - { - "tag": "3.12-arm64", - "target": "python.exe" - }, - { - "tag": "3-arm64", - "target": "python.exe" - }, - { - "tag": "3.12.1-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.12-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-arm64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.12-arm64.exe", - "target": "python.exe" - }, - { - "name": "python3-arm64.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.12-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.12-arm64", - "DisplayName": "Python 3.12.1 (ARM64)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.12", - "Version": "3.12.1", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.12/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.12 (ARM64)", - "Items": [ - { - "Name": "Python 3.12 (ARM64)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.12 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.12/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.12/" - } - ], - "display-name": "Python 3.12.1 (ARM64)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonarm64/3.12.1/pythonarm64.3.12.1.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.12-arm64", - "sort-version": "3.12.0", - "company": "PythonCore", - "tag": "3.12-arm64", - "install-for": [ - "3.12.0-arm64", - "3.12-arm64", - "3-arm64" - ], - "run-for": [ - { - "tag": "3.12.0-arm64", - "target": "python.exe" - }, - { - "tag": "3.12-arm64", - "target": "python.exe" - }, - { - "tag": "3-arm64", - "target": "python.exe" - }, - { - "tag": "3.12.0-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3.12-arm64", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "tag": "3-arm64", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.12-arm64.exe", - "target": "python.exe" - }, - { - "name": "python3-arm64.exe", - "target": "python.exe" - }, - { - "name": "pythonw3.12-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - }, - { - "name": "pythonw3-arm64.exe", - "target": "pythonw.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCore\\3.12-arm64", - "DisplayName": "Python 3.12.0 (ARM64)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.12", - "Version": "3.12.0", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.12/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.12 (ARM64)", - "Items": [ - { - "Name": "Python 3.12 (ARM64)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.12 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.12/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.12/" - } - ], - "display-name": "Python 3.12.0 (ARM64)", - "executable": "./python.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonarm64/3.12.0/pythonarm64.3.12.0.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.14-t", - "sort-version": "3.14.0a7", - "company": "PythonCore", - "tag": "3.14t", - "install-for": [ - "3.14.0a7t-64", - "3.14-devt-64" - ], - "run-for": [ - { - "tag": "3.14.0a7t-64", - "target": "python3.14t.exe" - }, - { - "tag": "3.14t-64", - "target": "python3.14t.exe" - }, - { - "tag": "3.14.0a7t-64", - "target": "pythonw3.14t.exe", - "windowed": 1 - }, - { - "tag": "3.14t-64", - "target": "pythonw3.14t.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.14t.exe", - "target": "python3.14t.exe" - }, - { - "name": "pythonw3.14t.exe", - "target": "pythonw3.14t.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCoreFreeThreaded\\3.14", - "DisplayName": "Python 3.14.0a7 (free-threaded)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.14", - "Version": "3.14.0a7", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.14/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.14 (free-threaded)", - "Items": [ - { - "Name": "Python 3.14 (free-threaded)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.14 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.14/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.14/" - } - ], - "display-name": "Python 3.14.0a7 (free-threaded)", - "executable": "./python3.14t.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python-freethreaded/3.14.0-a7/python-freethreaded.3.14.0-a7.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.14-t", - "sort-version": "3.14.0a6", - "company": "PythonCore", - "tag": "3.14t", - "install-for": [ - "3.14.0a6t-64", - "3.14-devt-64" - ], - "run-for": [ - { - "tag": "3.14.0a6t-64", - "target": "python3.14t.exe" - }, - { - "tag": "3.14t-64", - "target": "python3.14t.exe" - }, - { - "tag": "3.14.0a6t-64", - "target": "pythonw3.14t.exe", - "windowed": 1 - }, - { - "tag": "3.14t-64", - "target": "pythonw3.14t.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.14t.exe", - "target": "python3.14t.exe" - }, - { - "name": "pythonw3.14t.exe", - "target": "pythonw3.14t.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCoreFreeThreaded\\3.14", - "DisplayName": "Python 3.14.0a6 (free-threaded)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.14", - "Version": "3.14.0a6", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.14/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.14 (free-threaded)", - "Items": [ - { - "Name": "Python 3.14 (free-threaded)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.14 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.14/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.14/" - } - ], - "display-name": "Python 3.14.0a6 (free-threaded)", - "executable": "./python3.14t.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python-freethreaded/3.14.0-a6/python-freethreaded.3.14.0-a6.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.14-t", - "sort-version": "3.14.0a5", - "company": "PythonCore", - "tag": "3.14t", - "install-for": [ - "3.14.0a5t-64", - "3.14-devt-64" - ], - "run-for": [ - { - "tag": "3.14.0a5t-64", - "target": "python3.14t.exe" - }, - { - "tag": "3.14t-64", - "target": "python3.14t.exe" - }, - { - "tag": "3.14.0a5t-64", - "target": "pythonw3.14t.exe", - "windowed": 1 - }, - { - "tag": "3.14t-64", - "target": "pythonw3.14t.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.14t.exe", - "target": "python3.14t.exe" - }, - { - "name": "pythonw3.14t.exe", - "target": "pythonw3.14t.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCoreFreeThreaded\\3.14", - "DisplayName": "Python 3.14.0a5 (free-threaded)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.14", - "Version": "3.14.0a5", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.14/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.14 (free-threaded)", - "Items": [ - { - "Name": "Python 3.14 (free-threaded)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.14 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.14/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.14/" - } - ], - "display-name": "Python 3.14.0a5 (free-threaded)", - "executable": "./python3.14t.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python-freethreaded/3.14.0-a5/python-freethreaded.3.14.0-a5.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.14-t", - "sort-version": "3.14.0a4", - "company": "PythonCore", - "tag": "3.14t", - "install-for": [ - "3.14.0a4t-64", - "3.14-devt-64" - ], - "run-for": [ - { - "tag": "3.14.0a4t-64", - "target": "python3.14t.exe" - }, - { - "tag": "3.14t-64", - "target": "python3.14t.exe" - }, - { - "tag": "3.14.0a4t-64", - "target": "pythonw3.14t.exe", - "windowed": 1 - }, - { - "tag": "3.14t-64", - "target": "pythonw3.14t.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.14t.exe", - "target": "python3.14t.exe" - }, - { - "name": "pythonw3.14t.exe", - "target": "pythonw3.14t.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCoreFreeThreaded\\3.14", - "DisplayName": "Python 3.14.0a4 (free-threaded)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.14", - "Version": "3.14.0a4", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.14/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.14 (free-threaded)", - "Items": [ - { - "Name": "Python 3.14 (free-threaded)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.14 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.14/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.14/" - } - ], - "display-name": "Python 3.14.0a4 (free-threaded)", - "executable": "./python3.14t.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python-freethreaded/3.14.0-a4/python-freethreaded.3.14.0-a4.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.14-t", - "sort-version": "3.14.0a3", - "company": "PythonCore", - "tag": "3.14t", - "install-for": [ - "3.14.0a3t-64", - "3.14-devt-64" - ], - "run-for": [ - { - "tag": "3.14.0a3t-64", - "target": "python3.14t.exe" - }, - { - "tag": "3.14t-64", - "target": "python3.14t.exe" - }, - { - "tag": "3.14.0a3t-64", - "target": "pythonw3.14t.exe", - "windowed": 1 - }, - { - "tag": "3.14t-64", - "target": "pythonw3.14t.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.14t.exe", - "target": "python3.14t.exe" - }, - { - "name": "pythonw3.14t.exe", - "target": "pythonw3.14t.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCoreFreeThreaded\\3.14", - "DisplayName": "Python 3.14.0a3 (free-threaded)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.14", - "Version": "3.14.0a3", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.14/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.14 (free-threaded)", - "Items": [ - { - "Name": "Python 3.14 (free-threaded)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.14 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.14/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.14/" - } - ], - "display-name": "Python 3.14.0a3 (free-threaded)", - "executable": "./python3.14t.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python-freethreaded/3.14.0-a3/python-freethreaded.3.14.0-a3.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.14-t", - "sort-version": "3.14.0a2", - "company": "PythonCore", - "tag": "3.14t", - "install-for": [ - "3.14.0a2t-64", - "3.14-devt-64" - ], - "run-for": [ - { - "tag": "3.14.0a2t-64", - "target": "python3.14t.exe" - }, - { - "tag": "3.14t-64", - "target": "python3.14t.exe" - }, - { - "tag": "3.14.0a2t-64", - "target": "pythonw3.14t.exe", - "windowed": 1 - }, - { - "tag": "3.14t-64", - "target": "pythonw3.14t.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.14t.exe", - "target": "python3.14t.exe" - }, - { - "name": "pythonw3.14t.exe", - "target": "pythonw3.14t.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCoreFreeThreaded\\3.14", - "DisplayName": "Python 3.14.0a2 (free-threaded)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.14", - "Version": "3.14.0a2", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.14/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.14 (free-threaded)", - "Items": [ - { - "Name": "Python 3.14 (free-threaded)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.14 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.14/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.14/" - } - ], - "display-name": "Python 3.14.0a2 (free-threaded)", - "executable": "./python3.14t.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python-freethreaded/3.14.0-a2/python-freethreaded.3.14.0-a2.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.14-t", - "sort-version": "3.14.0a1", - "company": "PythonCore", - "tag": "3.14t", - "install-for": [ - "3.14.0a1t-64", - "3.14-devt-64" - ], - "run-for": [ - { - "tag": "3.14.0a1t-64", - "target": "python3.14t.exe" - }, - { - "tag": "3.14t-64", - "target": "python3.14t.exe" - }, - { - "tag": "3.14.0a1t-64", - "target": "pythonw3.14t.exe", - "windowed": 1 - }, - { - "tag": "3.14t-64", - "target": "pythonw3.14t.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.14t.exe", - "target": "python3.14t.exe" - }, - { - "name": "pythonw3.14t.exe", - "target": "pythonw3.14t.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCoreFreeThreaded\\3.14", - "DisplayName": "Python 3.14.0a1 (free-threaded)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.14", - "Version": "3.14.0a1", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.14/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.14 (free-threaded)", - "Items": [ - { - "Name": "Python 3.14 (free-threaded)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.14 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.14/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.14/" - } - ], - "display-name": "Python 3.14.0a1 (free-threaded)", - "executable": "./python3.14t.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python-freethreaded/3.14.0-a1/python-freethreaded.3.14.0-a1.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.13-t", - "sort-version": "3.13.3", - "company": "PythonCore", - "tag": "3.13t", - "install-for": [ - "3.13.3t-64", - "3.13t-64", - "3t-64" - ], - "run-for": [ - { - "tag": "3.13.3t-64", - "target": "python3.13t.exe" - }, - { - "tag": "3.13t-64", - "target": "python3.13t.exe" - }, - { - "tag": "3t-64", - "target": "python3.13t.exe" - }, - { - "tag": "3.13.3t-64", - "target": "pythonw3.13t.exe", - "windowed": 1 - }, - { - "tag": "3.13t-64", - "target": "pythonw3.13t.exe", - "windowed": 1 - }, - { - "tag": "3t-64", - "target": "pythonw3.13t.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.13t.exe", - "target": "python3.13t.exe" - }, - { - "name": "python3t.exe", - "target": "python3.13t.exe" - }, - { - "name": "pythonw3.13t.exe", - "target": "pythonw3.13t.exe", - "windowed": 1 - }, - { - "name": "pythonw3t.exe", - "target": "pythonw3.13t.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCoreFreeThreaded\\3.13", - "DisplayName": "Python 3.13.3 (free-threaded)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.13", - "Version": "3.13.3", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.13/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.13 (free-threaded)", - "Items": [ - { - "Name": "Python 3.13 (free-threaded)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.13 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.13/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.13/" - } - ], - "display-name": "Python 3.13.3 (free-threaded)", - "executable": "./python3.13t.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python-freethreaded/3.13.3/python-freethreaded.3.13.3.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.13-t", - "sort-version": "3.13.2", - "company": "PythonCore", - "tag": "3.13t", - "install-for": [ - "3.13.2t-64", - "3.13t-64", - "3t-64" - ], - "run-for": [ - { - "tag": "3.13.2t-64", - "target": "python3.13t.exe" - }, - { - "tag": "3.13t-64", - "target": "python3.13t.exe" - }, - { - "tag": "3t-64", - "target": "python3.13t.exe" - }, - { - "tag": "3.13.2t-64", - "target": "pythonw3.13t.exe", - "windowed": 1 - }, - { - "tag": "3.13t-64", - "target": "pythonw3.13t.exe", - "windowed": 1 - }, - { - "tag": "3t-64", - "target": "pythonw3.13t.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.13t.exe", - "target": "python3.13t.exe" - }, - { - "name": "python3t.exe", - "target": "python3.13t.exe" - }, - { - "name": "pythonw3.13t.exe", - "target": "pythonw3.13t.exe", - "windowed": 1 - }, - { - "name": "pythonw3t.exe", - "target": "pythonw3.13t.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCoreFreeThreaded\\3.13", - "DisplayName": "Python 3.13.2 (free-threaded)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.13", - "Version": "3.13.2", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.13/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.13 (free-threaded)", - "Items": [ - { - "Name": "Python 3.13 (free-threaded)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.13 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.13/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.13/" - } - ], - "display-name": "Python 3.13.2 (free-threaded)", - "executable": "./python3.13t.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python-freethreaded/3.13.2/python-freethreaded.3.13.2.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.13-t", - "sort-version": "3.13.1", - "company": "PythonCore", - "tag": "3.13t", - "install-for": [ - "3.13.1t-64", - "3.13t-64", - "3t-64" - ], - "run-for": [ - { - "tag": "3.13.1t-64", - "target": "python3.13t.exe" - }, - { - "tag": "3.13t-64", - "target": "python3.13t.exe" - }, - { - "tag": "3t-64", - "target": "python3.13t.exe" - }, - { - "tag": "3.13.1t-64", - "target": "pythonw3.13t.exe", - "windowed": 1 - }, - { - "tag": "3.13t-64", - "target": "pythonw3.13t.exe", - "windowed": 1 - }, - { - "tag": "3t-64", - "target": "pythonw3.13t.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.13t.exe", - "target": "python3.13t.exe" - }, - { - "name": "python3t.exe", - "target": "python3.13t.exe" - }, - { - "name": "pythonw3.13t.exe", - "target": "pythonw3.13t.exe", - "windowed": 1 - }, - { - "name": "pythonw3t.exe", - "target": "pythonw3.13t.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCoreFreeThreaded\\3.13", - "DisplayName": "Python 3.13.1 (free-threaded)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.13", - "Version": "3.13.1", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.13/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.13 (free-threaded)", - "Items": [ - { - "Name": "Python 3.13 (free-threaded)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.13 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.13/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.13/" - } - ], - "display-name": "Python 3.13.1 (free-threaded)", - "executable": "./python3.13t.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python-freethreaded/3.13.1/python-freethreaded.3.13.1.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.13-t", - "sort-version": "3.13.0", - "company": "PythonCore", - "tag": "3.13t", - "install-for": [ - "3.13.0t-64", - "3.13t-64", - "3t-64" - ], - "run-for": [ - { - "tag": "3.13.0t-64", - "target": "python3.13t.exe" - }, - { - "tag": "3.13t-64", - "target": "python3.13t.exe" - }, - { - "tag": "3t-64", - "target": "python3.13t.exe" - }, - { - "tag": "3.13.0t-64", - "target": "pythonw3.13t.exe", - "windowed": 1 - }, - { - "tag": "3.13t-64", - "target": "pythonw3.13t.exe", - "windowed": 1 - }, - { - "tag": "3t-64", - "target": "pythonw3.13t.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.13t.exe", - "target": "python3.13t.exe" - }, - { - "name": "python3t.exe", - "target": "python3.13t.exe" - }, - { - "name": "pythonw3.13t.exe", - "target": "pythonw3.13t.exe", - "windowed": 1 - }, - { - "name": "pythonw3t.exe", - "target": "pythonw3.13t.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCoreFreeThreaded\\3.13", - "DisplayName": "Python 3.13.0 (free-threaded)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.13", - "Version": "3.13.0", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.13/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.13 (free-threaded)", - "Items": [ - { - "Name": "Python 3.13 (free-threaded)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.13 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.13/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.13/" - } - ], - "display-name": "Python 3.13.0 (free-threaded)", - "executable": "./python3.13t.exe", - "url": "https://api.nuget.org/v3-flatcontainer/python-freethreaded/3.13.0/python-freethreaded.3.13.0.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.14-32-t", - "sort-version": "3.14.0a7", - "company": "PythonCore", - "tag": "3.14t-32", - "install-for": [ - "3.14.0a7t-32", - "3.14-devt-32" - ], - "run-for": [ - { - "tag": "3.14.0a7t-32", - "target": "python3.14t.exe" - }, - { - "tag": "3.14t-32", - "target": "python3.14t.exe" - }, - { - "tag": "3.14.0a7t-32", - "target": "pythonw3.14t.exe", - "windowed": 1 - }, - { - "tag": "3.14t-32", - "target": "pythonw3.14t.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.14t-32.exe", - "target": "python3.14t.exe" - }, - { - "name": "pythonw3.14t-32.exe", - "target": "pythonw3.14t.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCoreFreeThreaded\\3.14-32", - "DisplayName": "Python 3.14.0a7 (32-bit, free-threaded)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.14", - "Version": "3.14.0a7", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.14/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.14 (32-bit, free-threaded)", - "Items": [ - { - "Name": "Python 3.14 (32-bit, free-threaded)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.14 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.14/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.14/" - } - ], - "display-name": "Python 3.14.0a7 (32-bit, free-threaded)", - "executable": "./python3.14t.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86-freethreaded/3.14.0-a7/pythonx86-freethreaded.3.14.0-a7.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.14-32-t", - "sort-version": "3.14.0a6", - "company": "PythonCore", - "tag": "3.14t-32", - "install-for": [ - "3.14.0a6t-32", - "3.14-devt-32" - ], - "run-for": [ - { - "tag": "3.14.0a6t-32", - "target": "python3.14t.exe" - }, - { - "tag": "3.14t-32", - "target": "python3.14t.exe" - }, - { - "tag": "3.14.0a6t-32", - "target": "pythonw3.14t.exe", - "windowed": 1 - }, - { - "tag": "3.14t-32", - "target": "pythonw3.14t.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.14t-32.exe", - "target": "python3.14t.exe" - }, - { - "name": "pythonw3.14t-32.exe", - "target": "pythonw3.14t.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCoreFreeThreaded\\3.14-32", - "DisplayName": "Python 3.14.0a6 (32-bit, free-threaded)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.14", - "Version": "3.14.0a6", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.14/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.14 (32-bit, free-threaded)", - "Items": [ - { - "Name": "Python 3.14 (32-bit, free-threaded)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.14 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.14/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.14/" - } - ], - "display-name": "Python 3.14.0a6 (32-bit, free-threaded)", - "executable": "./python3.14t.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86-freethreaded/3.14.0-a6/pythonx86-freethreaded.3.14.0-a6.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.14-32-t", - "sort-version": "3.14.0a5", - "company": "PythonCore", - "tag": "3.14t-32", - "install-for": [ - "3.14.0a5t-32", - "3.14-devt-32" - ], - "run-for": [ - { - "tag": "3.14.0a5t-32", - "target": "python3.14t.exe" - }, - { - "tag": "3.14t-32", - "target": "python3.14t.exe" - }, - { - "tag": "3.14.0a5t-32", - "target": "pythonw3.14t.exe", - "windowed": 1 - }, - { - "tag": "3.14t-32", - "target": "pythonw3.14t.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.14t-32.exe", - "target": "python3.14t.exe" - }, - { - "name": "pythonw3.14t-32.exe", - "target": "pythonw3.14t.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCoreFreeThreaded\\3.14-32", - "DisplayName": "Python 3.14.0a5 (32-bit, free-threaded)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.14", - "Version": "3.14.0a5", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.14/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.14 (32-bit, free-threaded)", - "Items": [ - { - "Name": "Python 3.14 (32-bit, free-threaded)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.14 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.14/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.14/" - } - ], - "display-name": "Python 3.14.0a5 (32-bit, free-threaded)", - "executable": "./python3.14t.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86-freethreaded/3.14.0-a5/pythonx86-freethreaded.3.14.0-a5.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.14-32-t", - "sort-version": "3.14.0a4", - "company": "PythonCore", - "tag": "3.14t-32", - "install-for": [ - "3.14.0a4t-32", - "3.14-devt-32" - ], - "run-for": [ - { - "tag": "3.14.0a4t-32", - "target": "python3.14t.exe" - }, - { - "tag": "3.14t-32", - "target": "python3.14t.exe" - }, - { - "tag": "3.14.0a4t-32", - "target": "pythonw3.14t.exe", - "windowed": 1 - }, - { - "tag": "3.14t-32", - "target": "pythonw3.14t.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.14t-32.exe", - "target": "python3.14t.exe" - }, - { - "name": "pythonw3.14t-32.exe", - "target": "pythonw3.14t.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCoreFreeThreaded\\3.14-32", - "DisplayName": "Python 3.14.0a4 (32-bit, free-threaded)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.14", - "Version": "3.14.0a4", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.14/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.14 (32-bit, free-threaded)", - "Items": [ - { - "Name": "Python 3.14 (32-bit, free-threaded)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.14 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.14/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.14/" - } - ], - "display-name": "Python 3.14.0a4 (32-bit, free-threaded)", - "executable": "./python3.14t.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86-freethreaded/3.14.0-a4/pythonx86-freethreaded.3.14.0-a4.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.14-32-t", - "sort-version": "3.14.0a3", - "company": "PythonCore", - "tag": "3.14t-32", - "install-for": [ - "3.14.0a3t-32", - "3.14-devt-32" - ], - "run-for": [ - { - "tag": "3.14.0a3t-32", - "target": "python3.14t.exe" - }, - { - "tag": "3.14t-32", - "target": "python3.14t.exe" - }, - { - "tag": "3.14.0a3t-32", - "target": "pythonw3.14t.exe", - "windowed": 1 - }, - { - "tag": "3.14t-32", - "target": "pythonw3.14t.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.14t-32.exe", - "target": "python3.14t.exe" - }, - { - "name": "pythonw3.14t-32.exe", - "target": "pythonw3.14t.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCoreFreeThreaded\\3.14-32", - "DisplayName": "Python 3.14.0a3 (32-bit, free-threaded)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.14", - "Version": "3.14.0a3", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.14/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.14 (32-bit, free-threaded)", - "Items": [ - { - "Name": "Python 3.14 (32-bit, free-threaded)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.14 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.14/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.14/" - } - ], - "display-name": "Python 3.14.0a3 (32-bit, free-threaded)", - "executable": "./python3.14t.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86-freethreaded/3.14.0-a3/pythonx86-freethreaded.3.14.0-a3.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.14-32-t", - "sort-version": "3.14.0a2", - "company": "PythonCore", - "tag": "3.14t-32", - "install-for": [ - "3.14.0a2t-32", - "3.14-devt-32" - ], - "run-for": [ - { - "tag": "3.14.0a2t-32", - "target": "python3.14t.exe" - }, - { - "tag": "3.14t-32", - "target": "python3.14t.exe" - }, - { - "tag": "3.14.0a2t-32", - "target": "pythonw3.14t.exe", - "windowed": 1 - }, - { - "tag": "3.14t-32", - "target": "pythonw3.14t.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.14t-32.exe", - "target": "python3.14t.exe" - }, - { - "name": "pythonw3.14t-32.exe", - "target": "pythonw3.14t.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCoreFreeThreaded\\3.14-32", - "DisplayName": "Python 3.14.0a2 (32-bit, free-threaded)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.14", - "Version": "3.14.0a2", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.14/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.14 (32-bit, free-threaded)", - "Items": [ - { - "Name": "Python 3.14 (32-bit, free-threaded)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.14 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.14/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.14/" - } - ], - "display-name": "Python 3.14.0a2 (32-bit, free-threaded)", - "executable": "./python3.14t.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86-freethreaded/3.14.0-a2/pythonx86-freethreaded.3.14.0-a2.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.14-32-t", - "sort-version": "3.14.0a1", - "company": "PythonCore", - "tag": "3.14t-32", - "install-for": [ - "3.14.0a1t-32", - "3.14-devt-32" - ], - "run-for": [ - { - "tag": "3.14.0a1t-32", - "target": "python3.14t.exe" - }, - { - "tag": "3.14t-32", - "target": "python3.14t.exe" - }, - { - "tag": "3.14.0a1t-32", - "target": "pythonw3.14t.exe", - "windowed": 1 - }, - { - "tag": "3.14t-32", - "target": "pythonw3.14t.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.14t-32.exe", - "target": "python3.14t.exe" - }, - { - "name": "pythonw3.14t-32.exe", - "target": "pythonw3.14t.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCoreFreeThreaded\\3.14-32", - "DisplayName": "Python 3.14.0a1 (32-bit, free-threaded)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.14", - "Version": "3.14.0a1", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.14/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.14 (32-bit, free-threaded)", - "Items": [ - { - "Name": "Python 3.14 (32-bit, free-threaded)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.14 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.14/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.14/" - } - ], - "display-name": "Python 3.14.0a1 (32-bit, free-threaded)", - "executable": "./python3.14t.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86-freethreaded/3.14.0-a1/pythonx86-freethreaded.3.14.0-a1.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.13-32-t", - "sort-version": "3.13.3", - "company": "PythonCore", - "tag": "3.13t-32", - "install-for": [ - "3.13.3t-32", - "3.13t-32", - "3t-32" - ], - "run-for": [ - { - "tag": "3.13.3t-32", - "target": "python3.13t.exe" - }, - { - "tag": "3.13t-32", - "target": "python3.13t.exe" - }, - { - "tag": "3t-32", - "target": "python3.13t.exe" - }, - { - "tag": "3.13.3t-32", - "target": "pythonw3.13t.exe", - "windowed": 1 - }, - { - "tag": "3.13t-32", - "target": "pythonw3.13t.exe", - "windowed": 1 - }, - { - "tag": "3t-32", - "target": "pythonw3.13t.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.13t-32.exe", - "target": "python3.13t.exe" - }, - { - "name": "python3t-32.exe", - "target": "python3.13t.exe" - }, - { - "name": "pythonw3.13t-32.exe", - "target": "pythonw3.13t.exe", - "windowed": 1 - }, - { - "name": "pythonw3t-32.exe", - "target": "pythonw3.13t.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCoreFreeThreaded\\3.13-32", - "DisplayName": "Python 3.13.3 (32-bit, free-threaded)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.13", - "Version": "3.13.3", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.13/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.13 (32-bit, free-threaded)", - "Items": [ - { - "Name": "Python 3.13 (32-bit, free-threaded)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.13 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.13/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.13/" - } - ], - "display-name": "Python 3.13.3 (32-bit, free-threaded)", - "executable": "./python3.13t.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86-freethreaded/3.13.3/pythonx86-freethreaded.3.13.3.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.13-32-t", - "sort-version": "3.13.2", - "company": "PythonCore", - "tag": "3.13t-32", - "install-for": [ - "3.13.2t-32", - "3.13t-32", - "3t-32" - ], - "run-for": [ - { - "tag": "3.13.2t-32", - "target": "python3.13t.exe" - }, - { - "tag": "3.13t-32", - "target": "python3.13t.exe" - }, - { - "tag": "3t-32", - "target": "python3.13t.exe" - }, - { - "tag": "3.13.2t-32", - "target": "pythonw3.13t.exe", - "windowed": 1 - }, - { - "tag": "3.13t-32", - "target": "pythonw3.13t.exe", - "windowed": 1 - }, - { - "tag": "3t-32", - "target": "pythonw3.13t.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.13t-32.exe", - "target": "python3.13t.exe" - }, - { - "name": "python3t-32.exe", - "target": "python3.13t.exe" - }, - { - "name": "pythonw3.13t-32.exe", - "target": "pythonw3.13t.exe", - "windowed": 1 - }, - { - "name": "pythonw3t-32.exe", - "target": "pythonw3.13t.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCoreFreeThreaded\\3.13-32", - "DisplayName": "Python 3.13.2 (32-bit, free-threaded)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.13", - "Version": "3.13.2", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.13/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.13 (32-bit, free-threaded)", - "Items": [ - { - "Name": "Python 3.13 (32-bit, free-threaded)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.13 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.13/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.13/" - } - ], - "display-name": "Python 3.13.2 (32-bit, free-threaded)", - "executable": "./python3.13t.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86-freethreaded/3.13.2/pythonx86-freethreaded.3.13.2.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.13-32-t", - "sort-version": "3.13.1", - "company": "PythonCore", - "tag": "3.13t-32", - "install-for": [ - "3.13.1t-32", - "3.13t-32", - "3t-32" - ], - "run-for": [ - { - "tag": "3.13.1t-32", - "target": "python3.13t.exe" - }, - { - "tag": "3.13t-32", - "target": "python3.13t.exe" - }, - { - "tag": "3t-32", - "target": "python3.13t.exe" - }, - { - "tag": "3.13.1t-32", - "target": "pythonw3.13t.exe", - "windowed": 1 - }, - { - "tag": "3.13t-32", - "target": "pythonw3.13t.exe", - "windowed": 1 - }, - { - "tag": "3t-32", - "target": "pythonw3.13t.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.13t-32.exe", - "target": "python3.13t.exe" - }, - { - "name": "python3t-32.exe", - "target": "python3.13t.exe" - }, - { - "name": "pythonw3.13t-32.exe", - "target": "pythonw3.13t.exe", - "windowed": 1 - }, - { - "name": "pythonw3t-32.exe", - "target": "pythonw3.13t.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCoreFreeThreaded\\3.13-32", - "DisplayName": "Python 3.13.1 (32-bit, free-threaded)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.13", - "Version": "3.13.1", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.13/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.13 (32-bit, free-threaded)", - "Items": [ - { - "Name": "Python 3.13 (32-bit, free-threaded)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.13 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.13/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.13/" - } - ], - "display-name": "Python 3.13.1 (32-bit, free-threaded)", - "executable": "./python3.13t.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86-freethreaded/3.13.1/pythonx86-freethreaded.3.13.1.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.13-32-t", - "sort-version": "3.13.0", - "company": "PythonCore", - "tag": "3.13t-32", - "install-for": [ - "3.13.0t-32", - "3.13t-32", - "3t-32" - ], - "run-for": [ - { - "tag": "3.13.0t-32", - "target": "python3.13t.exe" - }, - { - "tag": "3.13t-32", - "target": "python3.13t.exe" - }, - { - "tag": "3t-32", - "target": "python3.13t.exe" - }, - { - "tag": "3.13.0t-32", - "target": "pythonw3.13t.exe", - "windowed": 1 - }, - { - "tag": "3.13t-32", - "target": "pythonw3.13t.exe", - "windowed": 1 - }, - { - "tag": "3t-32", - "target": "pythonw3.13t.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.13t-32.exe", - "target": "python3.13t.exe" - }, - { - "name": "python3t-32.exe", - "target": "python3.13t.exe" - }, - { - "name": "pythonw3.13t-32.exe", - "target": "pythonw3.13t.exe", - "windowed": 1 - }, - { - "name": "pythonw3t-32.exe", - "target": "pythonw3.13t.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCoreFreeThreaded\\3.13-32", - "DisplayName": "Python 3.13.0 (32-bit, free-threaded)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "32bit", - "SysVersion": "3.13", - "Version": "3.13.0", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.13/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.13 (32-bit, free-threaded)", - "Items": [ - { - "Name": "Python 3.13 (32-bit, free-threaded)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.13 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.13/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.13/" - } - ], - "display-name": "Python 3.13.0 (32-bit, free-threaded)", - "executable": "./python3.13t.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonx86-freethreaded/3.13.0/pythonx86-freethreaded.3.13.0.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.14-arm64-t", - "sort-version": "3.14.0a7", - "company": "PythonCore", - "tag": "3.14t-arm64", - "install-for": [ - "3.14.0a7t-arm64", - "3.14-devt-arm64" - ], - "run-for": [ - { - "tag": "3.14.0a7t-arm64", - "target": "python3.14t.exe" - }, - { - "tag": "3.14t-arm64", - "target": "python3.14t.exe" - }, - { - "tag": "3.14.0a7t-arm64", - "target": "pythonw3.14t.exe", - "windowed": 1 - }, - { - "tag": "3.14t-arm64", - "target": "pythonw3.14t.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.14t-arm64.exe", - "target": "python3.14t.exe" - }, - { - "name": "pythonw3.14t-arm64.exe", - "target": "pythonw3.14t.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCoreFreeThreaded\\3.14-arm64", - "DisplayName": "Python 3.14.0a7 (ARM64, free-threaded)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.14", - "Version": "3.14.0a7", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.14/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.14 (ARM64, free-threaded)", - "Items": [ - { - "Name": "Python 3.14 (ARM64, free-threaded)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.14 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.14/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.14/" - } - ], - "display-name": "Python 3.14.0a7 (ARM64, free-threaded)", - "executable": "./python3.14t.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonarm64-freethreaded/3.14.0-a7/pythonarm64-freethreaded.3.14.0-a7.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.14-arm64-t", - "sort-version": "3.14.0a6", - "company": "PythonCore", - "tag": "3.14t-arm64", - "install-for": [ - "3.14.0a6t-arm64", - "3.14-devt-arm64" - ], - "run-for": [ - { - "tag": "3.14.0a6t-arm64", - "target": "python3.14t.exe" - }, - { - "tag": "3.14t-arm64", - "target": "python3.14t.exe" - }, - { - "tag": "3.14.0a6t-arm64", - "target": "pythonw3.14t.exe", - "windowed": 1 - }, - { - "tag": "3.14t-arm64", - "target": "pythonw3.14t.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.14t-arm64.exe", - "target": "python3.14t.exe" - }, - { - "name": "pythonw3.14t-arm64.exe", - "target": "pythonw3.14t.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCoreFreeThreaded\\3.14-arm64", - "DisplayName": "Python 3.14.0a6 (ARM64, free-threaded)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.14", - "Version": "3.14.0a6", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.14/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.14 (ARM64, free-threaded)", - "Items": [ - { - "Name": "Python 3.14 (ARM64, free-threaded)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.14 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.14/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.14/" - } - ], - "display-name": "Python 3.14.0a6 (ARM64, free-threaded)", - "executable": "./python3.14t.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonarm64-freethreaded/3.14.0-a6/pythonarm64-freethreaded.3.14.0-a6.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.14-arm64-t", - "sort-version": "3.14.0a5", - "company": "PythonCore", - "tag": "3.14t-arm64", - "install-for": [ - "3.14.0a5t-arm64", - "3.14-devt-arm64" - ], - "run-for": [ - { - "tag": "3.14.0a5t-arm64", - "target": "python3.14t.exe" - }, - { - "tag": "3.14t-arm64", - "target": "python3.14t.exe" - }, - { - "tag": "3.14.0a5t-arm64", - "target": "pythonw3.14t.exe", - "windowed": 1 - }, - { - "tag": "3.14t-arm64", - "target": "pythonw3.14t.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.14t-arm64.exe", - "target": "python3.14t.exe" - }, - { - "name": "pythonw3.14t-arm64.exe", - "target": "pythonw3.14t.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCoreFreeThreaded\\3.14-arm64", - "DisplayName": "Python 3.14.0a5 (ARM64, free-threaded)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.14", - "Version": "3.14.0a5", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.14/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.14 (ARM64, free-threaded)", - "Items": [ - { - "Name": "Python 3.14 (ARM64, free-threaded)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.14 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.14/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.14/" - } - ], - "display-name": "Python 3.14.0a5 (ARM64, free-threaded)", - "executable": "./python3.14t.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonarm64-freethreaded/3.14.0-a5/pythonarm64-freethreaded.3.14.0-a5.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.14-arm64-t", - "sort-version": "3.14.0a4", - "company": "PythonCore", - "tag": "3.14t-arm64", - "install-for": [ - "3.14.0a4t-arm64", - "3.14-devt-arm64" - ], - "run-for": [ - { - "tag": "3.14.0a4t-arm64", - "target": "python3.14t.exe" - }, - { - "tag": "3.14t-arm64", - "target": "python3.14t.exe" - }, - { - "tag": "3.14.0a4t-arm64", - "target": "pythonw3.14t.exe", - "windowed": 1 - }, - { - "tag": "3.14t-arm64", - "target": "pythonw3.14t.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.14t-arm64.exe", - "target": "python3.14t.exe" - }, - { - "name": "pythonw3.14t-arm64.exe", - "target": "pythonw3.14t.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCoreFreeThreaded\\3.14-arm64", - "DisplayName": "Python 3.14.0a4 (ARM64, free-threaded)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.14", - "Version": "3.14.0a4", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.14/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.14 (ARM64, free-threaded)", - "Items": [ - { - "Name": "Python 3.14 (ARM64, free-threaded)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.14 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.14/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.14/" - } - ], - "display-name": "Python 3.14.0a4 (ARM64, free-threaded)", - "executable": "./python3.14t.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonarm64-freethreaded/3.14.0-a4/pythonarm64-freethreaded.3.14.0-a4.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.14-arm64-t", - "sort-version": "3.14.0a3", - "company": "PythonCore", - "tag": "3.14t-arm64", - "install-for": [ - "3.14.0a3t-arm64", - "3.14-devt-arm64" - ], - "run-for": [ - { - "tag": "3.14.0a3t-arm64", - "target": "python3.14t.exe" - }, - { - "tag": "3.14t-arm64", - "target": "python3.14t.exe" - }, - { - "tag": "3.14.0a3t-arm64", - "target": "pythonw3.14t.exe", - "windowed": 1 - }, - { - "tag": "3.14t-arm64", - "target": "pythonw3.14t.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.14t-arm64.exe", - "target": "python3.14t.exe" - }, - { - "name": "pythonw3.14t-arm64.exe", - "target": "pythonw3.14t.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCoreFreeThreaded\\3.14-arm64", - "DisplayName": "Python 3.14.0a3 (ARM64, free-threaded)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.14", - "Version": "3.14.0a3", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.14/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.14 (ARM64, free-threaded)", - "Items": [ - { - "Name": "Python 3.14 (ARM64, free-threaded)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.14 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.14/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.14/" - } - ], - "display-name": "Python 3.14.0a3 (ARM64, free-threaded)", - "executable": "./python3.14t.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonarm64-freethreaded/3.14.0-a3/pythonarm64-freethreaded.3.14.0-a3.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.14-arm64-t", - "sort-version": "3.14.0a2", - "company": "PythonCore", - "tag": "3.14t-arm64", - "install-for": [ - "3.14.0a2t-arm64", - "3.14-devt-arm64" - ], - "run-for": [ - { - "tag": "3.14.0a2t-arm64", - "target": "python3.14t.exe" - }, - { - "tag": "3.14t-arm64", - "target": "python3.14t.exe" - }, - { - "tag": "3.14.0a2t-arm64", - "target": "pythonw3.14t.exe", - "windowed": 1 - }, - { - "tag": "3.14t-arm64", - "target": "pythonw3.14t.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.14t-arm64.exe", - "target": "python3.14t.exe" - }, - { - "name": "pythonw3.14t-arm64.exe", - "target": "pythonw3.14t.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCoreFreeThreaded\\3.14-arm64", - "DisplayName": "Python 3.14.0a2 (ARM64, free-threaded)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.14", - "Version": "3.14.0a2", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.14/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.14 (ARM64, free-threaded)", - "Items": [ - { - "Name": "Python 3.14 (ARM64, free-threaded)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.14 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.14/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.14/" - } - ], - "display-name": "Python 3.14.0a2 (ARM64, free-threaded)", - "executable": "./python3.14t.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonarm64-freethreaded/3.14.0-a2/pythonarm64-freethreaded.3.14.0-a2.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.14-arm64-t", - "sort-version": "3.14.0a1", - "company": "PythonCore", - "tag": "3.14t-arm64", - "install-for": [ - "3.14.0a1t-arm64", - "3.14-devt-arm64" - ], - "run-for": [ - { - "tag": "3.14.0a1t-arm64", - "target": "python3.14t.exe" - }, - { - "tag": "3.14t-arm64", - "target": "python3.14t.exe" - }, - { - "tag": "3.14.0a1t-arm64", - "target": "pythonw3.14t.exe", - "windowed": 1 - }, - { - "tag": "3.14t-arm64", - "target": "pythonw3.14t.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.14t-arm64.exe", - "target": "python3.14t.exe" - }, - { - "name": "pythonw3.14t-arm64.exe", - "target": "pythonw3.14t.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCoreFreeThreaded\\3.14-arm64", - "DisplayName": "Python 3.14.0a1 (ARM64, free-threaded)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.14", - "Version": "3.14.0a1", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.14/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.14 (ARM64, free-threaded)", - "Items": [ - { - "Name": "Python 3.14 (ARM64, free-threaded)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.14 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.14/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.14/" - } - ], - "display-name": "Python 3.14.0a1 (ARM64, free-threaded)", - "executable": "./python3.14t.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonarm64-freethreaded/3.14.0-a1/pythonarm64-freethreaded.3.14.0-a1.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.13-arm64-t", - "sort-version": "3.13.3", - "company": "PythonCore", - "tag": "3.13t-arm64", - "install-for": [ - "3.13.3t-arm64", - "3.13t-arm64", - "3t-arm64" - ], - "run-for": [ - { - "tag": "3.13.3t-arm64", - "target": "python3.13t.exe" - }, - { - "tag": "3.13t-arm64", - "target": "python3.13t.exe" - }, - { - "tag": "3t-arm64", - "target": "python3.13t.exe" - }, - { - "tag": "3.13.3t-arm64", - "target": "pythonw3.13t.exe", - "windowed": 1 - }, - { - "tag": "3.13t-arm64", - "target": "pythonw3.13t.exe", - "windowed": 1 - }, - { - "tag": "3t-arm64", - "target": "pythonw3.13t.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.13t-arm64.exe", - "target": "python3.13t.exe" - }, - { - "name": "python3t-arm64.exe", - "target": "python3.13t.exe" - }, - { - "name": "pythonw3.13t-arm64.exe", - "target": "pythonw3.13t.exe", - "windowed": 1 - }, - { - "name": "pythonw3t-arm64.exe", - "target": "pythonw3.13t.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCoreFreeThreaded\\3.13-arm64", - "DisplayName": "Python 3.13.3 (ARM64, free-threaded)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.13", - "Version": "3.13.3", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.13/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.13 (ARM64, free-threaded)", - "Items": [ - { - "Name": "Python 3.13 (ARM64, free-threaded)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.13 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.13/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.13/" - } - ], - "display-name": "Python 3.13.3 (ARM64, free-threaded)", - "executable": "./python3.13t.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonarm64-freethreaded/3.13.3/pythonarm64-freethreaded.3.13.3.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.13-arm64-t", - "sort-version": "3.13.2", - "company": "PythonCore", - "tag": "3.13t-arm64", - "install-for": [ - "3.13.2t-arm64", - "3.13t-arm64", - "3t-arm64" - ], - "run-for": [ - { - "tag": "3.13.2t-arm64", - "target": "python3.13t.exe" - }, - { - "tag": "3.13t-arm64", - "target": "python3.13t.exe" - }, - { - "tag": "3t-arm64", - "target": "python3.13t.exe" - }, - { - "tag": "3.13.2t-arm64", - "target": "pythonw3.13t.exe", - "windowed": 1 - }, - { - "tag": "3.13t-arm64", - "target": "pythonw3.13t.exe", - "windowed": 1 - }, - { - "tag": "3t-arm64", - "target": "pythonw3.13t.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.13t-arm64.exe", - "target": "python3.13t.exe" - }, - { - "name": "python3t-arm64.exe", - "target": "python3.13t.exe" - }, - { - "name": "pythonw3.13t-arm64.exe", - "target": "pythonw3.13t.exe", - "windowed": 1 - }, - { - "name": "pythonw3t-arm64.exe", - "target": "pythonw3.13t.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCoreFreeThreaded\\3.13-arm64", - "DisplayName": "Python 3.13.2 (ARM64, free-threaded)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.13", - "Version": "3.13.2", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.13/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.13 (ARM64, free-threaded)", - "Items": [ - { - "Name": "Python 3.13 (ARM64, free-threaded)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.13 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.13/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.13/" - } - ], - "display-name": "Python 3.13.2 (ARM64, free-threaded)", - "executable": "./python3.13t.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonarm64-freethreaded/3.13.2/pythonarm64-freethreaded.3.13.2.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.13-arm64-t", - "sort-version": "3.13.1", - "company": "PythonCore", - "tag": "3.13t-arm64", - "install-for": [ - "3.13.1t-arm64", - "3.13t-arm64", - "3t-arm64" - ], - "run-for": [ - { - "tag": "3.13.1t-arm64", - "target": "python3.13t.exe" - }, - { - "tag": "3.13t-arm64", - "target": "python3.13t.exe" - }, - { - "tag": "3t-arm64", - "target": "python3.13t.exe" - }, - { - "tag": "3.13.1t-arm64", - "target": "pythonw3.13t.exe", - "windowed": 1 - }, - { - "tag": "3.13t-arm64", - "target": "pythonw3.13t.exe", - "windowed": 1 - }, - { - "tag": "3t-arm64", - "target": "pythonw3.13t.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.13t-arm64.exe", - "target": "python3.13t.exe" - }, - { - "name": "python3t-arm64.exe", - "target": "python3.13t.exe" - }, - { - "name": "pythonw3.13t-arm64.exe", - "target": "pythonw3.13t.exe", - "windowed": 1 - }, - { - "name": "pythonw3t-arm64.exe", - "target": "pythonw3.13t.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCoreFreeThreaded\\3.13-arm64", - "DisplayName": "Python 3.13.1 (ARM64, free-threaded)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.13", - "Version": "3.13.1", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.13/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.13 (ARM64, free-threaded)", - "Items": [ - { - "Name": "Python 3.13 (ARM64, free-threaded)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.13 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.13/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.13/" - } - ], - "display-name": "Python 3.13.1 (ARM64, free-threaded)", - "executable": "./python3.13t.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonarm64-freethreaded/3.13.1/pythonarm64-freethreaded.3.13.1.nupkg" - }, - { - "schema": 1, - "id": "pythoncore-3.13-arm64-t", - "sort-version": "3.13.0", - "company": "PythonCore", - "tag": "3.13t-arm64", - "install-for": [ - "3.13.0t-arm64", - "3.13t-arm64", - "3t-arm64" - ], - "run-for": [ - { - "tag": "3.13.0t-arm64", - "target": "python3.13t.exe" - }, - { - "tag": "3.13t-arm64", - "target": "python3.13t.exe" - }, - { - "tag": "3t-arm64", - "target": "python3.13t.exe" - }, - { - "tag": "3.13.0t-arm64", - "target": "pythonw3.13t.exe", - "windowed": 1 - }, - { - "tag": "3.13t-arm64", - "target": "pythonw3.13t.exe", - "windowed": 1 - }, - { - "tag": "3t-arm64", - "target": "pythonw3.13t.exe", - "windowed": 1 - } - ], - "alias": [ - { - "name": "python3.13t-arm64.exe", - "target": "python3.13t.exe" - }, - { - "name": "python3t-arm64.exe", - "target": "python3.13t.exe" - }, - { - "name": "pythonw3.13t-arm64.exe", - "target": "pythonw3.13t.exe", - "windowed": 1 - }, - { - "name": "pythonw3t-arm64.exe", - "target": "pythonw3.13t.exe", - "windowed": 1 - } - ], - "shortcuts": [ - { - "kind": "pep514", - "Key": "PythonCoreFreeThreaded\\3.13-arm64", - "DisplayName": "Python 3.13.0 (ARM64, free-threaded)", - "SupportUrl": "https://www.python.org/", - "SysArchitecture": "64bit", - "SysVersion": "3.13", - "Version": "3.13.0", - "InstallPath": { - "_": "%PREFIX%", - "ExecutablePath": "%PREFIX%python.exe", - "WindowedExecutablePath": "%PREFIX%pythonw.exe" - }, - "Help": { - "Online Python Documentation": { - "_": "https://docs.python.org/3.13/" - } - } - }, - { - "kind": "start", - "Name": "Python 3.13 (ARM64, free-threaded)", - "Items": [ - { - "Name": "Python 3.13 (ARM64, free-threaded)", - "Target": "%PREFIX%python.exe", - "Icon": "%PREFIX%python.exe" - }, - { - "Name": "Python 3.13 Documentation", - "Icon": "%SystemRoot%\\System32\\SHELL32.dll", - "IconIndex": 13, - "Target": "https://docs.python.org/3.13/" - } - ] - }, - { - "kind": "uninstall", - "Publisher": "Python Software Foundation", - "HelpLink": "https://docs.python.org/3.13/" - } - ], - "display-name": "Python 3.13.0 (ARM64, free-threaded)", - "executable": "./python3.13t.exe", - "url": "https://api.nuget.org/v3-flatcontainer/pythonarm64-freethreaded/3.13.0/pythonarm64-freethreaded.3.13.0.nupkg" - } - ], - "next": "index-legacy.json" -} \ No newline at end of file diff --git a/src/pymanager/msi.wxs b/src/pymanager/msi.wxs index 643dbc9..ffa4824 100644 --- a/src/pymanager/msi.wxs +++ b/src/pymanager/msi.wxs @@ -18,7 +18,6 @@ - @@ -26,7 +25,6 @@ - @@ -83,12 +81,6 @@ - - - - - -