diff --git a/.gitignore b/.gitignore index 8d51d66b..3d0c2125 100644 --- a/.gitignore +++ b/.gitignore @@ -33,8 +33,8 @@ MANIFEST .vscode/ # Environments -/.env -/.venv +.env +.venv /env/ /venv/ /ENV/ diff --git a/Cargo.lock b/Cargo.lock index 7def1bf5..32e5b1c3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -386,6 +386,13 @@ dependencies = [ "toml_edit", ] +[[package]] +name = "huak_python_manager" +version = "0.0.0" +dependencies = [ + "huak_home", +] + [[package]] name = "human-panic" version = "1.1.5" diff --git a/crates/huak_python_manager/Cargo.toml b/crates/huak_python_manager/Cargo.toml new file mode 100644 index 00000000..a69dcbdd --- /dev/null +++ b/crates/huak_python_manager/Cargo.toml @@ -0,0 +1,14 @@ +[package] +name = "huak_python_manager" +description = "An application for managing Python installations." +version = "0.0.0" +edition.workspace = true +rust-version.workspace = true +authors.workspace = true +license.workspace = true + +[dependencies] +huak_home = { version = "0.0.0", path = "../huak_home" } + +[lints] +workspace = true diff --git a/crates/huak_python_manager/README.md b/crates/huak_python_manager/README.md new file mode 100644 index 00000000..ad63e9b0 --- /dev/null +++ b/crates/huak_python_manager/README.md @@ -0,0 +1,18 @@ +# Python Manager + +A Python interpreter management system for Huak. + +## Usage + +``` +huak_python_manager install 3.11 +``` + +## How it works + +### Installing a Python interpreter + +1. Fetch the interpreter from https://github.com/indygreg/python-build-standalone using GitHub API. +1. Validate the checksum of the interpreter. +1. Extract the interpreter using `tar`. +1. Place the interpreter in Huak's home directory (~/.huak/bin/). diff --git a/crates/huak_python_manager/generate.py b/crates/huak_python_manager/generate.py new file mode 100644 index 00000000..b14784f6 --- /dev/null +++ b/crates/huak_python_manager/generate.py @@ -0,0 +1,98 @@ +"""This module generates generated.rs with Python interpreter data.""" +import re +import subprocess +from typing import NamedTuple +import requests +from pathlib import Path + +class Release(NamedTuple): + kind: str + version: str + os: str + architecture: str + build_configuration: str + url: str + + def to_rust_string(self) -> str: + return f"""\ +Release::new("{self.kind}", "{self.version}", "{self.os}", "{self.architecture}", "{self.build_configuration}", "{self.url}")\ +""" # noqa + + +url = "https://api.github.com/repos/indygreg/python-build-standalone/releases" + +response = requests.get(url) +response.raise_for_status() + +data = response.json() +version_pattern = r"cpython-(\d+\.\d+\.\d+)" +os_pattern = r"-(windows|apple|linux)-" +arch_pattern = r"-(aarch64|i686|x86_64)-" +build_pattern = r"-(pgo+lto|pgo|lto|noopt|debug)" + +module = """\ +pub struct Release<'a> { + kind: &'a str, + version: &'a str, + os: &'a str, + architecture: &'a str, + build_configuration: &'a str, + url: &'a str, +} + +impl Release<'static> { + const fn new( + kind: &'static str, + version: &'static str, + os: &'static str, + architecture: &'static str, + build_configuration: &'static str, + url: &'static str, + ) -> Self { + Release { + kind, + version, + os, + architecture, + build_configuration, + url, + } + } +} + +pub const RELEASES: &'static [Release] = &[\ +""" + +for release in data: + for asset in release["assets"]: + # TODO(cnpryer): Validate checksum + if asset["browser_download_url"].endswith(".sha256"): + continue + + version_res = re.search(version_pattern, asset["browser_download_url"]) + if version_res: + version_str = version_res.group(1) + + os_res = re.search(os_pattern, asset["browser_download_url"]) + if os_res: + os_str = os_res.group(1) + + arch_res = re.search(arch_pattern, asset["browser_download_url"]) + if arch_res: + arch_str = arch_res.group(1) + + build_res = re.search(build_pattern, asset["browser_download_url"]) + if build_res: + build_str = build_res.group(1) + + module += ( + "\n\t" + + Release( + "cpython", version_str, os_str, arch_str, build_str, asset["browser_download_url"] + ).to_rust_string() + + "," + ) +module += "\n];" + +path = Path(__file__).parent / "src" / "generated.rs" +path.write_text(module) \ No newline at end of file diff --git a/crates/huak_python_manager/requirements-dev.txt b/crates/huak_python_manager/requirements-dev.txt new file mode 100644 index 00000000..2c24336e --- /dev/null +++ b/crates/huak_python_manager/requirements-dev.txt @@ -0,0 +1 @@ +requests==2.31.0 diff --git a/crates/huak_python_manager/src/generated.rs b/crates/huak_python_manager/src/generated.rs new file mode 100644 index 00000000..37e6f51c --- /dev/null +++ b/crates/huak_python_manager/src/generated.rs @@ -0,0 +1,3355 @@ +pub struct Release<'a> { + kind: &'a str, + version: &'a str, + os: &'a str, + architecture: &'a str, + build_configuration: &'a str, + url: &'a str, +} + +impl Release<'static> { + const fn new( + kind: &'static str, + version: &'static str, + os: &'static str, + architecture: &'static str, + build_configuration: &'static str, + url: &'static str, + ) -> Self { + Release { + kind, + version, + os, + architecture, + build_configuration, + url, + } + } +} + +pub const RELEASES: &'static [Release] = &[ + Release::new("cpython", "3.10.13", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.10.13%2B20231002-aarch64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.10.13", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.10.13%2B20231002-aarch64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.10.13", "apple", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.10.13%2B20231002-aarch64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.10.13", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.10.13%2B20231002-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.13", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.10.13%2B20231002-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.10.13%2B20231002-aarch64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.10.13%2B20231002-aarch64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.13", "linux", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.10.13%2B20231002-aarch64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "aarch64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.10.13%2B20231002-aarch64-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.10.13", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.10.13%2B20231002-i686-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.10.13", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.10.13%2B20231002-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.10.13", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.10.13%2B20231002-i686-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.10.13", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.10.13%2B20231002-i686-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.10.13%2B20231002-ppc64le-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.10.13%2B20231002-ppc64le-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.13", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.10.13%2B20231002-ppc64le-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.10.13%2B20231002-ppc64le-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.10.13%2B20231002-s390x-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.10.13%2B20231002-s390x-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.13", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.10.13%2B20231002-s390x-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.10.13%2B20231002-s390x-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.10.13", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.10.13%2B20231002-x86_64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.10.13", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.10.13%2B20231002-x86_64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.10.13", "apple", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.10.13%2B20231002-x86_64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.10.13", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.10.13%2B20231002-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.13", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.10.13%2B20231002-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.10.13", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.10.13%2B20231002-x86_64-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.10.13", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.10.13%2B20231002-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.10.13", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.10.13%2B20231002-x86_64-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.10.13", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.10.13%2B20231002-x86_64-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.10.13%2B20231002-x86_64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.10.13%2B20231002-x86_64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.10.13%2B20231002-x86_64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.10.13%2B20231002-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.10.13%2B20231002-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.10.13%2B20231002-x86_64-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.10.13%2B20231002-x86_64-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.10.13%2B20231002-x86_64-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.10.13%2B20231002-x86_64-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.10.13%2B20231002-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.10.13%2B20231002-x86_64_v2-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.10.13%2B20231002-x86_64_v2-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.10.13%2B20231002-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.10.13%2B20231002-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.10.13%2B20231002-x86_64_v2-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.10.13%2B20231002-x86_64_v2-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.10.13%2B20231002-x86_64_v2-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.10.13%2B20231002-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.10.13%2B20231002-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.10.13%2B20231002-x86_64_v3-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.10.13%2B20231002-x86_64_v3-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.10.13%2B20231002-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.10.13%2B20231002-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.10.13%2B20231002-x86_64_v3-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.10.13%2B20231002-x86_64_v3-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.10.13%2B20231002-x86_64_v3-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.10.13%2B20231002-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.10.13%2B20231002-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.10.13%2B20231002-x86_64_v4-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.10.13%2B20231002-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.10.13%2B20231002-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.10.13%2B20231002-x86_64_v4-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.10.13%2B20231002-x86_64_v4-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.10.13%2B20231002-x86_64_v4-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.10.13%2B20231002-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.11.6", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6%2B20231002-aarch64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.11.6", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6%2B20231002-aarch64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.11.6", "apple", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6%2B20231002-aarch64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.11.6", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6%2B20231002-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.11.6", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6%2B20231002-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.11.6", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6%2B20231002-aarch64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.11.6", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6%2B20231002-aarch64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.11.6", "linux", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6%2B20231002-aarch64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.11.6", "linux", "aarch64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6%2B20231002-aarch64-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.11.6", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6%2B20231002-i686-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.11.6", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6%2B20231002-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.11.6", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6%2B20231002-i686-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.11.6", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6%2B20231002-i686-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.11.6", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6%2B20231002-ppc64le-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.11.6", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6%2B20231002-ppc64le-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.11.6", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6%2B20231002-ppc64le-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.11.6", "linux", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6%2B20231002-ppc64le-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.11.6", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6%2B20231002-s390x-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.11.6", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6%2B20231002-s390x-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.11.6", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6%2B20231002-s390x-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.11.6", "linux", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6%2B20231002-s390x-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.11.6", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6%2B20231002-x86_64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.11.6", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6%2B20231002-x86_64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.11.6", "apple", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6%2B20231002-x86_64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.11.6", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6%2B20231002-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.11.6", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6%2B20231002-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.11.6", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6%2B20231002-x86_64-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.11.6", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6%2B20231002-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.11.6", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6%2B20231002-x86_64-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.11.6", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6%2B20231002-x86_64-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.11.6", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6%2B20231002-x86_64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.11.6", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6%2B20231002-x86_64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.11.6", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6%2B20231002-x86_64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.11.6", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6%2B20231002-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.11.6", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6%2B20231002-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.11.6", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6%2B20231002-x86_64-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.11.6", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6%2B20231002-x86_64-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.11.6", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6%2B20231002-x86_64-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.11.6", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6%2B20231002-x86_64-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.11.6", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6%2B20231002-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.11.6", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6%2B20231002-x86_64_v2-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.11.6", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6%2B20231002-x86_64_v2-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.11.6", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6%2B20231002-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.11.6", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6%2B20231002-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.11.6", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6%2B20231002-x86_64_v2-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.11.6", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6%2B20231002-x86_64_v2-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.11.6", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6%2B20231002-x86_64_v2-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.11.6", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6%2B20231002-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.11.6", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6%2B20231002-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.11.6", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6%2B20231002-x86_64_v3-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.11.6", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6%2B20231002-x86_64_v3-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.11.6", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6%2B20231002-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.11.6", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6%2B20231002-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.11.6", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6%2B20231002-x86_64_v3-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.11.6", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6%2B20231002-x86_64_v3-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.11.6", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6%2B20231002-x86_64_v3-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.11.6", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6%2B20231002-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.11.6", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6%2B20231002-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.11.6", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6%2B20231002-x86_64_v4-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.11.6", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6%2B20231002-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.11.6", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6%2B20231002-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.11.6", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6%2B20231002-x86_64_v4-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.11.6", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6%2B20231002-x86_64_v4-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.11.6", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6%2B20231002-x86_64_v4-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.11.6", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.11.6%2B20231002-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.12.0", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0%2B20231002-aarch64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.12.0", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0%2B20231002-aarch64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.12.0", "apple", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0%2B20231002-aarch64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.12.0", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0%2B20231002-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.12.0", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0%2B20231002-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.12.0", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0%2B20231002-aarch64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.12.0", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0%2B20231002-aarch64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.12.0", "linux", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0%2B20231002-aarch64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.12.0", "linux", "aarch64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0%2B20231002-aarch64-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.12.0", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0%2B20231002-i686-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.12.0", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0%2B20231002-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.12.0", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0%2B20231002-i686-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.12.0", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0%2B20231002-i686-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.12.0", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0%2B20231002-ppc64le-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.12.0", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0%2B20231002-ppc64le-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.12.0", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0%2B20231002-ppc64le-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.12.0", "linux", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0%2B20231002-ppc64le-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.12.0", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0%2B20231002-s390x-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.12.0", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0%2B20231002-s390x-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.12.0", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0%2B20231002-s390x-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.12.0", "linux", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0%2B20231002-s390x-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.12.0", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0%2B20231002-x86_64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.12.0", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0%2B20231002-x86_64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.12.0", "apple", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0%2B20231002-x86_64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.12.0", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0%2B20231002-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.12.0", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0%2B20231002-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.12.0", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0%2B20231002-x86_64-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.12.0", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0%2B20231002-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.12.0", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0%2B20231002-x86_64-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.12.0", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0%2B20231002-x86_64-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.12.0", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0%2B20231002-x86_64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.12.0", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0%2B20231002-x86_64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.12.0", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0%2B20231002-x86_64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.12.0", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0%2B20231002-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.12.0", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0%2B20231002-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.12.0", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0%2B20231002-x86_64-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.12.0", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0%2B20231002-x86_64-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.12.0", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0%2B20231002-x86_64-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.12.0", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0%2B20231002-x86_64-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.12.0", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0%2B20231002-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.12.0", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0%2B20231002-x86_64_v2-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.12.0", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0%2B20231002-x86_64_v2-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.12.0", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0%2B20231002-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.12.0", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0%2B20231002-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.12.0", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0%2B20231002-x86_64_v2-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.12.0", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0%2B20231002-x86_64_v2-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.12.0", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0%2B20231002-x86_64_v2-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.12.0", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0%2B20231002-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.12.0", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0%2B20231002-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.12.0", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0%2B20231002-x86_64_v3-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.12.0", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0%2B20231002-x86_64_v3-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.12.0", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0%2B20231002-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.12.0", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0%2B20231002-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.12.0", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0%2B20231002-x86_64_v3-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.12.0", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0%2B20231002-x86_64_v3-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.12.0", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0%2B20231002-x86_64_v3-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.12.0", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0%2B20231002-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.12.0", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0%2B20231002-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.12.0", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0%2B20231002-x86_64_v4-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.12.0", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0%2B20231002-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.12.0", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0%2B20231002-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.12.0", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0%2B20231002-x86_64_v4-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.12.0", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0%2B20231002-x86_64_v4-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.12.0", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0%2B20231002-x86_64_v4-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.12.0", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.12.0%2B20231002-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.8.18", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.8.18%2B20231002-aarch64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.8.18", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.8.18%2B20231002-aarch64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.8.18", "apple", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.8.18%2B20231002-aarch64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.8.18", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.8.18%2B20231002-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.8.18", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.8.18%2B20231002-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.8.18", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.8.18%2B20231002-aarch64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.8.18", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.8.18%2B20231002-aarch64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.8.18", "linux", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.8.18%2B20231002-aarch64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.8.18", "linux", "aarch64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.8.18%2B20231002-aarch64-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.8.18", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.8.18%2B20231002-i686-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.8.18", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.8.18%2B20231002-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.8.18", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.8.18%2B20231002-i686-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.8.18", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.8.18%2B20231002-i686-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.8.18", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.8.18%2B20231002-x86_64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.8.18", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.8.18%2B20231002-x86_64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.8.18", "apple", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.8.18%2B20231002-x86_64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.8.18", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.8.18%2B20231002-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.8.18", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.8.18%2B20231002-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.8.18", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.8.18%2B20231002-x86_64-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.8.18", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.8.18%2B20231002-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.8.18", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.8.18%2B20231002-x86_64-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.8.18", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.8.18%2B20231002-x86_64-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.8.18", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.8.18%2B20231002-x86_64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.8.18", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.8.18%2B20231002-x86_64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.8.18", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.8.18%2B20231002-x86_64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.8.18", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.8.18%2B20231002-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.8.18", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.8.18%2B20231002-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.8.18", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.8.18%2B20231002-x86_64-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.8.18", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.8.18%2B20231002-x86_64-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.8.18", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.8.18%2B20231002-x86_64-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.8.18", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.8.18%2B20231002-x86_64-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.18", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.9.18%2B20231002-aarch64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.9.18", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.9.18%2B20231002-aarch64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.9.18", "apple", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.9.18%2B20231002-aarch64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.9.18", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.9.18%2B20231002-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.18", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.9.18%2B20231002-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.9.18%2B20231002-aarch64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.9.18%2B20231002-aarch64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.18", "linux", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.9.18%2B20231002-aarch64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "aarch64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.9.18%2B20231002-aarch64-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.9.18", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.9.18%2B20231002-i686-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.9.18", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.9.18%2B20231002-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.9.18", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.9.18%2B20231002-i686-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.9.18", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.9.18%2B20231002-i686-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.9.18%2B20231002-ppc64le-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.9.18%2B20231002-ppc64le-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.18", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.9.18%2B20231002-ppc64le-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.9.18%2B20231002-ppc64le-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.9.18%2B20231002-s390x-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.9.18%2B20231002-s390x-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.18", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.9.18%2B20231002-s390x-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.9.18%2B20231002-s390x-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.9.18", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.9.18%2B20231002-x86_64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.9.18", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.9.18%2B20231002-x86_64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.9.18", "apple", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.9.18%2B20231002-x86_64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.9.18", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.9.18%2B20231002-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.18", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.9.18%2B20231002-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.9.18", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.9.18%2B20231002-x86_64-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.9.18", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.9.18%2B20231002-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.9.18", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.9.18%2B20231002-x86_64-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.9.18", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.9.18%2B20231002-x86_64-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.9.18%2B20231002-x86_64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.9.18%2B20231002-x86_64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.9.18%2B20231002-x86_64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.9.18%2B20231002-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.9.18%2B20231002-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.9.18%2B20231002-x86_64-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.9.18%2B20231002-x86_64-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.9.18%2B20231002-x86_64-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.9.18%2B20231002-x86_64-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.9.18%2B20231002-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.9.18%2B20231002-x86_64_v2-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.9.18%2B20231002-x86_64_v2-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.9.18%2B20231002-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.9.18%2B20231002-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.9.18%2B20231002-x86_64_v2-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.9.18%2B20231002-x86_64_v2-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.9.18%2B20231002-x86_64_v2-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.9.18%2B20231002-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.9.18%2B20231002-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.9.18%2B20231002-x86_64_v3-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.9.18%2B20231002-x86_64_v3-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.9.18%2B20231002-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.9.18%2B20231002-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.9.18%2B20231002-x86_64_v3-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.9.18%2B20231002-x86_64_v3-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.9.18%2B20231002-x86_64_v3-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.9.18%2B20231002-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.9.18%2B20231002-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.9.18%2B20231002-x86_64_v4-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.9.18%2B20231002-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.9.18%2B20231002-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.9.18%2B20231002-x86_64_v4-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.9.18%2B20231002-x86_64_v4-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.9.18%2B20231002-x86_64_v4-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/cpython-3.9.18%2B20231002-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20231002/SHA256SUMS"), + Release::new("cpython", "3.10.13", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-aarch64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.10.13", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-aarch64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.10.13", "apple", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-aarch64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.10.13", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.13", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-aarch64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-aarch64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.13", "linux", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-aarch64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "aarch64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-aarch64-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.10.13", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-i686-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.10.13", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.10.13", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-i686-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.10.13", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-i686-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-i686-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-i686-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.13", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-i686-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-ppc64le-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-ppc64le-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.13", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-ppc64le-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-ppc64le-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-s390x-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-s390x-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.13", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-s390x-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-s390x-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.10.13", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.10.13", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.10.13", "apple", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.10.13", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.13", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.10.13", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.10.13", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.10.13", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.10.13", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v2-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v2-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v2-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v2-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v2-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v3-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v3-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v3-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v3-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v3-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v4-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v4-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v4-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v4-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.10.13", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.10.13%2B20230826-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.11.5", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-aarch64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.11.5", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-aarch64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.11.5", "apple", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-aarch64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.11.5", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.11.5", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.11.5", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-aarch64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.11.5", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-aarch64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.11.5", "linux", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-aarch64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.11.5", "linux", "aarch64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-aarch64-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.11.5", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-i686-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.11.5", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.11.5", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-i686-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.11.5", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-i686-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.11.5", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-i686-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.11.5", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-i686-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.11.5", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-i686-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.11.5", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.11.5", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.11.5", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-ppc64le-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.11.5", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-ppc64le-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.11.5", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-ppc64le-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.11.5", "linux", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-ppc64le-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.11.5", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-s390x-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.11.5", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-s390x-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.11.5", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-s390x-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.11.5", "linux", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-s390x-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.11.5", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.11.5", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.11.5", "apple", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.11.5", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.11.5", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.11.5", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.11.5", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.11.5", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.11.5", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.11.5", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.11.5", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.11.5", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.11.5", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.11.5", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.11.5", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.11.5", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.11.5", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.11.5", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.11.5", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.11.5", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v2-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.11.5", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v2-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.11.5", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.11.5", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.11.5", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v2-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.11.5", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v2-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.11.5", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v2-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.11.5", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.11.5", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.11.5", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v3-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.11.5", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v3-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.11.5", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.11.5", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.11.5", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v3-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.11.5", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v3-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.11.5", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v3-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.11.5", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.11.5", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.11.5", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v4-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.11.5", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.11.5", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.11.5", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v4-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.11.5", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v4-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.11.5", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v4-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.11.5", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.11.5%2B20230826-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.8.17", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-aarch64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.8.17", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-aarch64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.8.17", "apple", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-aarch64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.8.17", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.8.17", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.8.17", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-aarch64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.8.17", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-aarch64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.8.17", "linux", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-aarch64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.8.17", "linux", "aarch64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-aarch64-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.8.17", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-i686-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.8.17", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.8.17", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-i686-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.8.17", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-i686-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.8.17", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-i686-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.8.17", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-i686-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.8.17", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-i686-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.8.17", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.8.17", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.8.17", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.8.17", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.8.17", "apple", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.8.17", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.8.17", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.8.17", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.8.17", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.8.17", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.8.17", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.8.17", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.8.17", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.8.17", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.8.17", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.8.17", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.8.17", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.8.17", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.8.17", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.8.17", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.8.17%2B20230826-x86_64-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.18", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-aarch64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.9.18", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-aarch64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.9.18", "apple", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-aarch64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.9.18", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.18", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-aarch64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-aarch64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.18", "linux", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-aarch64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "aarch64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-aarch64-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.9.18", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-i686-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.9.18", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.9.18", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-i686-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.9.18", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-i686-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-i686-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-i686-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.18", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-i686-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-ppc64le-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-ppc64le-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.18", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-ppc64le-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-ppc64le-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-s390x-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-s390x-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.18", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-s390x-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-s390x-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.9.18", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.9.18", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.9.18", "apple", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.9.18", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.18", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.9.18", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.9.18", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.9.18", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.9.18", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v2-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v2-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v2-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v2-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v2-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v3-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v3-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v3-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v3-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v3-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v4-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v4-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v4-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v4-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/cpython-3.9.18%2B20230826-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.18", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230826/SHA256SUMS"), + Release::new("cpython", "3.10.12", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-aarch64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.10.12", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-aarch64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.10.12", "apple", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-aarch64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.10.12", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.12", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.10.12", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-aarch64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.12", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-aarch64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.12", "linux", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-aarch64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.12", "linux", "aarch64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-aarch64-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.10.12", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-i686-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.10.12", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.10.12", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-i686-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.10.12", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-i686-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.10.12", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-i686-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.12", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-i686-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.12", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-i686-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.12", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.12", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.10.12", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-ppc64le-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.12", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-ppc64le-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.12", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-ppc64le-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.12", "linux", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-ppc64le-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.10.12", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-s390x-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.12", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-s390x-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.12", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-s390x-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.12", "linux", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-s390x-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.10.12", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-x86_64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.10.12", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-x86_64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.10.12", "apple", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-x86_64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.10.12", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.12", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.10.12", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-x86_64-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.10.12", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.10.12", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-x86_64-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.10.12", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-x86_64-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.10.12", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-x86_64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.12", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-x86_64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.12", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-x86_64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.12", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.12", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.10.12", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-x86_64-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.10.12", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-x86_64-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.10.12", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-x86_64-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.10.12", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-x86_64-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.10.12", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.12", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-x86_64_v2-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.12", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-x86_64_v2-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.12", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.12", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.10.12", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-x86_64_v2-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.10.12", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-x86_64_v2-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.10.12", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-x86_64_v2-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.10.12", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.10.12", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.12", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-x86_64_v3-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.12", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-x86_64_v3-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.12", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.12", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.10.12", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-x86_64_v3-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.10.12", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-x86_64_v3-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.10.12", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-x86_64_v3-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.10.12", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.10.12", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.12", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-x86_64_v4-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.12", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.12", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.10.12", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-x86_64_v4-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.10.12", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-x86_64_v4-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.10.12", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-x86_64_v4-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.10.12", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.10.12%2B20230726-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.11.4", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-aarch64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.11.4", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-aarch64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.11.4", "apple", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-aarch64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.11.4", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.11.4", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.11.4", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-aarch64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.11.4", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-aarch64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.11.4", "linux", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-aarch64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.11.4", "linux", "aarch64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-aarch64-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.11.4", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-i686-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.11.4", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.11.4", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-i686-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.11.4", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-i686-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.11.4", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-i686-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.11.4", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-i686-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.11.4", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-i686-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.11.4", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.11.4", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.11.4", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-ppc64le-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.11.4", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-ppc64le-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.11.4", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-ppc64le-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.11.4", "linux", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-ppc64le-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.11.4", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-s390x-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.11.4", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-s390x-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.11.4", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-s390x-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.11.4", "linux", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-s390x-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.11.4", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-x86_64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.11.4", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-x86_64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.11.4", "apple", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-x86_64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.11.4", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.11.4", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.11.4", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-x86_64-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.11.4", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.11.4", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-x86_64-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.11.4", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-x86_64-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.11.4", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-x86_64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.11.4", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-x86_64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.11.4", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-x86_64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.11.4", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.11.4", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.11.4", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-x86_64-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.11.4", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-x86_64-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.11.4", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-x86_64-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.11.4", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-x86_64-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.11.4", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.11.4", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-x86_64_v2-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.11.4", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-x86_64_v2-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.11.4", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.11.4", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.11.4", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-x86_64_v2-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.11.4", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-x86_64_v2-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.11.4", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-x86_64_v2-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.11.4", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.11.4", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.11.4", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-x86_64_v3-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.11.4", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-x86_64_v3-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.11.4", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.11.4", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.11.4", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-x86_64_v3-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.11.4", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-x86_64_v3-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.11.4", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-x86_64_v3-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.11.4", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.11.4", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.11.4", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-x86_64_v4-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.11.4", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.11.4", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.11.4", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-x86_64_v4-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.11.4", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-x86_64_v4-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.11.4", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-x86_64_v4-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.11.4", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.11.4%2B20230726-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.8.16", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.8.16%2B20230726-aarch64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.8.16", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.8.16%2B20230726-aarch64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.8.16", "apple", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.8.16%2B20230726-aarch64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.8.16", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.8.16%2B20230726-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.8.16", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.8.16%2B20230726-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.8.16", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.8.16%2B20230726-aarch64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.8.16", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.8.16%2B20230726-aarch64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.8.16", "linux", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.8.16%2B20230726-aarch64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.8.16", "linux", "aarch64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.8.16%2B20230726-aarch64-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.8.16", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.8.16%2B20230726-i686-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.8.16", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.8.16%2B20230726-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.8.16", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.8.16%2B20230726-i686-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.8.16", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.8.16%2B20230726-i686-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.8.16", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.8.16%2B20230726-i686-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.8.16", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.8.16%2B20230726-i686-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.8.16", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.8.16%2B20230726-i686-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.8.16", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.8.16%2B20230726-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.8.16", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.8.16%2B20230726-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.8.16", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.8.16%2B20230726-x86_64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.8.16", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.8.16%2B20230726-x86_64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.8.16", "apple", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.8.16%2B20230726-x86_64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.8.16", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.8.16%2B20230726-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.8.16", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.8.16%2B20230726-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.8.16", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.8.16%2B20230726-x86_64-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.8.16", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.8.16%2B20230726-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.8.16", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.8.16%2B20230726-x86_64-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.8.16", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.8.16%2B20230726-x86_64-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.8.16", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.8.16%2B20230726-x86_64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.8.16", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.8.16%2B20230726-x86_64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.8.16", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.8.16%2B20230726-x86_64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.8.16", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.8.16%2B20230726-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.8.16", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.8.16%2B20230726-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.8.16", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.8.16%2B20230726-x86_64-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.8.16", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.8.16%2B20230726-x86_64-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.8.16", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.8.16%2B20230726-x86_64-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.8.16", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.8.16%2B20230726-x86_64-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.17", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-aarch64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.9.17", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-aarch64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.9.17", "apple", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-aarch64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.9.17", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.17", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.9.17", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-aarch64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.17", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-aarch64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.17", "linux", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-aarch64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.17", "linux", "aarch64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-aarch64-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.9.17", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-i686-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.9.17", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.9.17", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-i686-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.9.17", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-i686-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.9.17", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-i686-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.17", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-i686-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.17", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-i686-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.17", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.17", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.9.17", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-ppc64le-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.17", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-ppc64le-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.17", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-ppc64le-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.17", "linux", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-ppc64le-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.9.17", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-s390x-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.17", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-s390x-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.17", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-s390x-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.17", "linux", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-s390x-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.9.17", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-x86_64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.9.17", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-x86_64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.9.17", "apple", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-x86_64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.9.17", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.17", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.9.17", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-x86_64-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.9.17", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.9.17", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-x86_64-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.9.17", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-x86_64-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.9.17", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-x86_64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.17", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-x86_64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.17", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-x86_64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.17", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.17", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.9.17", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-x86_64-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.9.17", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-x86_64-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.9.17", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-x86_64-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.9.17", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-x86_64-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.17", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.17", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-x86_64_v2-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.17", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-x86_64_v2-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.17", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.17", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.9.17", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-x86_64_v2-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.9.17", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-x86_64_v2-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.9.17", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-x86_64_v2-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.9.17", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.17", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.17", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-x86_64_v3-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.17", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-x86_64_v3-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.17", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.17", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.9.17", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-x86_64_v3-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.9.17", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-x86_64_v3-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.9.17", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-x86_64_v3-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.9.17", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.17", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.17", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-x86_64_v4-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.17", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.17", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.9.17", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-x86_64_v4-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.9.17", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-x86_64_v4-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.9.17", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-x86_64_v4-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.9.17", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/cpython-3.9.17%2B20230726-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.17", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230726/SHA256SUMS"), + Release::new("cpython", "3.10.11", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11%2B20230507-aarch64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.10.11", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11%2B20230507-aarch64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.10.11", "apple", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11%2B20230507-aarch64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.10.11", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11%2B20230507-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.11", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11%2B20230507-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.10.11", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11%2B20230507-aarch64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.11", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11%2B20230507-aarch64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.11", "linux", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11%2B20230507-aarch64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.11", "linux", "aarch64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11%2B20230507-aarch64-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.10.11", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11%2B20230507-i686-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.10.11", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11%2B20230507-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.10.11", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11%2B20230507-i686-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.10.11", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11%2B20230507-i686-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.10.11", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11%2B20230507-i686-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.11", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11%2B20230507-i686-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.11", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11%2B20230507-i686-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.11", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11%2B20230507-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.11", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11%2B20230507-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.10.11", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11%2B20230507-ppc64le-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.11", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11%2B20230507-ppc64le-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.11", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11%2B20230507-ppc64le-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.11", "linux", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11%2B20230507-ppc64le-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.10.11", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11%2B20230507-x86_64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.10.11", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11%2B20230507-x86_64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.10.11", "apple", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11%2B20230507-x86_64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.10.11", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11%2B20230507-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.11", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11%2B20230507-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.10.11", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11%2B20230507-x86_64-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.10.11", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11%2B20230507-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.10.11", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11%2B20230507-x86_64-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.10.11", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11%2B20230507-x86_64-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.10.11", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11%2B20230507-x86_64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.11", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11%2B20230507-x86_64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.11", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11%2B20230507-x86_64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.11", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11%2B20230507-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.11", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11%2B20230507-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.10.11", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11%2B20230507-x86_64-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.10.11", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11%2B20230507-x86_64-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.10.11", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11%2B20230507-x86_64-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.10.11", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11%2B20230507-x86_64-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.10.11", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11%2B20230507-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.11", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11%2B20230507-x86_64_v2-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.11", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11%2B20230507-x86_64_v2-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.11", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11%2B20230507-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.11", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11%2B20230507-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.10.11", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11%2B20230507-x86_64_v2-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.10.11", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11%2B20230507-x86_64_v2-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.10.11", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11%2B20230507-x86_64_v2-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.10.11", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11%2B20230507-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.10.11", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11%2B20230507-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.11", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11%2B20230507-x86_64_v3-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.11", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11%2B20230507-x86_64_v3-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.11", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11%2B20230507-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.11", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11%2B20230507-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.10.11", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11%2B20230507-x86_64_v3-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.10.11", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11%2B20230507-x86_64_v3-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.10.11", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11%2B20230507-x86_64_v3-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.10.11", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11%2B20230507-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.10.11", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11%2B20230507-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.11", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11%2B20230507-x86_64_v4-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.11", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11%2B20230507-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.11", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11%2B20230507-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.10.11", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11%2B20230507-x86_64_v4-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.10.11", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11%2B20230507-x86_64_v4-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.10.11", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11%2B20230507-x86_64_v4-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.10.11", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11%2B20230507-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.11.3", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3%2B20230507-aarch64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.11.3", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3%2B20230507-aarch64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.11.3", "apple", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3%2B20230507-aarch64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.11.3", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3%2B20230507-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.11.3", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3%2B20230507-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.11.3", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3%2B20230507-aarch64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.11.3", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3%2B20230507-aarch64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.11.3", "linux", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3%2B20230507-aarch64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.11.3", "linux", "aarch64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3%2B20230507-aarch64-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.11.3", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3%2B20230507-i686-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.11.3", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3%2B20230507-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.11.3", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3%2B20230507-i686-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.11.3", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3%2B20230507-i686-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.11.3", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3%2B20230507-i686-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.11.3", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3%2B20230507-i686-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.11.3", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3%2B20230507-i686-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.11.3", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3%2B20230507-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.11.3", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3%2B20230507-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.11.3", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3%2B20230507-ppc64le-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.11.3", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3%2B20230507-ppc64le-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.11.3", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3%2B20230507-ppc64le-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.11.3", "linux", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3%2B20230507-ppc64le-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.11.3", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3%2B20230507-x86_64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.11.3", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3%2B20230507-x86_64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.11.3", "apple", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3%2B20230507-x86_64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.11.3", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3%2B20230507-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.11.3", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3%2B20230507-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.11.3", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3%2B20230507-x86_64-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.11.3", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3%2B20230507-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.11.3", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3%2B20230507-x86_64-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.11.3", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3%2B20230507-x86_64-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.11.3", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3%2B20230507-x86_64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.11.3", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3%2B20230507-x86_64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.11.3", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3%2B20230507-x86_64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.11.3", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3%2B20230507-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.11.3", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3%2B20230507-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.11.3", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3%2B20230507-x86_64-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.11.3", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3%2B20230507-x86_64-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.11.3", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3%2B20230507-x86_64-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.11.3", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3%2B20230507-x86_64-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.11.3", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3%2B20230507-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.11.3", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3%2B20230507-x86_64_v2-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.11.3", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3%2B20230507-x86_64_v2-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.11.3", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3%2B20230507-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.11.3", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3%2B20230507-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.11.3", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3%2B20230507-x86_64_v2-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.11.3", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3%2B20230507-x86_64_v2-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.11.3", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3%2B20230507-x86_64_v2-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.11.3", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3%2B20230507-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.11.3", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3%2B20230507-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.11.3", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3%2B20230507-x86_64_v3-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.11.3", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3%2B20230507-x86_64_v3-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.11.3", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3%2B20230507-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.11.3", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3%2B20230507-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.11.3", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3%2B20230507-x86_64_v3-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.11.3", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3%2B20230507-x86_64_v3-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.11.3", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3%2B20230507-x86_64_v3-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.11.3", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3%2B20230507-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.11.3", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3%2B20230507-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.11.3", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3%2B20230507-x86_64_v4-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.11.3", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3%2B20230507-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.11.3", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3%2B20230507-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.11.3", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3%2B20230507-x86_64_v4-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.11.3", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3%2B20230507-x86_64_v4-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.11.3", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3%2B20230507-x86_64_v4-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.11.3", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.11.3%2B20230507-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.8.16", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.8.16%2B20230507-aarch64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.8.16", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.8.16%2B20230507-aarch64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.8.16", "apple", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.8.16%2B20230507-aarch64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.8.16", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.8.16%2B20230507-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.8.16", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.8.16%2B20230507-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.8.16", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.8.16%2B20230507-aarch64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.8.16", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.8.16%2B20230507-aarch64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.8.16", "linux", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.8.16%2B20230507-aarch64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.8.16", "linux", "aarch64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.8.16%2B20230507-aarch64-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.8.16", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.8.16%2B20230507-i686-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.8.16", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.8.16%2B20230507-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.8.16", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.8.16%2B20230507-i686-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.8.16", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.8.16%2B20230507-i686-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.8.16", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.8.16%2B20230507-i686-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.8.16", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.8.16%2B20230507-i686-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.8.16", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.8.16%2B20230507-i686-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.8.16", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.8.16%2B20230507-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.8.16", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.8.16%2B20230507-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.8.16", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.8.16%2B20230507-x86_64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.8.16", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.8.16%2B20230507-x86_64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.8.16", "apple", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.8.16%2B20230507-x86_64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.8.16", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.8.16%2B20230507-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.8.16", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.8.16%2B20230507-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.8.16", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.8.16%2B20230507-x86_64-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.8.16", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.8.16%2B20230507-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.8.16", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.8.16%2B20230507-x86_64-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.8.16", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.8.16%2B20230507-x86_64-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.8.16", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.8.16%2B20230507-x86_64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.8.16", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.8.16%2B20230507-x86_64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.8.16", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.8.16%2B20230507-x86_64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.8.16", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.8.16%2B20230507-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.8.16", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.8.16%2B20230507-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.8.16", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.8.16%2B20230507-x86_64-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.8.16", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.8.16%2B20230507-x86_64-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.8.16", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.8.16%2B20230507-x86_64-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.8.16", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.8.16%2B20230507-x86_64-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.16", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.9.16%2B20230507-aarch64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.9.16", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.9.16%2B20230507-aarch64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.9.16", "apple", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.9.16%2B20230507-aarch64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.9.16", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.9.16%2B20230507-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.16", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.9.16%2B20230507-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.9.16%2B20230507-aarch64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.9.16%2B20230507-aarch64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.16", "linux", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.9.16%2B20230507-aarch64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "aarch64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.9.16%2B20230507-aarch64-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.9.16", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.9.16%2B20230507-i686-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.9.16", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.9.16%2B20230507-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.9.16", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.9.16%2B20230507-i686-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.9.16", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.9.16%2B20230507-i686-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.9.16%2B20230507-i686-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.9.16%2B20230507-i686-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.16", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.9.16%2B20230507-i686-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.9.16%2B20230507-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.9.16%2B20230507-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.9.16%2B20230507-ppc64le-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.9.16%2B20230507-ppc64le-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.16", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.9.16%2B20230507-ppc64le-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.9.16%2B20230507-ppc64le-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.9.16", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.9.16%2B20230507-x86_64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.9.16", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.9.16%2B20230507-x86_64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.9.16", "apple", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.9.16%2B20230507-x86_64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.9.16", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.9.16%2B20230507-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.16", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.9.16%2B20230507-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.9.16", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.9.16%2B20230507-x86_64-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.9.16", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.9.16%2B20230507-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.9.16", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.9.16%2B20230507-x86_64-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.9.16", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.9.16%2B20230507-x86_64-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.9.16%2B20230507-x86_64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.9.16%2B20230507-x86_64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.9.16%2B20230507-x86_64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.9.16%2B20230507-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.9.16%2B20230507-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.9.16%2B20230507-x86_64-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.9.16%2B20230507-x86_64-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.9.16%2B20230507-x86_64-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.9.16%2B20230507-x86_64-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.9.16%2B20230507-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.9.16%2B20230507-x86_64_v2-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.9.16%2B20230507-x86_64_v2-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.9.16%2B20230507-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.9.16%2B20230507-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.9.16%2B20230507-x86_64_v2-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.9.16%2B20230507-x86_64_v2-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.9.16%2B20230507-x86_64_v2-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.9.16%2B20230507-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.9.16%2B20230507-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.9.16%2B20230507-x86_64_v3-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.9.16%2B20230507-x86_64_v3-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.9.16%2B20230507-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.9.16%2B20230507-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.9.16%2B20230507-x86_64_v3-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.9.16%2B20230507-x86_64_v3-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.9.16%2B20230507-x86_64_v3-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.9.16%2B20230507-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.9.16%2B20230507-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.9.16%2B20230507-x86_64_v4-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.9.16%2B20230507-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.9.16%2B20230507-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.9.16%2B20230507-x86_64_v4-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.9.16%2B20230507-x86_64_v4-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.9.16%2B20230507-x86_64_v4-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.9.16%2B20230507-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230507/SHA256SUMS"), + Release::new("cpython", "3.10.9", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9%2B20230116-aarch64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.10.9", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9%2B20230116-aarch64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.10.9", "apple", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9%2B20230116-aarch64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.10.9", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9%2B20230116-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.9", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9%2B20230116-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9%2B20230116-aarch64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9%2B20230116-aarch64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.9", "linux", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9%2B20230116-aarch64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "aarch64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9%2B20230116-aarch64-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.10.9", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9%2B20230116-i686-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.10.9", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9%2B20230116-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.10.9", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9%2B20230116-i686-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.10.9", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9%2B20230116-i686-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9%2B20230116-i686-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9%2B20230116-i686-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.9", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9%2B20230116-i686-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9%2B20230116-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9%2B20230116-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.10.9", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9%2B20230116-x86_64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.10.9", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9%2B20230116-x86_64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.10.9", "apple", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9%2B20230116-x86_64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.10.9", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9%2B20230116-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.9", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9%2B20230116-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.10.9", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9%2B20230116-x86_64-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.10.9", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9%2B20230116-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.10.9", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9%2B20230116-x86_64-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.10.9", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9%2B20230116-x86_64-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9%2B20230116-x86_64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9%2B20230116-x86_64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9%2B20230116-x86_64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9%2B20230116-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9%2B20230116-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9%2B20230116-x86_64-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9%2B20230116-x86_64-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9%2B20230116-x86_64-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9%2B20230116-x86_64-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9%2B20230116-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9%2B20230116-x86_64_v2-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9%2B20230116-x86_64_v2-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9%2B20230116-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9%2B20230116-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9%2B20230116-x86_64_v2-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9%2B20230116-x86_64_v2-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9%2B20230116-x86_64_v2-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9%2B20230116-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9%2B20230116-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9%2B20230116-x86_64_v3-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9%2B20230116-x86_64_v3-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9%2B20230116-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9%2B20230116-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9%2B20230116-x86_64_v3-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9%2B20230116-x86_64_v3-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9%2B20230116-x86_64_v3-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9%2B20230116-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9%2B20230116-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9%2B20230116-x86_64_v4-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9%2B20230116-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9%2B20230116-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9%2B20230116-x86_64_v4-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9%2B20230116-x86_64_v4-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9%2B20230116-x86_64_v4-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.10.9%2B20230116-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.11.1", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1%2B20230116-aarch64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.11.1", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1%2B20230116-aarch64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.11.1", "apple", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1%2B20230116-aarch64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.11.1", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1%2B20230116-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.11.1", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1%2B20230116-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.11.1", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1%2B20230116-aarch64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.11.1", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1%2B20230116-aarch64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.11.1", "linux", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1%2B20230116-aarch64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.11.1", "linux", "aarch64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1%2B20230116-aarch64-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.11.1", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1%2B20230116-i686-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.11.1", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1%2B20230116-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.11.1", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1%2B20230116-i686-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.11.1", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1%2B20230116-i686-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.11.1", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1%2B20230116-i686-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.11.1", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1%2B20230116-i686-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.11.1", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1%2B20230116-i686-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.11.1", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1%2B20230116-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.11.1", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1%2B20230116-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.11.1", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1%2B20230116-x86_64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.11.1", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1%2B20230116-x86_64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.11.1", "apple", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1%2B20230116-x86_64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.11.1", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1%2B20230116-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.11.1", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1%2B20230116-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.11.1", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1%2B20230116-x86_64-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.11.1", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1%2B20230116-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.11.1", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1%2B20230116-x86_64-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.11.1", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1%2B20230116-x86_64-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.11.1", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1%2B20230116-x86_64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.11.1", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1%2B20230116-x86_64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.11.1", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1%2B20230116-x86_64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.11.1", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1%2B20230116-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.11.1", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1%2B20230116-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.11.1", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1%2B20230116-x86_64-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.11.1", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1%2B20230116-x86_64-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.11.1", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1%2B20230116-x86_64-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.11.1", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1%2B20230116-x86_64-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.11.1", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1%2B20230116-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.11.1", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1%2B20230116-x86_64_v2-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.11.1", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1%2B20230116-x86_64_v2-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.11.1", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1%2B20230116-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.11.1", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1%2B20230116-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.11.1", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1%2B20230116-x86_64_v2-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.11.1", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1%2B20230116-x86_64_v2-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.11.1", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1%2B20230116-x86_64_v2-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.11.1", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1%2B20230116-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.11.1", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1%2B20230116-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.11.1", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1%2B20230116-x86_64_v3-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.11.1", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1%2B20230116-x86_64_v3-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.11.1", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1%2B20230116-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.11.1", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1%2B20230116-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.11.1", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1%2B20230116-x86_64_v3-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.11.1", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1%2B20230116-x86_64_v3-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.11.1", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1%2B20230116-x86_64_v3-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.11.1", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1%2B20230116-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.11.1", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1%2B20230116-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.11.1", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1%2B20230116-x86_64_v4-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.11.1", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1%2B20230116-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.11.1", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1%2B20230116-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.11.1", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1%2B20230116-x86_64_v4-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.11.1", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1%2B20230116-x86_64_v4-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.11.1", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1%2B20230116-x86_64_v4-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.11.1", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.11.1%2B20230116-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.8.16", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.8.16%2B20230116-aarch64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.8.16", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.8.16%2B20230116-aarch64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.8.16", "apple", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.8.16%2B20230116-aarch64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.8.16", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.8.16%2B20230116-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.8.16", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.8.16%2B20230116-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.8.16", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.8.16%2B20230116-aarch64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.8.16", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.8.16%2B20230116-aarch64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.8.16", "linux", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.8.16%2B20230116-aarch64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.8.16", "linux", "aarch64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.8.16%2B20230116-aarch64-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.8.16", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.8.16%2B20230116-i686-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.8.16", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.8.16%2B20230116-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.8.16", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.8.16%2B20230116-i686-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.8.16", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.8.16%2B20230116-i686-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.8.16", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.8.16%2B20230116-i686-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.8.16", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.8.16%2B20230116-i686-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.8.16", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.8.16%2B20230116-i686-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.8.16", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.8.16%2B20230116-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.8.16", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.8.16%2B20230116-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.8.16", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.8.16%2B20230116-x86_64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.8.16", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.8.16%2B20230116-x86_64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.8.16", "apple", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.8.16%2B20230116-x86_64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.8.16", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.8.16%2B20230116-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.8.16", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.8.16%2B20230116-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.8.16", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.8.16%2B20230116-x86_64-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.8.16", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.8.16%2B20230116-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.8.16", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.8.16%2B20230116-x86_64-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.8.16", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.8.16%2B20230116-x86_64-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.8.16", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.8.16%2B20230116-x86_64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.8.16", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.8.16%2B20230116-x86_64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.8.16", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.8.16%2B20230116-x86_64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.8.16", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.8.16%2B20230116-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.8.16", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.8.16%2B20230116-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.8.16", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.8.16%2B20230116-x86_64-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.8.16", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.8.16%2B20230116-x86_64-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.8.16", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.8.16%2B20230116-x86_64-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.8.16", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.8.16%2B20230116-x86_64-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.16", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.9.16%2B20230116-aarch64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.9.16", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.9.16%2B20230116-aarch64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.9.16", "apple", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.9.16%2B20230116-aarch64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.9.16", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.9.16%2B20230116-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.16", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.9.16%2B20230116-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.9.16%2B20230116-aarch64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.9.16%2B20230116-aarch64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.16", "linux", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.9.16%2B20230116-aarch64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "aarch64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.9.16%2B20230116-aarch64-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.9.16", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.9.16%2B20230116-i686-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.9.16", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.9.16%2B20230116-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.9.16", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.9.16%2B20230116-i686-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.9.16", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.9.16%2B20230116-i686-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.9.16%2B20230116-i686-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.9.16%2B20230116-i686-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.16", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.9.16%2B20230116-i686-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.9.16%2B20230116-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.9.16%2B20230116-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.9.16", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.9.16%2B20230116-x86_64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.9.16", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.9.16%2B20230116-x86_64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.9.16", "apple", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.9.16%2B20230116-x86_64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.9.16", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.9.16%2B20230116-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.16", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.9.16%2B20230116-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.9.16", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.9.16%2B20230116-x86_64-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.9.16", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.9.16%2B20230116-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.9.16", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.9.16%2B20230116-x86_64-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.9.16", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.9.16%2B20230116-x86_64-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.9.16%2B20230116-x86_64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.9.16%2B20230116-x86_64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.9.16%2B20230116-x86_64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.9.16%2B20230116-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.9.16%2B20230116-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.9.16%2B20230116-x86_64-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.9.16%2B20230116-x86_64-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.9.16%2B20230116-x86_64-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.9.16%2B20230116-x86_64-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.9.16%2B20230116-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.9.16%2B20230116-x86_64_v2-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.9.16%2B20230116-x86_64_v2-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.9.16%2B20230116-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.9.16%2B20230116-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.9.16%2B20230116-x86_64_v2-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.9.16%2B20230116-x86_64_v2-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.9.16%2B20230116-x86_64_v2-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.9.16%2B20230116-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.9.16%2B20230116-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.9.16%2B20230116-x86_64_v3-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.9.16%2B20230116-x86_64_v3-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.9.16%2B20230116-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.9.16%2B20230116-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.9.16%2B20230116-x86_64_v3-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.9.16%2B20230116-x86_64_v3-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.9.16%2B20230116-x86_64_v3-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.9.16%2B20230116-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.9.16%2B20230116-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.9.16%2B20230116-x86_64_v4-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.9.16%2B20230116-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.9.16%2B20230116-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.9.16%2B20230116-x86_64_v4-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.9.16%2B20230116-x86_64_v4-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.9.16%2B20230116-x86_64_v4-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/cpython-3.9.16%2B20230116-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20230116/SHA256SUMS"), + Release::new("cpython", "3.10.9", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.10.9%2B20221220-aarch64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.10.9", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.10.9%2B20221220-aarch64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.10.9", "apple", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.10.9%2B20221220-aarch64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.10.9", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.10.9%2B20221220-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.9", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.10.9%2B20221220-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.10.9%2B20221220-aarch64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.10.9%2B20221220-aarch64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.9", "linux", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.10.9%2B20221220-aarch64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "aarch64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.10.9%2B20221220-aarch64-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.10.9", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.10.9%2B20221220-i686-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.10.9", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.10.9%2B20221220-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.10.9", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.10.9%2B20221220-i686-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.10.9", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.10.9%2B20221220-i686-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.10.9%2B20221220-i686-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.10.9%2B20221220-i686-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.9", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.10.9%2B20221220-i686-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.10.9%2B20221220-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.10.9%2B20221220-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.10.9", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.10.9%2B20221220-x86_64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.10.9", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.10.9%2B20221220-x86_64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.10.9", "apple", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.10.9%2B20221220-x86_64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.10.9", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.10.9%2B20221220-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.9", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.10.9%2B20221220-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.10.9", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.10.9%2B20221220-x86_64-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.10.9", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.10.9%2B20221220-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.10.9", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.10.9%2B20221220-x86_64-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.10.9", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.10.9%2B20221220-x86_64-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.10.9%2B20221220-x86_64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.10.9%2B20221220-x86_64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.10.9%2B20221220-x86_64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.10.9%2B20221220-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.10.9%2B20221220-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.10.9%2B20221220-x86_64-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.10.9%2B20221220-x86_64-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.10.9%2B20221220-x86_64-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.10.9%2B20221220-x86_64-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.10.9%2B20221220-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.10.9%2B20221220-x86_64_v2-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.10.9%2B20221220-x86_64_v2-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.10.9%2B20221220-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.10.9%2B20221220-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.10.9%2B20221220-x86_64_v2-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.10.9%2B20221220-x86_64_v2-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.10.9%2B20221220-x86_64_v2-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.10.9%2B20221220-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.10.9%2B20221220-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.10.9%2B20221220-x86_64_v3-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.10.9%2B20221220-x86_64_v3-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.10.9%2B20221220-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.10.9%2B20221220-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.10.9%2B20221220-x86_64_v3-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.10.9%2B20221220-x86_64_v3-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.10.9%2B20221220-x86_64_v3-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.10.9%2B20221220-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.10.9%2B20221220-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.10.9%2B20221220-x86_64_v4-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.10.9%2B20221220-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.10.9%2B20221220-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.10.9%2B20221220-x86_64_v4-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.10.9%2B20221220-x86_64_v4-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.10.9%2B20221220-x86_64_v4-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.10.9", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.10.9%2B20221220-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.8.16", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.8.16%2B20221220-aarch64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.8.16", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.8.16%2B20221220-aarch64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.8.16", "apple", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.8.16%2B20221220-aarch64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.8.16", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.8.16%2B20221220-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.8.16", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.8.16%2B20221220-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.8.16", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.8.16%2B20221220-aarch64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.8.16", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.8.16%2B20221220-aarch64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.8.16", "linux", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.8.16%2B20221220-aarch64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.8.16", "linux", "aarch64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.8.16%2B20221220-aarch64-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.8.16", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.8.16%2B20221220-i686-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.8.16", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.8.16%2B20221220-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.8.16", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.8.16%2B20221220-i686-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.8.16", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.8.16%2B20221220-i686-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.8.16", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.8.16%2B20221220-i686-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.8.16", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.8.16%2B20221220-i686-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.8.16", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.8.16%2B20221220-i686-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.8.16", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.8.16%2B20221220-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.8.16", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.8.16%2B20221220-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.8.16", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.8.16%2B20221220-x86_64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.8.16", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.8.16%2B20221220-x86_64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.8.16", "apple", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.8.16%2B20221220-x86_64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.8.16", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.8.16%2B20221220-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.8.16", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.8.16%2B20221220-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.8.16", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.8.16%2B20221220-x86_64-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.8.16", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.8.16%2B20221220-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.8.16", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.8.16%2B20221220-x86_64-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.8.16", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.8.16%2B20221220-x86_64-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.8.16", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.8.16%2B20221220-x86_64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.8.16", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.8.16%2B20221220-x86_64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.8.16", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.8.16%2B20221220-x86_64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.8.16", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.8.16%2B20221220-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.8.16", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.8.16%2B20221220-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.8.16", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.8.16%2B20221220-x86_64-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.8.16", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.8.16%2B20221220-x86_64-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.8.16", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.8.16%2B20221220-x86_64-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.8.16", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.8.16%2B20221220-x86_64-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.16", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.9.16%2B20221220-aarch64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.9.16", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.9.16%2B20221220-aarch64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.9.16", "apple", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.9.16%2B20221220-aarch64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.9.16", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.9.16%2B20221220-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.16", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.9.16%2B20221220-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.9.16%2B20221220-aarch64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.9.16%2B20221220-aarch64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.16", "linux", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.9.16%2B20221220-aarch64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "aarch64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.9.16%2B20221220-aarch64-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.9.16", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.9.16%2B20221220-i686-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.9.16", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.9.16%2B20221220-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.9.16", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.9.16%2B20221220-i686-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.9.16", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.9.16%2B20221220-i686-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.9.16%2B20221220-i686-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.9.16%2B20221220-i686-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.16", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.9.16%2B20221220-i686-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.9.16%2B20221220-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.9.16%2B20221220-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.9.16", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.9.16%2B20221220-x86_64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.9.16", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.9.16%2B20221220-x86_64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.9.16", "apple", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.9.16%2B20221220-x86_64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.9.16", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.9.16%2B20221220-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.16", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.9.16%2B20221220-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.9.16", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.9.16%2B20221220-x86_64-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.9.16", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.9.16%2B20221220-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.9.16", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.9.16%2B20221220-x86_64-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.9.16", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.9.16%2B20221220-x86_64-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.9.16%2B20221220-x86_64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.9.16%2B20221220-x86_64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.9.16%2B20221220-x86_64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.9.16%2B20221220-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.9.16%2B20221220-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.9.16%2B20221220-x86_64-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.9.16%2B20221220-x86_64-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.9.16%2B20221220-x86_64-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.9.16%2B20221220-x86_64-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.9.16%2B20221220-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.9.16%2B20221220-x86_64_v2-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.9.16%2B20221220-x86_64_v2-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.9.16%2B20221220-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.9.16%2B20221220-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.9.16%2B20221220-x86_64_v2-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.9.16%2B20221220-x86_64_v2-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.9.16%2B20221220-x86_64_v2-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.9.16%2B20221220-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.9.16%2B20221220-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.9.16%2B20221220-x86_64_v3-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.9.16%2B20221220-x86_64_v3-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.9.16%2B20221220-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.9.16%2B20221220-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.9.16%2B20221220-x86_64_v3-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.9.16%2B20221220-x86_64_v3-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.9.16%2B20221220-x86_64_v3-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.9.16%2B20221220-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.9.16%2B20221220-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.9.16%2B20221220-x86_64_v4-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.9.16%2B20221220-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.9.16%2B20221220-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.9.16%2B20221220-x86_64_v4-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.9.16%2B20221220-x86_64_v4-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.9.16%2B20221220-x86_64_v4-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/cpython-3.9.16%2B20221220-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.16", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221220/SHA256SUMS"), + Release::new("cpython", "3.10.8", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8%2B20221106-aarch64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.10.8", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8%2B20221106-aarch64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.10.8", "apple", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8%2B20221106-aarch64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.10.8", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8%2B20221106-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.8", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8%2B20221106-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.10.8", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8%2B20221106-aarch64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.8", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8%2B20221106-aarch64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.8", "linux", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8%2B20221106-aarch64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.8", "linux", "aarch64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8%2B20221106-aarch64-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.10.8", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8%2B20221106-i686-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.10.8", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8%2B20221106-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.10.8", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8%2B20221106-i686-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.10.8", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8%2B20221106-i686-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.10.8", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8%2B20221106-i686-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.8", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8%2B20221106-i686-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.8", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8%2B20221106-i686-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.8", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8%2B20221106-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.8", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8%2B20221106-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.10.8", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8%2B20221106-x86_64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.10.8", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8%2B20221106-x86_64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.10.8", "apple", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8%2B20221106-x86_64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.10.8", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8%2B20221106-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.8", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8%2B20221106-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.10.8", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8%2B20221106-x86_64-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.10.8", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8%2B20221106-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.10.8", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8%2B20221106-x86_64-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.10.8", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8%2B20221106-x86_64-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.10.8", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8%2B20221106-x86_64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.8", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8%2B20221106-x86_64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.8", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8%2B20221106-x86_64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.8", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8%2B20221106-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.8", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8%2B20221106-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.10.8", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8%2B20221106-x86_64-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.10.8", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8%2B20221106-x86_64-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.10.8", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8%2B20221106-x86_64-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.10.8", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8%2B20221106-x86_64-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.10.8", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8%2B20221106-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.8", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8%2B20221106-x86_64_v2-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.8", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8%2B20221106-x86_64_v2-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.8", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8%2B20221106-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.8", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8%2B20221106-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.10.8", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8%2B20221106-x86_64_v2-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.10.8", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8%2B20221106-x86_64_v2-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.10.8", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8%2B20221106-x86_64_v2-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.10.8", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8%2B20221106-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.10.8", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8%2B20221106-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.8", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8%2B20221106-x86_64_v3-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.8", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8%2B20221106-x86_64_v3-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.8", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8%2B20221106-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.8", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8%2B20221106-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.10.8", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8%2B20221106-x86_64_v3-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.10.8", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8%2B20221106-x86_64_v3-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.10.8", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8%2B20221106-x86_64_v3-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.10.8", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8%2B20221106-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.10.8", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8%2B20221106-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.8", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8%2B20221106-x86_64_v4-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.8", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8%2B20221106-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.8", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8%2B20221106-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.10.8", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8%2B20221106-x86_64_v4-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.10.8", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8%2B20221106-x86_64_v4-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.10.8", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8%2B20221106-x86_64_v4-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.10.8", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.10.8%2B20221106-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.8.15", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.8.15%2B20221106-aarch64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.8.15", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.8.15%2B20221106-aarch64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.8.15", "apple", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.8.15%2B20221106-aarch64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.8.15", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.8.15%2B20221106-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.8.15", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.8.15%2B20221106-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.8.15", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.8.15%2B20221106-aarch64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.8.15", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.8.15%2B20221106-aarch64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.8.15", "linux", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.8.15%2B20221106-aarch64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.8.15", "linux", "aarch64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.8.15%2B20221106-aarch64-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.8.15", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.8.15%2B20221106-i686-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.8.15", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.8.15%2B20221106-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.8.15", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.8.15%2B20221106-i686-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.8.15", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.8.15%2B20221106-i686-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.8.15", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.8.15%2B20221106-i686-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.8.15", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.8.15%2B20221106-i686-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.8.15", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.8.15%2B20221106-i686-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.8.15", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.8.15%2B20221106-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.8.15", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.8.15%2B20221106-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.8.15", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.8.15%2B20221106-x86_64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.8.15", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.8.15%2B20221106-x86_64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.8.15", "apple", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.8.15%2B20221106-x86_64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.8.15", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.8.15%2B20221106-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.8.15", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.8.15%2B20221106-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.8.15", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.8.15%2B20221106-x86_64-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.8.15", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.8.15%2B20221106-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.8.15", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.8.15%2B20221106-x86_64-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.8.15", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.8.15%2B20221106-x86_64-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.8.15", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.8.15%2B20221106-x86_64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.8.15", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.8.15%2B20221106-x86_64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.8.15", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.8.15%2B20221106-x86_64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.8.15", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.8.15%2B20221106-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.8.15", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.8.15%2B20221106-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.8.15", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.8.15%2B20221106-x86_64-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.8.15", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.8.15%2B20221106-x86_64-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.8.15", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.8.15%2B20221106-x86_64-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.8.15", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.8.15%2B20221106-x86_64-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.15", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.9.15%2B20221106-aarch64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.9.15", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.9.15%2B20221106-aarch64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.9.15", "apple", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.9.15%2B20221106-aarch64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.9.15", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.9.15%2B20221106-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.15", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.9.15%2B20221106-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.9.15", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.9.15%2B20221106-aarch64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.15", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.9.15%2B20221106-aarch64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.15", "linux", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.9.15%2B20221106-aarch64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.15", "linux", "aarch64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.9.15%2B20221106-aarch64-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.9.15", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.9.15%2B20221106-i686-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.9.15", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.9.15%2B20221106-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.9.15", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.9.15%2B20221106-i686-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.9.15", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.9.15%2B20221106-i686-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.9.15", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.9.15%2B20221106-i686-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.15", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.9.15%2B20221106-i686-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.15", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.9.15%2B20221106-i686-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.15", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.9.15%2B20221106-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.15", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.9.15%2B20221106-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.9.15", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.9.15%2B20221106-x86_64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.9.15", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.9.15%2B20221106-x86_64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.9.15", "apple", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.9.15%2B20221106-x86_64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.9.15", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.9.15%2B20221106-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.15", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.9.15%2B20221106-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.9.15", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.9.15%2B20221106-x86_64-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.9.15", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.9.15%2B20221106-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.9.15", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.9.15%2B20221106-x86_64-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.9.15", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.9.15%2B20221106-x86_64-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.9.15", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.9.15%2B20221106-x86_64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.15", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.9.15%2B20221106-x86_64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.15", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.9.15%2B20221106-x86_64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.15", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.9.15%2B20221106-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.15", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.9.15%2B20221106-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.9.15", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.9.15%2B20221106-x86_64-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.9.15", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.9.15%2B20221106-x86_64-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.9.15", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.9.15%2B20221106-x86_64-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.9.15", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.9.15%2B20221106-x86_64-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.15", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.9.15%2B20221106-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.15", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.9.15%2B20221106-x86_64_v2-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.15", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.9.15%2B20221106-x86_64_v2-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.15", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.9.15%2B20221106-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.15", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.9.15%2B20221106-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.9.15", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.9.15%2B20221106-x86_64_v2-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.9.15", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.9.15%2B20221106-x86_64_v2-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.9.15", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.9.15%2B20221106-x86_64_v2-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.9.15", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.9.15%2B20221106-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.15", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.9.15%2B20221106-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.15", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.9.15%2B20221106-x86_64_v3-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.15", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.9.15%2B20221106-x86_64_v3-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.15", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.9.15%2B20221106-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.15", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.9.15%2B20221106-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.9.15", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.9.15%2B20221106-x86_64_v3-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.9.15", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.9.15%2B20221106-x86_64_v3-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.9.15", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.9.15%2B20221106-x86_64_v3-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.9.15", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.9.15%2B20221106-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.15", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.9.15%2B20221106-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.15", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.9.15%2B20221106-x86_64_v4-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.15", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.9.15%2B20221106-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.15", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.9.15%2B20221106-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.9.15", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.9.15%2B20221106-x86_64_v4-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.9.15", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.9.15%2B20221106-x86_64_v4-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.9.15", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.9.15%2B20221106-x86_64_v4-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.9.15", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/cpython-3.9.15%2B20221106-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.15", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221106/SHA256SUMS"), + Release::new("cpython", "3.10.7", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.10.7%2B20221002-aarch64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.10.7", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.10.7%2B20221002-aarch64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.10.7", "apple", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.10.7%2B20221002-aarch64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.10.7", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.10.7%2B20221002-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.7", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.10.7%2B20221002-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.10.7", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.10.7%2B20221002-aarch64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.7", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.10.7%2B20221002-aarch64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.7", "linux", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.10.7%2B20221002-aarch64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.7", "linux", "aarch64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.10.7%2B20221002-aarch64-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.10.7", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.10.7%2B20221002-i686-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.10.7", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.10.7%2B20221002-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.10.7", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.10.7%2B20221002-i686-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.10.7", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.10.7%2B20221002-i686-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.10.7", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.10.7%2B20221002-i686-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.7", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.10.7%2B20221002-i686-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.7", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.10.7%2B20221002-i686-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.7", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.10.7%2B20221002-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.7", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.10.7%2B20221002-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.10.7", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.10.7%2B20221002-x86_64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.10.7", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.10.7%2B20221002-x86_64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.10.7", "apple", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.10.7%2B20221002-x86_64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.10.7", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.10.7%2B20221002-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.7", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.10.7%2B20221002-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.10.7", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.10.7%2B20221002-x86_64-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.10.7", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.10.7%2B20221002-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.10.7", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.10.7%2B20221002-x86_64-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.10.7", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.10.7%2B20221002-x86_64-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.10.7", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.10.7%2B20221002-x86_64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.7", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.10.7%2B20221002-x86_64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.7", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.10.7%2B20221002-x86_64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.7", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.10.7%2B20221002-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.7", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.10.7%2B20221002-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.10.7", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.10.7%2B20221002-x86_64-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.10.7", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.10.7%2B20221002-x86_64-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.10.7", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.10.7%2B20221002-x86_64-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.10.7", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.10.7%2B20221002-x86_64-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.10.7", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.10.7%2B20221002-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.7", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.10.7%2B20221002-x86_64_v2-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.7", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.10.7%2B20221002-x86_64_v2-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.7", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.10.7%2B20221002-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.7", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.10.7%2B20221002-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.10.7", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.10.7%2B20221002-x86_64_v2-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.10.7", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.10.7%2B20221002-x86_64_v2-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.10.7", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.10.7%2B20221002-x86_64_v2-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.10.7", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.10.7%2B20221002-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.10.7", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.10.7%2B20221002-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.7", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.10.7%2B20221002-x86_64_v3-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.7", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.10.7%2B20221002-x86_64_v3-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.7", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.10.7%2B20221002-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.7", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.10.7%2B20221002-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.10.7", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.10.7%2B20221002-x86_64_v3-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.10.7", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.10.7%2B20221002-x86_64_v3-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.10.7", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.10.7%2B20221002-x86_64_v3-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.10.7", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.10.7%2B20221002-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.10.7", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.10.7%2B20221002-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.7", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.10.7%2B20221002-x86_64_v4-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.7", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.10.7%2B20221002-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.7", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.10.7%2B20221002-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.10.7", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.10.7%2B20221002-x86_64_v4-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.10.7", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.10.7%2B20221002-x86_64_v4-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.10.7", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.10.7%2B20221002-x86_64_v4-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.10.7", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.10.7%2B20221002-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.8.14", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.8.14%2B20221002-aarch64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.8.14", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.8.14%2B20221002-aarch64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.8.14", "apple", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.8.14%2B20221002-aarch64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.8.14", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.8.14%2B20221002-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.8.14", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.8.14%2B20221002-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.8.14", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.8.14%2B20221002-aarch64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.8.14", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.8.14%2B20221002-aarch64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.8.14", "linux", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.8.14%2B20221002-aarch64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.8.14", "linux", "aarch64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.8.14%2B20221002-aarch64-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.8.14", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.8.14%2B20221002-i686-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.8.14", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.8.14%2B20221002-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.8.14", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.8.14%2B20221002-i686-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.8.14", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.8.14%2B20221002-i686-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.8.14", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.8.14%2B20221002-i686-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.8.14", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.8.14%2B20221002-i686-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.8.14", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.8.14%2B20221002-i686-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.8.14", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.8.14%2B20221002-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.8.14", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.8.14%2B20221002-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.8.14", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.8.14%2B20221002-x86_64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.8.14", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.8.14%2B20221002-x86_64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.8.14", "apple", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.8.14%2B20221002-x86_64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.8.14", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.8.14%2B20221002-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.8.14", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.8.14%2B20221002-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.8.14", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.8.14%2B20221002-x86_64-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.8.14", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.8.14%2B20221002-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.8.14", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.8.14%2B20221002-x86_64-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.8.14", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.8.14%2B20221002-x86_64-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.8.14", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.8.14%2B20221002-x86_64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.8.14", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.8.14%2B20221002-x86_64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.8.14", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.8.14%2B20221002-x86_64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.8.14", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.8.14%2B20221002-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.8.14", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.8.14%2B20221002-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.8.14", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.8.14%2B20221002-x86_64-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.8.14", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.8.14%2B20221002-x86_64-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.8.14", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.8.14%2B20221002-x86_64-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.8.14", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.8.14%2B20221002-x86_64-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.14", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.9.14%2B20221002-aarch64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.9.14", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.9.14%2B20221002-aarch64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.9.14", "apple", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.9.14%2B20221002-aarch64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.9.14", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.9.14%2B20221002-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.14", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.9.14%2B20221002-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.9.14", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.9.14%2B20221002-aarch64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.14", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.9.14%2B20221002-aarch64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.14", "linux", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.9.14%2B20221002-aarch64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.14", "linux", "aarch64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.9.14%2B20221002-aarch64-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.9.14", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.9.14%2B20221002-i686-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.9.14", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.9.14%2B20221002-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.9.14", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.9.14%2B20221002-i686-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.9.14", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.9.14%2B20221002-i686-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.9.14", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.9.14%2B20221002-i686-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.14", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.9.14%2B20221002-i686-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.14", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.9.14%2B20221002-i686-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.14", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.9.14%2B20221002-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.14", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.9.14%2B20221002-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.9.14", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.9.14%2B20221002-x86_64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.9.14", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.9.14%2B20221002-x86_64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.9.14", "apple", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.9.14%2B20221002-x86_64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.9.14", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.9.14%2B20221002-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.14", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.9.14%2B20221002-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.9.14", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.9.14%2B20221002-x86_64-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.9.14", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.9.14%2B20221002-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.9.14", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.9.14%2B20221002-x86_64-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.9.14", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.9.14%2B20221002-x86_64-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.9.14", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.9.14%2B20221002-x86_64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.14", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.9.14%2B20221002-x86_64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.14", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.9.14%2B20221002-x86_64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.14", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.9.14%2B20221002-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.14", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.9.14%2B20221002-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.9.14", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.9.14%2B20221002-x86_64-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.9.14", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.9.14%2B20221002-x86_64-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.9.14", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.9.14%2B20221002-x86_64-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.9.14", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.9.14%2B20221002-x86_64-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.14", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.9.14%2B20221002-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.14", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.9.14%2B20221002-x86_64_v2-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.14", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.9.14%2B20221002-x86_64_v2-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.14", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.9.14%2B20221002-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.14", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.9.14%2B20221002-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.9.14", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.9.14%2B20221002-x86_64_v2-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.9.14", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.9.14%2B20221002-x86_64_v2-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.9.14", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.9.14%2B20221002-x86_64_v2-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.9.14", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.9.14%2B20221002-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.14", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.9.14%2B20221002-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.14", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.9.14%2B20221002-x86_64_v3-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.14", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.9.14%2B20221002-x86_64_v3-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.14", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.9.14%2B20221002-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.14", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.9.14%2B20221002-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.9.14", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.9.14%2B20221002-x86_64_v3-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.9.14", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.9.14%2B20221002-x86_64_v3-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.9.14", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.9.14%2B20221002-x86_64_v3-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.9.14", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.9.14%2B20221002-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.14", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.9.14%2B20221002-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.14", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.9.14%2B20221002-x86_64_v4-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.14", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.9.14%2B20221002-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.14", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.9.14%2B20221002-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.9.14", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.9.14%2B20221002-x86_64_v4-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.9.14", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.9.14%2B20221002-x86_64_v4-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.9.14", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.9.14%2B20221002-x86_64_v4-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.9.14", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/cpython-3.9.14%2B20221002-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.14", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20221002/SHA256SUMS"), + Release::new("cpython", "3.10.6", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6%2B20220802-aarch64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.10.6", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6%2B20220802-aarch64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.10.6", "apple", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6%2B20220802-aarch64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.10.6", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6%2B20220802-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.6", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6%2B20220802-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.10.6", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6%2B20220802-aarch64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.6", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6%2B20220802-aarch64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.6", "linux", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6%2B20220802-aarch64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.6", "linux", "aarch64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6%2B20220802-aarch64-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.10.6", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6%2B20220802-i686-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.10.6", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6%2B20220802-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.10.6", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6%2B20220802-i686-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.10.6", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6%2B20220802-i686-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.10.6", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6%2B20220802-i686-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.6", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6%2B20220802-i686-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.6", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6%2B20220802-i686-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.6", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6%2B20220802-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.6", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6%2B20220802-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.10.6", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6%2B20220802-x86_64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.10.6", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6%2B20220802-x86_64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.10.6", "apple", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6%2B20220802-x86_64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.10.6", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6%2B20220802-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.6", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6%2B20220802-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.10.6", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6%2B20220802-x86_64-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.10.6", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6%2B20220802-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.10.6", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6%2B20220802-x86_64-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.10.6", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6%2B20220802-x86_64-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.10.6", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6%2B20220802-x86_64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.6", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6%2B20220802-x86_64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.6", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6%2B20220802-x86_64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.6", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6%2B20220802-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.6", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6%2B20220802-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.10.6", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6%2B20220802-x86_64-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.10.6", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6%2B20220802-x86_64-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.10.6", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6%2B20220802-x86_64-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.10.6", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6%2B20220802-x86_64-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.10.6", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6%2B20220802-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.6", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6%2B20220802-x86_64_v2-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.6", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6%2B20220802-x86_64_v2-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.6", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6%2B20220802-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.6", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6%2B20220802-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.10.6", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6%2B20220802-x86_64_v2-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.10.6", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6%2B20220802-x86_64_v2-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.10.6", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6%2B20220802-x86_64_v2-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.10.6", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6%2B20220802-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.10.6", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6%2B20220802-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.6", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6%2B20220802-x86_64_v3-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.6", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6%2B20220802-x86_64_v3-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.6", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6%2B20220802-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.6", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6%2B20220802-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.10.6", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6%2B20220802-x86_64_v3-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.10.6", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6%2B20220802-x86_64_v3-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.10.6", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6%2B20220802-x86_64_v3-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.10.6", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6%2B20220802-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.10.6", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6%2B20220802-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.6", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6%2B20220802-x86_64_v4-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.6", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6%2B20220802-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.6", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6%2B20220802-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.10.6", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6%2B20220802-x86_64_v4-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.10.6", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6%2B20220802-x86_64_v4-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.10.6", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6%2B20220802-x86_64_v4-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.10.6", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.10.6%2B20220802-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.8.13", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.8.13%2B20220802-aarch64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.8.13", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.8.13%2B20220802-aarch64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.8.13", "apple", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.8.13%2B20220802-aarch64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.8.13", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.8.13%2B20220802-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.8.13", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.8.13%2B20220802-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.8.13", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.8.13%2B20220802-aarch64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.8.13", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.8.13%2B20220802-aarch64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.8.13", "linux", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.8.13%2B20220802-aarch64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.8.13", "linux", "aarch64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.8.13%2B20220802-aarch64-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.8.13", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.8.13%2B20220802-i686-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.8.13", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.8.13%2B20220802-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.8.13", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.8.13%2B20220802-i686-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.8.13", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.8.13%2B20220802-i686-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.8.13", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.8.13%2B20220802-i686-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.8.13", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.8.13%2B20220802-i686-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.8.13", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.8.13%2B20220802-i686-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.8.13", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.8.13%2B20220802-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.8.13", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.8.13%2B20220802-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.8.13", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.8.13%2B20220802-x86_64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.8.13", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.8.13%2B20220802-x86_64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.8.13", "apple", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.8.13%2B20220802-x86_64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.8.13", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.8.13%2B20220802-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.8.13", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.8.13%2B20220802-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.8.13", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.8.13%2B20220802-x86_64-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.8.13", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.8.13%2B20220802-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.8.13", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.8.13%2B20220802-x86_64-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.8.13", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.8.13%2B20220802-x86_64-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.8.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.8.13%2B20220802-x86_64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.8.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.8.13%2B20220802-x86_64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.8.13", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.8.13%2B20220802-x86_64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.8.13", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.8.13%2B20220802-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.8.13", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.8.13%2B20220802-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.8.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.8.13%2B20220802-x86_64-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.8.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.8.13%2B20220802-x86_64-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.8.13", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.8.13%2B20220802-x86_64-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.8.13", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.8.13%2B20220802-x86_64-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.13", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.9.13%2B20220802-aarch64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.9.13", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.9.13%2B20220802-aarch64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.9.13", "apple", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.9.13%2B20220802-aarch64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.9.13", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.9.13%2B20220802-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.13", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.9.13%2B20220802-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.9.13%2B20220802-aarch64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.9.13%2B20220802-aarch64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.13", "linux", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.9.13%2B20220802-aarch64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "aarch64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.9.13%2B20220802-aarch64-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.9.13", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.9.13%2B20220802-i686-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.9.13", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.9.13%2B20220802-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.9.13", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.9.13%2B20220802-i686-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.9.13", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.9.13%2B20220802-i686-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.9.13%2B20220802-i686-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.9.13%2B20220802-i686-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.13", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.9.13%2B20220802-i686-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.9.13%2B20220802-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.9.13%2B20220802-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.9.13", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.9.13%2B20220802-x86_64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.9.13", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.9.13%2B20220802-x86_64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.9.13", "apple", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.9.13%2B20220802-x86_64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.9.13", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.9.13%2B20220802-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.13", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.9.13%2B20220802-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.9.13", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.9.13%2B20220802-x86_64-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.9.13", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.9.13%2B20220802-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.9.13", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.9.13%2B20220802-x86_64-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.9.13", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.9.13%2B20220802-x86_64-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.9.13%2B20220802-x86_64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.9.13%2B20220802-x86_64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.9.13%2B20220802-x86_64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.9.13%2B20220802-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.9.13%2B20220802-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.9.13%2B20220802-x86_64-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.9.13%2B20220802-x86_64-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.9.13%2B20220802-x86_64-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.9.13%2B20220802-x86_64-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.9.13%2B20220802-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.9.13%2B20220802-x86_64_v2-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.9.13%2B20220802-x86_64_v2-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.9.13%2B20220802-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.9.13%2B20220802-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.9.13%2B20220802-x86_64_v2-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.9.13%2B20220802-x86_64_v2-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.9.13%2B20220802-x86_64_v2-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.9.13%2B20220802-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.9.13%2B20220802-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.9.13%2B20220802-x86_64_v3-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.9.13%2B20220802-x86_64_v3-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.9.13%2B20220802-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.9.13%2B20220802-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.9.13%2B20220802-x86_64_v3-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.9.13%2B20220802-x86_64_v3-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.9.13%2B20220802-x86_64_v3-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.9.13%2B20220802-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.9.13%2B20220802-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.9.13%2B20220802-x86_64_v4-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.9.13%2B20220802-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.9.13%2B20220802-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.9.13%2B20220802-x86_64_v4-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.9.13%2B20220802-x86_64_v4-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.9.13%2B20220802-x86_64_v4-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/cpython-3.9.13%2B20220802-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220802/SHA256SUMS"), + Release::new("cpython", "3.10.5", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.10.5%2B20220630-aarch64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.10.5", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.10.5%2B20220630-aarch64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.10.5", "apple", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.10.5%2B20220630-aarch64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.10.5", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.10.5%2B20220630-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.5", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.10.5%2B20220630-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.10.5", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.10.5%2B20220630-aarch64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.5", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.10.5%2B20220630-aarch64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.5", "linux", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.10.5%2B20220630-aarch64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.5", "linux", "aarch64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.10.5%2B20220630-aarch64-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.10.5", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.10.5%2B20220630-i686-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.10.5", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.10.5%2B20220630-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.10.5", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.10.5%2B20220630-i686-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.10.5", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.10.5%2B20220630-i686-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.10.5", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.10.5%2B20220630-i686-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.5", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.10.5%2B20220630-i686-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.5", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.10.5%2B20220630-i686-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.5", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.10.5%2B20220630-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.5", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.10.5%2B20220630-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.10.5", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.10.5%2B20220630-x86_64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.10.5", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.10.5%2B20220630-x86_64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.10.5", "apple", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.10.5%2B20220630-x86_64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.10.5", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.10.5%2B20220630-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.5", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.10.5%2B20220630-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.10.5", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.10.5%2B20220630-x86_64-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.10.5", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.10.5%2B20220630-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.10.5", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.10.5%2B20220630-x86_64-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.10.5", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.10.5%2B20220630-x86_64-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.10.5", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.10.5%2B20220630-x86_64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.5", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.10.5%2B20220630-x86_64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.5", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.10.5%2B20220630-x86_64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.5", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.10.5%2B20220630-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.5", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.10.5%2B20220630-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.10.5", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.10.5%2B20220630-x86_64-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.10.5", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.10.5%2B20220630-x86_64-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.10.5", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.10.5%2B20220630-x86_64-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.10.5", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.10.5%2B20220630-x86_64-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.10.5", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.10.5%2B20220630-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.5", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.10.5%2B20220630-x86_64_v2-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.5", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.10.5%2B20220630-x86_64_v2-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.5", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.10.5%2B20220630-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.5", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.10.5%2B20220630-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.10.5", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.10.5%2B20220630-x86_64_v2-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.10.5", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.10.5%2B20220630-x86_64_v2-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.10.5", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.10.5%2B20220630-x86_64_v2-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.10.5", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.10.5%2B20220630-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.10.5", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.10.5%2B20220630-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.5", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.10.5%2B20220630-x86_64_v3-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.5", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.10.5%2B20220630-x86_64_v3-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.5", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.10.5%2B20220630-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.5", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.10.5%2B20220630-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.10.5", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.10.5%2B20220630-x86_64_v3-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.10.5", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.10.5%2B20220630-x86_64_v3-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.10.5", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.10.5%2B20220630-x86_64_v3-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.10.5", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.10.5%2B20220630-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.10.5", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.10.5%2B20220630-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.5", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.10.5%2B20220630-x86_64_v4-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.5", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.10.5%2B20220630-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.5", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.10.5%2B20220630-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.10.5", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.10.5%2B20220630-x86_64_v4-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.10.5", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.10.5%2B20220630-x86_64_v4-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.10.5", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.10.5%2B20220630-x86_64_v4-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.10.5", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.10.5%2B20220630-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.8.13", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.8.13%2B20220630-aarch64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.8.13", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.8.13%2B20220630-aarch64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.8.13", "apple", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.8.13%2B20220630-aarch64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.8.13", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.8.13%2B20220630-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.8.13", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.8.13%2B20220630-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.8.13", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.8.13%2B20220630-i686-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.8.13", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.8.13%2B20220630-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.8.13", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.8.13%2B20220630-i686-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.8.13", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.8.13%2B20220630-i686-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.8.13", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.8.13%2B20220630-i686-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.8.13", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.8.13%2B20220630-i686-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.8.13", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.8.13%2B20220630-i686-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.8.13", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.8.13%2B20220630-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.8.13", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.8.13%2B20220630-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.8.13", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.8.13%2B20220630-x86_64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.8.13", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.8.13%2B20220630-x86_64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.8.13", "apple", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.8.13%2B20220630-x86_64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.8.13", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.8.13%2B20220630-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.8.13", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.8.13%2B20220630-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.8.13", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.8.13%2B20220630-x86_64-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.8.13", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.8.13%2B20220630-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.8.13", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.8.13%2B20220630-x86_64-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.8.13", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.8.13%2B20220630-x86_64-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.8.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.8.13%2B20220630-x86_64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.8.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.8.13%2B20220630-x86_64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.8.13", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.8.13%2B20220630-x86_64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.8.13", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.8.13%2B20220630-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.8.13", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.8.13%2B20220630-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.8.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.8.13%2B20220630-x86_64-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.8.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.8.13%2B20220630-x86_64-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.8.13", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.8.13%2B20220630-x86_64-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.8.13", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.8.13%2B20220630-x86_64-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.13", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.9.13%2B20220630-aarch64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.9.13", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.9.13%2B20220630-aarch64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.9.13", "apple", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.9.13%2B20220630-aarch64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.9.13", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.9.13%2B20220630-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.13", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.9.13%2B20220630-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.9.13%2B20220630-aarch64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.9.13%2B20220630-aarch64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.13", "linux", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.9.13%2B20220630-aarch64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "aarch64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.9.13%2B20220630-aarch64-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.9.13", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.9.13%2B20220630-i686-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.9.13", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.9.13%2B20220630-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.9.13", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.9.13%2B20220630-i686-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.9.13", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.9.13%2B20220630-i686-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.9.13%2B20220630-i686-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.9.13%2B20220630-i686-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.13", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.9.13%2B20220630-i686-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.9.13%2B20220630-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.9.13%2B20220630-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.9.13", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.9.13%2B20220630-x86_64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.9.13", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.9.13%2B20220630-x86_64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.9.13", "apple", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.9.13%2B20220630-x86_64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.9.13", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.9.13%2B20220630-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.13", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.9.13%2B20220630-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.9.13", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.9.13%2B20220630-x86_64-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.9.13", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.9.13%2B20220630-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.9.13", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.9.13%2B20220630-x86_64-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.9.13", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.9.13%2B20220630-x86_64-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.9.13%2B20220630-x86_64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.9.13%2B20220630-x86_64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.9.13%2B20220630-x86_64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.9.13%2B20220630-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.9.13%2B20220630-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.9.13%2B20220630-x86_64-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.9.13%2B20220630-x86_64-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.9.13%2B20220630-x86_64-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.9.13%2B20220630-x86_64-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.9.13%2B20220630-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.9.13%2B20220630-x86_64_v2-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.9.13%2B20220630-x86_64_v2-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.9.13%2B20220630-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.9.13%2B20220630-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.9.13%2B20220630-x86_64_v2-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.9.13%2B20220630-x86_64_v2-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.9.13%2B20220630-x86_64_v2-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.9.13%2B20220630-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.9.13%2B20220630-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.9.13%2B20220630-x86_64_v3-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.9.13%2B20220630-x86_64_v3-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.9.13%2B20220630-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.9.13%2B20220630-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.9.13%2B20220630-x86_64_v3-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.9.13%2B20220630-x86_64_v3-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.9.13%2B20220630-x86_64_v3-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.9.13%2B20220630-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.9.13%2B20220630-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.9.13%2B20220630-x86_64_v4-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.9.13%2B20220630-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.9.13%2B20220630-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.9.13%2B20220630-x86_64_v4-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.9.13%2B20220630-x86_64_v4-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.9.13%2B20220630-x86_64_v4-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/cpython-3.9.13%2B20220630-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220630/SHA256SUMS"), + Release::new("cpython", "3.10.4", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.10.4%2B20220528-aarch64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.10.4", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.10.4%2B20220528-aarch64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.10.4", "apple", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.10.4%2B20220528-aarch64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.10.4", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.10.4%2B20220528-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.4", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.10.4%2B20220528-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.10.4%2B20220528-aarch64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.10.4%2B20220528-aarch64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.4", "linux", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.10.4%2B20220528-aarch64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "aarch64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.10.4%2B20220528-aarch64-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.10.4", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.10.4%2B20220528-i686-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.10.4", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.10.4%2B20220528-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.10.4", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.10.4%2B20220528-i686-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.10.4", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.10.4%2B20220528-i686-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.10.4%2B20220528-i686-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.10.4%2B20220528-i686-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.4", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.10.4%2B20220528-i686-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.10.4%2B20220528-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.10.4%2B20220528-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.10.4", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.10.4%2B20220528-x86_64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.10.4", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.10.4%2B20220528-x86_64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.10.4", "apple", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.10.4%2B20220528-x86_64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.10.4", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.10.4%2B20220528-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.4", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.10.4%2B20220528-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.10.4", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.10.4%2B20220528-x86_64-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.10.4", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.10.4%2B20220528-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.10.4", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.10.4%2B20220528-x86_64-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.10.4", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.10.4%2B20220528-x86_64-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.10.4%2B20220528-x86_64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.10.4%2B20220528-x86_64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.10.4%2B20220528-x86_64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.10.4%2B20220528-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.10.4%2B20220528-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.10.4%2B20220528-x86_64-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.10.4%2B20220528-x86_64-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.10.4%2B20220528-x86_64-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.10.4%2B20220528-x86_64-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.10.4%2B20220528-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.10.4%2B20220528-x86_64_v2-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.10.4%2B20220528-x86_64_v2-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.10.4%2B20220528-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.10.4%2B20220528-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.10.4%2B20220528-x86_64_v2-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.10.4%2B20220528-x86_64_v2-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.10.4%2B20220528-x86_64_v2-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.10.4%2B20220528-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.10.4%2B20220528-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.10.4%2B20220528-x86_64_v3-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.10.4%2B20220528-x86_64_v3-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.10.4%2B20220528-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.10.4%2B20220528-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.10.4%2B20220528-x86_64_v3-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.10.4%2B20220528-x86_64_v3-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.10.4%2B20220528-x86_64_v3-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.10.4%2B20220528-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.10.4%2B20220528-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.10.4%2B20220528-x86_64_v4-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.10.4%2B20220528-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.10.4%2B20220528-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.10.4%2B20220528-x86_64_v4-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.10.4%2B20220528-x86_64_v4-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.10.4%2B20220528-x86_64_v4-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.10.4%2B20220528-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.8.13", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.8.13%2B20220528-aarch64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.8.13", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.8.13%2B20220528-aarch64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.8.13", "apple", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.8.13%2B20220528-aarch64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.8.13", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.8.13%2B20220528-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.8.13", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.8.13%2B20220528-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.8.13", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.8.13%2B20220528-i686-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.8.13", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.8.13%2B20220528-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.8.13", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.8.13%2B20220528-i686-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.8.13", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.8.13%2B20220528-i686-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.8.13", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.8.13%2B20220528-i686-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.8.13", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.8.13%2B20220528-i686-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.8.13", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.8.13%2B20220528-i686-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.8.13", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.8.13%2B20220528-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.8.13", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.8.13%2B20220528-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.8.13", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.8.13%2B20220528-x86_64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.8.13", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.8.13%2B20220528-x86_64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.8.13", "apple", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.8.13%2B20220528-x86_64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.8.13", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.8.13%2B20220528-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.8.13", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.8.13%2B20220528-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.8.13", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.8.13%2B20220528-x86_64-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.8.13", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.8.13%2B20220528-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.8.13", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.8.13%2B20220528-x86_64-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.8.13", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.8.13%2B20220528-x86_64-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.8.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.8.13%2B20220528-x86_64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.8.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.8.13%2B20220528-x86_64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.8.13", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.8.13%2B20220528-x86_64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.8.13", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.8.13%2B20220528-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.8.13", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.8.13%2B20220528-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.8.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.8.13%2B20220528-x86_64-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.8.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.8.13%2B20220528-x86_64-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.8.13", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.8.13%2B20220528-x86_64-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.8.13", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.8.13%2B20220528-x86_64-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.13", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.9.13%2B20220528-aarch64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.9.13", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.9.13%2B20220528-aarch64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.9.13", "apple", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.9.13%2B20220528-aarch64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.9.13", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.9.13%2B20220528-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.13", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.9.13%2B20220528-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.9.13%2B20220528-aarch64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.9.13%2B20220528-aarch64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.13", "linux", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.9.13%2B20220528-aarch64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "aarch64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.9.13%2B20220528-aarch64-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.9.13", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.9.13%2B20220528-i686-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.9.13", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.9.13%2B20220528-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.9.13", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.9.13%2B20220528-i686-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.9.13", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.9.13%2B20220528-i686-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.9.13%2B20220528-i686-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.9.13%2B20220528-i686-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.13", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.9.13%2B20220528-i686-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.9.13%2B20220528-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.9.13%2B20220528-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.9.13", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.9.13%2B20220528-x86_64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.9.13", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.9.13%2B20220528-x86_64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.9.13", "apple", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.9.13%2B20220528-x86_64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.9.13", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.9.13%2B20220528-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.13", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.9.13%2B20220528-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.9.13", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.9.13%2B20220528-x86_64-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.9.13", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.9.13%2B20220528-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.9.13", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.9.13%2B20220528-x86_64-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.9.13", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.9.13%2B20220528-x86_64-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.9.13%2B20220528-x86_64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.9.13%2B20220528-x86_64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.9.13%2B20220528-x86_64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.9.13%2B20220528-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.9.13%2B20220528-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.9.13%2B20220528-x86_64-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.9.13%2B20220528-x86_64-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.9.13%2B20220528-x86_64-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.9.13%2B20220528-x86_64-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.9.13%2B20220528-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.9.13%2B20220528-x86_64_v2-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.9.13%2B20220528-x86_64_v2-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.9.13%2B20220528-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.9.13%2B20220528-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.9.13%2B20220528-x86_64_v2-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.9.13%2B20220528-x86_64_v2-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.9.13%2B20220528-x86_64_v2-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.9.13%2B20220528-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.9.13%2B20220528-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.9.13%2B20220528-x86_64_v3-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.9.13%2B20220528-x86_64_v3-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.9.13%2B20220528-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.9.13%2B20220528-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.9.13%2B20220528-x86_64_v3-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.9.13%2B20220528-x86_64_v3-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.9.13%2B20220528-x86_64_v3-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.9.13%2B20220528-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.9.13%2B20220528-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.9.13%2B20220528-x86_64_v4-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.9.13%2B20220528-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.9.13%2B20220528-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.9.13%2B20220528-x86_64_v4-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.9.13%2B20220528-x86_64_v4-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.9.13%2B20220528-x86_64_v4-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/cpython-3.9.13%2B20220528-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.13", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220528/SHA256SUMS"), + Release::new("cpython", "3.10.4", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4%2B20220502-aarch64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.10.4", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4%2B20220502-aarch64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.10.4", "apple", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4%2B20220502-aarch64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.10.4", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4%2B20220502-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.4", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4%2B20220502-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4%2B20220502-aarch64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4%2B20220502-aarch64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.4", "linux", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4%2B20220502-aarch64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "aarch64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4%2B20220502-aarch64-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.10.4", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4%2B20220502-i686-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.10.4", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4%2B20220502-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.10.4", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4%2B20220502-i686-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.10.4", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4%2B20220502-i686-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4%2B20220502-i686-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4%2B20220502-i686-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.4", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4%2B20220502-i686-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4%2B20220502-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4%2B20220502-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.10.4", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4%2B20220502-x86_64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.10.4", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4%2B20220502-x86_64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.10.4", "apple", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4%2B20220502-x86_64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.10.4", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4%2B20220502-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.4", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4%2B20220502-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.10.4", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4%2B20220502-x86_64-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.10.4", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4%2B20220502-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.10.4", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4%2B20220502-x86_64-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.10.4", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4%2B20220502-x86_64-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4%2B20220502-x86_64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4%2B20220502-x86_64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4%2B20220502-x86_64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4%2B20220502-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4%2B20220502-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4%2B20220502-x86_64-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4%2B20220502-x86_64-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4%2B20220502-x86_64-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4%2B20220502-x86_64-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4%2B20220502-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4%2B20220502-x86_64_v2-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4%2B20220502-x86_64_v2-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4%2B20220502-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4%2B20220502-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4%2B20220502-x86_64_v2-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4%2B20220502-x86_64_v2-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4%2B20220502-x86_64_v2-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4%2B20220502-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4%2B20220502-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4%2B20220502-x86_64_v3-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4%2B20220502-x86_64_v3-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4%2B20220502-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4%2B20220502-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4%2B20220502-x86_64_v3-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4%2B20220502-x86_64_v3-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4%2B20220502-x86_64_v3-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4%2B20220502-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4%2B20220502-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4%2B20220502-x86_64_v4-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4%2B20220502-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4%2B20220502-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4%2B20220502-x86_64_v4-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4%2B20220502-x86_64_v4-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4%2B20220502-x86_64_v4-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.10.4", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.10.4%2B20220502-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.8.13", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.8.13%2B20220502-aarch64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.8.13", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.8.13%2B20220502-aarch64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.8.13", "apple", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.8.13%2B20220502-aarch64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.8.13", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.8.13%2B20220502-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.8.13", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.8.13%2B20220502-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.8.13", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.8.13%2B20220502-i686-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.8.13", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.8.13%2B20220502-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.8.13", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.8.13%2B20220502-i686-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.8.13", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.8.13%2B20220502-i686-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.8.13", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.8.13%2B20220502-i686-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.8.13", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.8.13%2B20220502-i686-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.8.13", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.8.13%2B20220502-i686-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.8.13", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.8.13%2B20220502-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.8.13", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.8.13%2B20220502-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.8.13", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.8.13%2B20220502-x86_64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.8.13", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.8.13%2B20220502-x86_64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.8.13", "apple", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.8.13%2B20220502-x86_64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.8.13", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.8.13%2B20220502-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.8.13", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.8.13%2B20220502-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.8.13", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.8.13%2B20220502-x86_64-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.8.13", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.8.13%2B20220502-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.8.13", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.8.13%2B20220502-x86_64-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.8.13", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.8.13%2B20220502-x86_64-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.8.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.8.13%2B20220502-x86_64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.8.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.8.13%2B20220502-x86_64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.8.13", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.8.13%2B20220502-x86_64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.8.13", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.8.13%2B20220502-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.8.13", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.8.13%2B20220502-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.8.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.8.13%2B20220502-x86_64-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.8.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.8.13%2B20220502-x86_64-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.8.13", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.8.13%2B20220502-x86_64-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.8.13", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.8.13%2B20220502-x86_64-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.12", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.9.12%2B20220502-aarch64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.9.12", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.9.12%2B20220502-aarch64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.9.12", "apple", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.9.12%2B20220502-aarch64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.9.12", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.9.12%2B20220502-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.12", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.9.12%2B20220502-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.9.12", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.9.12%2B20220502-aarch64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.12", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.9.12%2B20220502-aarch64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.12", "linux", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.9.12%2B20220502-aarch64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.12", "linux", "aarch64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.9.12%2B20220502-aarch64-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.9.12", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.9.12%2B20220502-i686-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.9.12", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.9.12%2B20220502-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.9.12", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.9.12%2B20220502-i686-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.9.12", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.9.12%2B20220502-i686-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.9.12", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.9.12%2B20220502-i686-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.12", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.9.12%2B20220502-i686-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.12", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.9.12%2B20220502-i686-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.12", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.9.12%2B20220502-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.12", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.9.12%2B20220502-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.9.12", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.9.12%2B20220502-x86_64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.9.12", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.9.12%2B20220502-x86_64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.9.12", "apple", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.9.12%2B20220502-x86_64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.9.12", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.9.12%2B20220502-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.12", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.9.12%2B20220502-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.9.12", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.9.12%2B20220502-x86_64-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.9.12", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.9.12%2B20220502-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.9.12", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.9.12%2B20220502-x86_64-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.9.12", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.9.12%2B20220502-x86_64-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.9.12", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.9.12%2B20220502-x86_64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.12", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.9.12%2B20220502-x86_64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.12", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.9.12%2B20220502-x86_64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.12", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.9.12%2B20220502-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.12", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.9.12%2B20220502-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.9.12", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.9.12%2B20220502-x86_64-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.9.12", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.9.12%2B20220502-x86_64-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.9.12", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.9.12%2B20220502-x86_64-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.9.12", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.9.12%2B20220502-x86_64-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.12", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.9.12%2B20220502-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.12", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.9.12%2B20220502-x86_64_v2-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.12", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.9.12%2B20220502-x86_64_v2-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.12", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.9.12%2B20220502-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.12", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.9.12%2B20220502-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.9.12", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.9.12%2B20220502-x86_64_v2-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.9.12", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.9.12%2B20220502-x86_64_v2-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.9.12", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.9.12%2B20220502-x86_64_v2-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.9.12", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.9.12%2B20220502-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.12", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.9.12%2B20220502-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.12", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.9.12%2B20220502-x86_64_v3-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.12", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.9.12%2B20220502-x86_64_v3-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.12", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.9.12%2B20220502-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.12", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.9.12%2B20220502-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.9.12", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.9.12%2B20220502-x86_64_v3-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.9.12", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.9.12%2B20220502-x86_64_v3-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.9.12", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.9.12%2B20220502-x86_64_v3-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.9.12", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.9.12%2B20220502-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.12", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.9.12%2B20220502-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.12", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.9.12%2B20220502-x86_64_v4-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.12", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.9.12%2B20220502-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.12", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.9.12%2B20220502-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.9.12", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.9.12%2B20220502-x86_64_v4-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.9.12", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.9.12%2B20220502-x86_64_v4-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.9.12", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.9.12%2B20220502-x86_64_v4-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.9.12", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/cpython-3.9.12%2B20220502-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.12", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220502/SHA256SUMS"), + Release::new("cpython", "3.10.3", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.10.3%2B20220318-aarch64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.10.3", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.10.3%2B20220318-aarch64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.10.3", "apple", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.10.3%2B20220318-aarch64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.10.3", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.10.3%2B20220318-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.3", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.10.3%2B20220318-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.10.3", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.10.3%2B20220318-aarch64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.3", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.10.3%2B20220318-aarch64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.3", "linux", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.10.3%2B20220318-aarch64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.3", "linux", "aarch64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.10.3%2B20220318-aarch64-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.10.3", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.10.3%2B20220318-i686-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.10.3", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.10.3%2B20220318-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.10.3", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.10.3%2B20220318-i686-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.10.3", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.10.3%2B20220318-i686-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.10.3", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.10.3%2B20220318-i686-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.3", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.10.3%2B20220318-i686-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.3", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.10.3%2B20220318-i686-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.3", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.10.3%2B20220318-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.3", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.10.3%2B20220318-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.10.3", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.10.3%2B20220318-x86_64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.10.3", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.10.3%2B20220318-x86_64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.10.3", "apple", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.10.3%2B20220318-x86_64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.10.3", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.10.3%2B20220318-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.3", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.10.3%2B20220318-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.10.3", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.10.3%2B20220318-x86_64-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.10.3", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.10.3%2B20220318-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.10.3", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.10.3%2B20220318-x86_64-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.10.3", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.10.3%2B20220318-x86_64-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.10.3", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.10.3%2B20220318-x86_64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.3", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.10.3%2B20220318-x86_64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.3", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.10.3%2B20220318-x86_64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.3", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.10.3%2B20220318-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.3", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.10.3%2B20220318-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.10.3", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.10.3%2B20220318-x86_64-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.10.3", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.10.3%2B20220318-x86_64-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.10.3", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.10.3%2B20220318-x86_64-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.10.3", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.10.3%2B20220318-x86_64-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.10.3", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.10.3%2B20220318-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.3", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.10.3%2B20220318-x86_64_v2-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.3", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.10.3%2B20220318-x86_64_v2-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.3", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.10.3%2B20220318-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.3", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.10.3%2B20220318-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.10.3", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.10.3%2B20220318-x86_64_v2-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.10.3", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.10.3%2B20220318-x86_64_v2-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.10.3", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.10.3%2B20220318-x86_64_v2-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.10.3", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.10.3%2B20220318-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.10.3", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.10.3%2B20220318-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.3", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.10.3%2B20220318-x86_64_v3-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.3", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.10.3%2B20220318-x86_64_v3-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.3", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.10.3%2B20220318-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.3", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.10.3%2B20220318-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.10.3", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.10.3%2B20220318-x86_64_v3-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.10.3", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.10.3%2B20220318-x86_64_v3-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.10.3", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.10.3%2B20220318-x86_64_v3-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.10.3", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.10.3%2B20220318-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.10.3", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.10.3%2B20220318-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.3", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.10.3%2B20220318-x86_64_v4-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.3", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.10.3%2B20220318-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.3", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.10.3%2B20220318-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.10.3", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.10.3%2B20220318-x86_64_v4-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.10.3", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.10.3%2B20220318-x86_64_v4-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.10.3", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.10.3%2B20220318-x86_64_v4-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.10.3", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.10.3%2B20220318-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.8.13", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.8.13%2B20220318-aarch64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.8.13", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.8.13%2B20220318-aarch64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.8.13", "apple", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.8.13%2B20220318-aarch64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.8.13", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.8.13%2B20220318-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.8.13", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.8.13%2B20220318-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.8.13", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.8.13%2B20220318-i686-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.8.13", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.8.13%2B20220318-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.8.13", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.8.13%2B20220318-i686-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.8.13", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.8.13%2B20220318-i686-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.8.13", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.8.13%2B20220318-i686-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.8.13", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.8.13%2B20220318-i686-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.8.13", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.8.13%2B20220318-i686-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.8.13", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.8.13%2B20220318-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.8.13", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.8.13%2B20220318-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.8.13", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.8.13%2B20220318-x86_64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.8.13", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.8.13%2B20220318-x86_64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.8.13", "apple", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.8.13%2B20220318-x86_64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.8.13", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.8.13%2B20220318-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.8.13", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.8.13%2B20220318-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.8.13", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.8.13%2B20220318-x86_64-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.8.13", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.8.13%2B20220318-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.8.13", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.8.13%2B20220318-x86_64-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.8.13", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.8.13%2B20220318-x86_64-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.8.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.8.13%2B20220318-x86_64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.8.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.8.13%2B20220318-x86_64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.8.13", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.8.13%2B20220318-x86_64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.8.13", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.8.13%2B20220318-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.8.13", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.8.13%2B20220318-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.8.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.8.13%2B20220318-x86_64-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.8.13", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.8.13%2B20220318-x86_64-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.8.13", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.8.13%2B20220318-x86_64-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.8.13", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.8.13%2B20220318-x86_64-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.11", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.9.11%2B20220318-aarch64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.9.11", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.9.11%2B20220318-aarch64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.9.11", "apple", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.9.11%2B20220318-aarch64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.9.11", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.9.11%2B20220318-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.11", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.9.11%2B20220318-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.9.11", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.9.11%2B20220318-aarch64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.11", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.9.11%2B20220318-aarch64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.11", "linux", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.9.11%2B20220318-aarch64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.11", "linux", "aarch64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.9.11%2B20220318-aarch64-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.9.11", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.9.11%2B20220318-i686-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.9.11", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.9.11%2B20220318-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.9.11", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.9.11%2B20220318-i686-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.9.11", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.9.11%2B20220318-i686-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.9.11", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.9.11%2B20220318-i686-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.11", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.9.11%2B20220318-i686-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.11", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.9.11%2B20220318-i686-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.11", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.9.11%2B20220318-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.11", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.9.11%2B20220318-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.9.11", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.9.11%2B20220318-x86_64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.9.11", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.9.11%2B20220318-x86_64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.9.11", "apple", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.9.11%2B20220318-x86_64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.9.11", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.9.11%2B20220318-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.11", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.9.11%2B20220318-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.9.11", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.9.11%2B20220318-x86_64-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.9.11", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.9.11%2B20220318-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.9.11", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.9.11%2B20220318-x86_64-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.9.11", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.9.11%2B20220318-x86_64-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.9.11", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.9.11%2B20220318-x86_64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.11", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.9.11%2B20220318-x86_64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.11", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.9.11%2B20220318-x86_64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.11", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.9.11%2B20220318-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.11", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.9.11%2B20220318-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.9.11", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.9.11%2B20220318-x86_64-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.9.11", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.9.11%2B20220318-x86_64-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.9.11", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.9.11%2B20220318-x86_64-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.9.11", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.9.11%2B20220318-x86_64-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.11", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.9.11%2B20220318-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.11", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.9.11%2B20220318-x86_64_v2-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.11", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.9.11%2B20220318-x86_64_v2-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.11", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.9.11%2B20220318-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.11", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.9.11%2B20220318-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.9.11", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.9.11%2B20220318-x86_64_v2-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.9.11", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.9.11%2B20220318-x86_64_v2-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.9.11", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.9.11%2B20220318-x86_64_v2-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.9.11", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.9.11%2B20220318-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.11", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.9.11%2B20220318-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.11", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.9.11%2B20220318-x86_64_v3-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.11", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.9.11%2B20220318-x86_64_v3-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.11", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.9.11%2B20220318-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.11", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.9.11%2B20220318-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.9.11", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.9.11%2B20220318-x86_64_v3-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.9.11", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.9.11%2B20220318-x86_64_v3-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.9.11", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.9.11%2B20220318-x86_64_v3-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.9.11", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.9.11%2B20220318-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.11", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.9.11%2B20220318-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.11", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.9.11%2B20220318-x86_64_v4-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.11", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.9.11%2B20220318-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.11", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.9.11%2B20220318-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.9.11", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.9.11%2B20220318-x86_64_v4-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.9.11", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.9.11%2B20220318-x86_64_v4-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.9.11", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.9.11%2B20220318-x86_64_v4-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.9.11", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/cpython-3.9.11%2B20220318-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.11", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220318/SHA256SUMS"), + Release::new("cpython", "3.10.2", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2%2B20220227-aarch64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.10.2", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2%2B20220227-aarch64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.10.2", "apple", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2%2B20220227-aarch64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.10.2", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2%2B20220227-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.2", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2%2B20220227-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2%2B20220227-aarch64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2%2B20220227-aarch64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.2", "linux", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2%2B20220227-aarch64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "aarch64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2%2B20220227-aarch64-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.10.2", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2%2B20220227-i686-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.10.2", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2%2B20220227-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.10.2", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2%2B20220227-i686-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.10.2", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2%2B20220227-i686-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2%2B20220227-i686-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2%2B20220227-i686-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.2", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2%2B20220227-i686-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2%2B20220227-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2%2B20220227-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.10.2", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2%2B20220227-x86_64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.10.2", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2%2B20220227-x86_64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.10.2", "apple", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2%2B20220227-x86_64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.10.2", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2%2B20220227-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.2", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2%2B20220227-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.10.2", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2%2B20220227-x86_64-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.10.2", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2%2B20220227-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.10.2", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2%2B20220227-x86_64-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.10.2", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2%2B20220227-x86_64-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2%2B20220227-x86_64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2%2B20220227-x86_64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.2", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2%2B20220227-x86_64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2%2B20220227-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2%2B20220227-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2%2B20220227-x86_64-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2%2B20220227-x86_64-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.10.2", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2%2B20220227-x86_64-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2%2B20220227-x86_64-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2%2B20220227-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2%2B20220227-x86_64_v2-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.2", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2%2B20220227-x86_64_v2-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2%2B20220227-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2%2B20220227-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2%2B20220227-x86_64_v2-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2%2B20220227-x86_64_v2-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.10.2", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2%2B20220227-x86_64_v2-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2%2B20220227-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2%2B20220227-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2%2B20220227-x86_64_v3-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.2", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2%2B20220227-x86_64_v3-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2%2B20220227-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2%2B20220227-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2%2B20220227-x86_64_v3-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2%2B20220227-x86_64_v3-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.10.2", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2%2B20220227-x86_64_v3-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2%2B20220227-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2%2B20220227-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2%2B20220227-x86_64_v4-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.10.2", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2%2B20220227-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2%2B20220227-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2%2B20220227-x86_64_v4-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2%2B20220227-x86_64_v4-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.10.2", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2%2B20220227-x86_64_v4-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.10.2%2B20220227-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.8.12", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.8.12%2B20220227-aarch64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.8.12", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.8.12%2B20220227-aarch64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.8.12", "apple", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.8.12%2B20220227-aarch64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.8.12", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.8.12%2B20220227-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.8.12", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.8.12%2B20220227-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.8.12", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.8.12%2B20220227-i686-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.8.12", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.8.12%2B20220227-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.8.12", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.8.12%2B20220227-i686-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.8.12", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.8.12%2B20220227-i686-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.8.12", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.8.12%2B20220227-i686-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.8.12", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.8.12%2B20220227-i686-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.8.12", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.8.12%2B20220227-i686-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.8.12", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.8.12%2B20220227-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.8.12", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.8.12%2B20220227-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.8.12", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.8.12%2B20220227-x86_64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.8.12", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.8.12%2B20220227-x86_64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.8.12", "apple", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.8.12%2B20220227-x86_64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.8.12", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.8.12%2B20220227-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.8.12", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.8.12%2B20220227-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.8.12", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.8.12%2B20220227-x86_64-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.8.12", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.8.12%2B20220227-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.8.12", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.8.12%2B20220227-x86_64-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.8.12", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.8.12%2B20220227-x86_64-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.8.12", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.8.12%2B20220227-x86_64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.8.12", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.8.12%2B20220227-x86_64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.8.12", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.8.12%2B20220227-x86_64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.8.12", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.8.12%2B20220227-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.8.12", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.8.12%2B20220227-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.8.12", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.8.12%2B20220227-x86_64-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.8.12", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.8.12%2B20220227-x86_64-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.8.12", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.8.12%2B20220227-x86_64-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.8.12", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.8.12%2B20220227-x86_64-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.10", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.9.10%2B20220227-aarch64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.9.10", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.9.10%2B20220227-aarch64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.9.10", "apple", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.9.10%2B20220227-aarch64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.9.10", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.9.10%2B20220227-aarch64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.10", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.9.10%2B20220227-aarch64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.9.10%2B20220227-aarch64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.9.10%2B20220227-aarch64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.10", "linux", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.9.10%2B20220227-aarch64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "aarch64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.9.10%2B20220227-aarch64-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.9.10", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.9.10%2B20220227-i686-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.9.10", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.9.10%2B20220227-i686-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.9.10", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.9.10%2B20220227-i686-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.9.10", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.9.10%2B20220227-i686-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.9.10%2B20220227-i686-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.9.10%2B20220227-i686-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.10", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.9.10%2B20220227-i686-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.9.10%2B20220227-i686-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.9.10%2B20220227-i686-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.9.10", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.9.10%2B20220227-x86_64-apple-darwin-debug-full.tar.zst"), + Release::new("cpython", "3.9.10", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.9.10%2B20220227-x86_64-apple-darwin-install_only.tar.gz"), + Release::new("cpython", "3.9.10", "apple", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.9.10%2B20220227-x86_64-apple-darwin-lto-full.tar.zst"), + Release::new("cpython", "3.9.10", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.9.10%2B20220227-x86_64-apple-darwin-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.10", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.9.10%2B20220227-x86_64-apple-darwin-pgo-full.tar.zst"), + Release::new("cpython", "3.9.10", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.9.10%2B20220227-x86_64-pc-windows-msvc-shared-install_only.tar.gz"), + Release::new("cpython", "3.9.10", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.9.10%2B20220227-x86_64-pc-windows-msvc-shared-pgo-full.tar.zst"), + Release::new("cpython", "3.9.10", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.9.10%2B20220227-x86_64-pc-windows-msvc-static-install_only.tar.gz"), + Release::new("cpython", "3.9.10", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.9.10%2B20220227-x86_64-pc-windows-msvc-static-noopt-full.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.9.10%2B20220227-x86_64-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.9.10%2B20220227-x86_64-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.10", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.9.10%2B20220227-x86_64-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.9.10%2B20220227-x86_64-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.9.10%2B20220227-x86_64-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.9.10%2B20220227-x86_64-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.9.10%2B20220227-x86_64-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.9.10", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.9.10%2B20220227-x86_64-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.9.10%2B20220227-x86_64-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.9.10%2B20220227-x86_64_v2-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.9.10%2B20220227-x86_64_v2-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.10", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.9.10%2B20220227-x86_64_v2-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.9.10%2B20220227-x86_64_v2-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.9.10%2B20220227-x86_64_v2-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.9.10%2B20220227-x86_64_v2-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.9.10%2B20220227-x86_64_v2-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.9.10", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.9.10%2B20220227-x86_64_v2-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.9.10%2B20220227-x86_64_v2-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.9.10%2B20220227-x86_64_v3-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.9.10%2B20220227-x86_64_v3-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.10", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.9.10%2B20220227-x86_64_v3-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.9.10%2B20220227-x86_64_v3-unknown-linux-gnu-pgo%2Blto-full.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.9.10%2B20220227-x86_64_v3-unknown-linux-gnu-pgo-full.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.9.10%2B20220227-x86_64_v3-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.9.10%2B20220227-x86_64_v3-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.9.10", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.9.10%2B20220227-x86_64_v3-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.9.10%2B20220227-x86_64_v3-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.9.10%2B20220227-x86_64_v4-unknown-linux-gnu-debug-full.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.9.10%2B20220227-x86_64_v4-unknown-linux-gnu-install_only.tar.gz"), + Release::new("cpython", "3.9.10", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.9.10%2B20220227-x86_64_v4-unknown-linux-gnu-lto-full.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.9.10%2B20220227-x86_64_v4-unknown-linux-gnu-noopt-full.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.9.10%2B20220227-x86_64_v4-unknown-linux-musl-debug-full.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.9.10%2B20220227-x86_64_v4-unknown-linux-musl-install_only.tar.gz"), + Release::new("cpython", "3.9.10", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.9.10%2B20220227-x86_64_v4-unknown-linux-musl-lto-full.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/cpython-3.9.10%2B20220227-x86_64_v4-unknown-linux-musl-noopt-full.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/libuuid-1.0.3.tar.gz"), + Release::new("cpython", "3.9.10", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220227/SHA256SUMS"), + Release::new("cpython", "3.10.2", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.10.2-aarch64-apple-darwin-debug-20220220T1113.tar.zst"), + Release::new("cpython", "3.10.2", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.10.2-aarch64-apple-darwin-install_only-20220220T1113.tar.gz"), + Release::new("cpython", "3.10.2", "apple", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.10.2-aarch64-apple-darwin-lto-20220220T1113.tar.zst"), + Release::new("cpython", "3.10.2", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.10.2-aarch64-apple-darwin-pgo%2Blto-20220220T1113.tar.zst"), + Release::new("cpython", "3.10.2", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.10.2-aarch64-apple-darwin-pgo-20220220T1113.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.10.2-aarch64-unknown-linux-gnu-debug-20220220T1113.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.10.2-aarch64-unknown-linux-gnu-lto-20220220T1113.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "aarch64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.10.2-aarch64-unknown-linux-gnu-noopt-20220220T1113.tar.zst"), + Release::new("cpython", "3.10.2", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.10.2-i686-pc-windows-msvc-shared-pgo-20220220T1113.tar.zst"), + Release::new("cpython", "3.10.2", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.10.2-i686-pc-windows-msvc-static-noopt-20220220T1113.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.10.2-i686-unknown-linux-gnu-debug-20220220T1113.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.10.2-i686-unknown-linux-gnu-lto-20220220T1113.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.10.2-i686-unknown-linux-gnu-pgo%2Blto-20220220T1113.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.10.2-i686-unknown-linux-gnu-pgo-20220220T1113.tar.zst"), + Release::new("cpython", "3.10.2", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.10.2-x86_64-apple-darwin-debug-20220220T1113.tar.zst"), + Release::new("cpython", "3.10.2", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.10.2-x86_64-apple-darwin-install_only-20220220T1113.tar.gz"), + Release::new("cpython", "3.10.2", "apple", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.10.2-x86_64-apple-darwin-lto-20220220T1113.tar.zst"), + Release::new("cpython", "3.10.2", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.10.2-x86_64-apple-darwin-pgo%2Blto-20220220T1113.tar.zst"), + Release::new("cpython", "3.10.2", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.10.2-x86_64-apple-darwin-pgo-20220220T1113.tar.zst"), + Release::new("cpython", "3.10.2", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.10.2-x86_64-pc-windows-msvc-shared-install_only-20220220T1113.tar.gz"), + Release::new("cpython", "3.10.2", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.10.2-x86_64-pc-windows-msvc-shared-pgo-20220220T1113.tar.zst"), + Release::new("cpython", "3.10.2", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.10.2-x86_64-pc-windows-msvc-static-noopt-20220220T1113.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.10.2-x86_64-unknown-linux-gnu-debug-20220220T1113.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.10.2-x86_64-unknown-linux-gnu-install_only-20220220T1113.tar.gz"), + Release::new("cpython", "3.10.2", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.10.2-x86_64-unknown-linux-gnu-lto-20220220T1113.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.10.2-x86_64-unknown-linux-gnu-pgo%2Blto-20220220T1113.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.10.2-x86_64-unknown-linux-gnu-pgo-20220220T1113.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.10.2-x86_64-unknown-linux-musl-debug-20220220T1113.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.10.2-x86_64-unknown-linux-musl-lto-20220220T1113.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.10.2-x86_64-unknown-linux-musl-noopt-20220220T1113.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.10.2-x86_64_v2-unknown-linux-gnu-debug-20220220T1113.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.10.2-x86_64_v2-unknown-linux-gnu-lto-20220220T1113.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.10.2-x86_64_v2-unknown-linux-gnu-pgo%2Blto-20220220T1113.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.10.2-x86_64_v2-unknown-linux-gnu-pgo-20220220T1113.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.10.2-x86_64_v2-unknown-linux-musl-debug-20220220T1113.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.10.2-x86_64_v2-unknown-linux-musl-lto-20220220T1113.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.10.2-x86_64_v2-unknown-linux-musl-noopt-20220220T1113.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.10.2-x86_64_v3-unknown-linux-gnu-debug-20220220T1113.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.10.2-x86_64_v3-unknown-linux-gnu-lto-20220220T1113.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.10.2-x86_64_v3-unknown-linux-gnu-pgo%2Blto-20220220T1113.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.10.2-x86_64_v3-unknown-linux-gnu-pgo-20220220T1113.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.10.2-x86_64_v3-unknown-linux-musl-debug-20220220T1113.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.10.2-x86_64_v3-unknown-linux-musl-lto-20220220T1113.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.10.2-x86_64_v3-unknown-linux-musl-noopt-20220220T1113.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.10.2-x86_64_v4-unknown-linux-gnu-debug-20220220T1113.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.10.2-x86_64_v4-unknown-linux-gnu-lto-20220220T1113.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.10.2-x86_64_v4-unknown-linux-gnu-noopt-20220220T1113.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.10.2-x86_64_v4-unknown-linux-musl-debug-20220220T1113.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.10.2-x86_64_v4-unknown-linux-musl-lto-20220220T1113.tar.zst"), + Release::new("cpython", "3.10.2", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.10.2-x86_64_v4-unknown-linux-musl-noopt-20220220T1113.tar.zst"), + Release::new("cpython", "3.8.12", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.8.12-i686-pc-windows-msvc-shared-pgo-20220220T1113.tar.zst"), + Release::new("cpython", "3.8.12", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.8.12-i686-pc-windows-msvc-static-noopt-20220220T1113.tar.zst"), + Release::new("cpython", "3.8.12", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.8.12-i686-unknown-linux-gnu-debug-20220220T1113.tar.zst"), + Release::new("cpython", "3.8.12", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.8.12-i686-unknown-linux-gnu-lto-20220220T1113.tar.zst"), + Release::new("cpython", "3.8.12", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.8.12-i686-unknown-linux-gnu-pgo%2Blto-20220220T1113.tar.zst"), + Release::new("cpython", "3.8.12", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.8.12-i686-unknown-linux-gnu-pgo-20220220T1113.tar.zst"), + Release::new("cpython", "3.8.12", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.8.12-x86_64-apple-darwin-debug-20220220T1113.tar.zst"), + Release::new("cpython", "3.8.12", "apple", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.8.12-x86_64-apple-darwin-lto-20220220T1113.tar.zst"), + Release::new("cpython", "3.8.12", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.8.12-x86_64-apple-darwin-pgo%2Blto-20220220T1113.tar.zst"), + Release::new("cpython", "3.8.12", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.8.12-x86_64-apple-darwin-pgo-20220220T1113.tar.zst"), + Release::new("cpython", "3.8.12", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.8.12-x86_64-pc-windows-msvc-shared-pgo-20220220T1113.tar.zst"), + Release::new("cpython", "3.8.12", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.8.12-x86_64-pc-windows-msvc-static-noopt-20220220T1113.tar.zst"), + Release::new("cpython", "3.8.12", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.8.12-x86_64-unknown-linux-gnu-debug-20220220T1113.tar.zst"), + Release::new("cpython", "3.8.12", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.8.12-x86_64-unknown-linux-gnu-lto-20220220T1113.tar.zst"), + Release::new("cpython", "3.8.12", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.8.12-x86_64-unknown-linux-gnu-pgo%2Blto-20220220T1113.tar.zst"), + Release::new("cpython", "3.8.12", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.8.12-x86_64-unknown-linux-gnu-pgo-20220220T1113.tar.zst"), + Release::new("cpython", "3.8.12", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.8.12-x86_64-unknown-linux-musl-debug-20220220T1113.tar.zst"), + Release::new("cpython", "3.8.12", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.8.12-x86_64-unknown-linux-musl-lto-20220220T1113.tar.zst"), + Release::new("cpython", "3.8.12", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.8.12-x86_64-unknown-linux-musl-noopt-20220220T1113.tar.zst"), + Release::new("cpython", "3.9.10", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.9.10-aarch64-apple-darwin-debug-20220220T1113.tar.zst"), + Release::new("cpython", "3.9.10", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.9.10-aarch64-apple-darwin-install_only-20220220T1113.tar.gz"), + Release::new("cpython", "3.9.10", "apple", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.9.10-aarch64-apple-darwin-lto-20220220T1113.tar.zst"), + Release::new("cpython", "3.9.10", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.9.10-aarch64-apple-darwin-pgo%2Blto-20220220T1113.tar.zst"), + Release::new("cpython", "3.9.10", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.9.10-aarch64-apple-darwin-pgo-20220220T1113.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.9.10-aarch64-unknown-linux-gnu-debug-20220220T1113.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.9.10-aarch64-unknown-linux-gnu-lto-20220220T1113.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "aarch64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.9.10-aarch64-unknown-linux-gnu-noopt-20220220T1113.tar.zst"), + Release::new("cpython", "3.9.10", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.9.10-i686-pc-windows-msvc-shared-pgo-20220220T1113.tar.zst"), + Release::new("cpython", "3.9.10", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.9.10-i686-pc-windows-msvc-static-noopt-20220220T1113.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.9.10-i686-unknown-linux-gnu-debug-20220220T1113.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.9.10-i686-unknown-linux-gnu-lto-20220220T1113.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.9.10-i686-unknown-linux-gnu-pgo%2Blto-20220220T1113.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.9.10-i686-unknown-linux-gnu-pgo-20220220T1113.tar.zst"), + Release::new("cpython", "3.9.10", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.9.10-x86_64-apple-darwin-debug-20220220T1113.tar.zst"), + Release::new("cpython", "3.9.10", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.9.10-x86_64-apple-darwin-install_only-20220220T1113.tar.gz"), + Release::new("cpython", "3.9.10", "apple", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.9.10-x86_64-apple-darwin-lto-20220220T1113.tar.zst"), + Release::new("cpython", "3.9.10", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.9.10-x86_64-apple-darwin-pgo%2Blto-20220220T1113.tar.zst"), + Release::new("cpython", "3.9.10", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.9.10-x86_64-apple-darwin-pgo-20220220T1113.tar.zst"), + Release::new("cpython", "3.9.10", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.9.10-x86_64-pc-windows-msvc-shared-install_only-20220220T1113.tar.gz"), + Release::new("cpython", "3.9.10", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.9.10-x86_64-pc-windows-msvc-shared-pgo-20220220T1113.tar.zst"), + Release::new("cpython", "3.9.10", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.9.10-x86_64-pc-windows-msvc-static-noopt-20220220T1113.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.9.10-x86_64-unknown-linux-gnu-debug-20220220T1113.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.9.10-x86_64-unknown-linux-gnu-install_only-20220220T1113.tar.gz"), + Release::new("cpython", "3.9.10", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.9.10-x86_64-unknown-linux-gnu-lto-20220220T1113.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.9.10-x86_64-unknown-linux-gnu-pgo%2Blto-20220220T1113.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.9.10-x86_64-unknown-linux-gnu-pgo-20220220T1113.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.9.10-x86_64-unknown-linux-musl-debug-20220220T1113.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.9.10-x86_64-unknown-linux-musl-lto-20220220T1113.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.9.10-x86_64-unknown-linux-musl-noopt-20220220T1113.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.9.10-x86_64_v2-unknown-linux-gnu-debug-20220220T1113.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.9.10-x86_64_v2-unknown-linux-gnu-lto-20220220T1113.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.9.10-x86_64_v2-unknown-linux-gnu-pgo%2Blto-20220220T1113.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.9.10-x86_64_v2-unknown-linux-gnu-pgo-20220220T1113.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.9.10-x86_64_v2-unknown-linux-musl-debug-20220220T1113.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.9.10-x86_64_v2-unknown-linux-musl-lto-20220220T1113.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.9.10-x86_64_v2-unknown-linux-musl-noopt-20220220T1113.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.9.10-x86_64_v3-unknown-linux-gnu-debug-20220220T1113.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.9.10-x86_64_v3-unknown-linux-gnu-lto-20220220T1113.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.9.10-x86_64_v3-unknown-linux-gnu-pgo%2Blto-20220220T1113.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.9.10-x86_64_v3-unknown-linux-gnu-pgo-20220220T1113.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.9.10-x86_64_v3-unknown-linux-musl-debug-20220220T1113.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.9.10-x86_64_v3-unknown-linux-musl-lto-20220220T1113.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.9.10-x86_64_v3-unknown-linux-musl-noopt-20220220T1113.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.9.10-x86_64_v4-unknown-linux-gnu-debug-20220220T1113.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.9.10-x86_64_v4-unknown-linux-gnu-lto-20220220T1113.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.9.10-x86_64_v4-unknown-linux-gnu-noopt-20220220T1113.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.9.10-x86_64_v4-unknown-linux-musl-debug-20220220T1113.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.9.10-x86_64_v4-unknown-linux-musl-lto-20220220T1113.tar.zst"), + Release::new("cpython", "3.9.10", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20220222/cpython-3.9.10-x86_64_v4-unknown-linux-musl-noopt-20220220T1113.tar.zst"), + Release::new("cpython", "3.10.0", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.10.0-aarch64-apple-darwin-debug-20211017T1616.tar.zst"), + Release::new("cpython", "3.10.0", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.10.0-aarch64-apple-darwin-install_only-20211017T1616.tar.gz"), + Release::new("cpython", "3.10.0", "apple", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.10.0-aarch64-apple-darwin-lto-20211017T1616.tar.zst"), + Release::new("cpython", "3.10.0", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.10.0-aarch64-apple-darwin-pgo%2Blto-20211017T1616.tar.zst"), + Release::new("cpython", "3.10.0", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.10.0-aarch64-apple-darwin-pgo-20211017T1616.tar.zst"), + Release::new("cpython", "3.10.0", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.10.0-aarch64-unknown-linux-gnu-debug-20211017T1616.tar.zst"), + Release::new("cpython", "3.10.0", "linux", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.10.0-aarch64-unknown-linux-gnu-lto-20211017T1616.tar.zst"), + Release::new("cpython", "3.10.0", "linux", "aarch64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.10.0-aarch64-unknown-linux-gnu-noopt-20211017T1616.tar.zst"), + Release::new("cpython", "3.10.0", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.10.0-i686-pc-windows-msvc-shared-pgo-20211017T1616.tar.zst"), + Release::new("cpython", "3.10.0", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.10.0-i686-pc-windows-msvc-static-noopt-20211017T1616.tar.zst"), + Release::new("cpython", "3.10.0", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.10.0-i686-unknown-linux-gnu-debug-20211017T1616.tar.zst"), + Release::new("cpython", "3.10.0", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.10.0-i686-unknown-linux-gnu-lto-20211017T1616.tar.zst"), + Release::new("cpython", "3.10.0", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.10.0-i686-unknown-linux-gnu-pgo%2Blto-20211017T1616.tar.zst"), + Release::new("cpython", "3.10.0", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.10.0-i686-unknown-linux-gnu-pgo-20211017T1616.tar.zst"), + Release::new("cpython", "3.10.0", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.10.0-x86_64-apple-darwin-debug-20211017T1616.tar.zst"), + Release::new("cpython", "3.10.0", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.10.0-x86_64-apple-darwin-install_only-20211017T1616.tar.gz"), + Release::new("cpython", "3.10.0", "apple", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.10.0-x86_64-apple-darwin-lto-20211017T1616.tar.zst"), + Release::new("cpython", "3.10.0", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.10.0-x86_64-apple-darwin-pgo%2Blto-20211017T1616.tar.zst"), + Release::new("cpython", "3.10.0", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.10.0-x86_64-apple-darwin-pgo-20211017T1616.tar.zst"), + Release::new("cpython", "3.10.0", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.10.0-x86_64-pc-windows-msvc-shared-install_only-20211017T1616.tar.gz"), + Release::new("cpython", "3.10.0", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.10.0-x86_64-pc-windows-msvc-shared-pgo-20211017T1616.tar.zst"), + Release::new("cpython", "3.10.0", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.10.0-x86_64-pc-windows-msvc-static-noopt-20211017T1616.tar.zst"), + Release::new("cpython", "3.10.0", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.10.0-x86_64-unknown-linux-gnu-debug-20211017T1616.tar.zst"), + Release::new("cpython", "3.10.0", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.10.0-x86_64-unknown-linux-gnu-install_only-20211017T1616.tar.gz"), + Release::new("cpython", "3.10.0", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.10.0-x86_64-unknown-linux-gnu-lto-20211017T1616.tar.zst"), + Release::new("cpython", "3.10.0", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.10.0-x86_64-unknown-linux-gnu-pgo%2Blto-20211017T1616.tar.zst"), + Release::new("cpython", "3.10.0", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.10.0-x86_64-unknown-linux-gnu-pgo-20211017T1616.tar.zst"), + Release::new("cpython", "3.10.0", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.10.0-x86_64-unknown-linux-musl-debug-20211017T1616.tar.zst"), + Release::new("cpython", "3.10.0", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.10.0-x86_64-unknown-linux-musl-lto-20211017T1616.tar.zst"), + Release::new("cpython", "3.10.0", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.10.0-x86_64-unknown-linux-musl-noopt-20211017T1616.tar.zst"), + Release::new("cpython", "3.8.12", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.8.12-i686-pc-windows-msvc-shared-pgo-20211017T1616.tar.zst"), + Release::new("cpython", "3.8.12", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.8.12-i686-pc-windows-msvc-static-noopt-20211017T1616.tar.zst"), + Release::new("cpython", "3.8.12", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.8.12-i686-unknown-linux-gnu-debug-20211017T1616.tar.zst"), + Release::new("cpython", "3.8.12", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.8.12-i686-unknown-linux-gnu-lto-20211017T1616.tar.zst"), + Release::new("cpython", "3.8.12", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.8.12-i686-unknown-linux-gnu-pgo%2Blto-20211017T1616.tar.zst"), + Release::new("cpython", "3.8.12", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.8.12-i686-unknown-linux-gnu-pgo-20211017T1616.tar.zst"), + Release::new("cpython", "3.8.12", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.8.12-x86_64-apple-darwin-debug-20211017T1616.tar.zst"), + Release::new("cpython", "3.8.12", "apple", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.8.12-x86_64-apple-darwin-lto-20211017T1616.tar.zst"), + Release::new("cpython", "3.8.12", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.8.12-x86_64-apple-darwin-pgo%2Blto-20211017T1616.tar.zst"), + Release::new("cpython", "3.8.12", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.8.12-x86_64-apple-darwin-pgo-20211017T1616.tar.zst"), + Release::new("cpython", "3.8.12", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.8.12-x86_64-pc-windows-msvc-shared-pgo-20211017T1616.tar.zst"), + Release::new("cpython", "3.8.12", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.8.12-x86_64-pc-windows-msvc-static-noopt-20211017T1616.tar.zst"), + Release::new("cpython", "3.8.12", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.8.12-x86_64-unknown-linux-gnu-debug-20211017T1616.tar.zst"), + Release::new("cpython", "3.8.12", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.8.12-x86_64-unknown-linux-gnu-lto-20211017T1616.tar.zst"), + Release::new("cpython", "3.8.12", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.8.12-x86_64-unknown-linux-gnu-pgo%2Blto-20211017T1616.tar.zst"), + Release::new("cpython", "3.8.12", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.8.12-x86_64-unknown-linux-gnu-pgo-20211017T1616.tar.zst"), + Release::new("cpython", "3.8.12", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.8.12-x86_64-unknown-linux-musl-debug-20211017T1616.tar.zst"), + Release::new("cpython", "3.8.12", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.8.12-x86_64-unknown-linux-musl-lto-20211017T1616.tar.zst"), + Release::new("cpython", "3.8.12", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.8.12-x86_64-unknown-linux-musl-noopt-20211017T1616.tar.zst"), + Release::new("cpython", "3.9.7", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.9.7-aarch64-apple-darwin-debug-20211017T1616.tar.zst"), + Release::new("cpython", "3.9.7", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.9.7-aarch64-apple-darwin-install_only-20211017T1616.tar.gz"), + Release::new("cpython", "3.9.7", "apple", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.9.7-aarch64-apple-darwin-lto-20211017T1616.tar.zst"), + Release::new("cpython", "3.9.7", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.9.7-aarch64-apple-darwin-pgo%2Blto-20211017T1616.tar.zst"), + Release::new("cpython", "3.9.7", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.9.7-aarch64-apple-darwin-pgo-20211017T1616.tar.zst"), + Release::new("cpython", "3.9.7", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.9.7-aarch64-unknown-linux-gnu-debug-20211017T1616.tar.zst"), + Release::new("cpython", "3.9.7", "linux", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.9.7-aarch64-unknown-linux-gnu-lto-20211017T1616.tar.zst"), + Release::new("cpython", "3.9.7", "linux", "aarch64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.9.7-aarch64-unknown-linux-gnu-noopt-20211017T1616.tar.zst"), + Release::new("cpython", "3.9.7", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.9.7-i686-pc-windows-msvc-shared-pgo-20211017T1616.tar.zst"), + Release::new("cpython", "3.9.7", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.9.7-i686-pc-windows-msvc-static-noopt-20211017T1616.tar.zst"), + Release::new("cpython", "3.9.7", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.9.7-i686-unknown-linux-gnu-debug-20211017T1616.tar.zst"), + Release::new("cpython", "3.9.7", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.9.7-i686-unknown-linux-gnu-lto-20211017T1616.tar.zst"), + Release::new("cpython", "3.9.7", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.9.7-i686-unknown-linux-gnu-pgo%2Blto-20211017T1616.tar.zst"), + Release::new("cpython", "3.9.7", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.9.7-i686-unknown-linux-gnu-pgo-20211017T1616.tar.zst"), + Release::new("cpython", "3.9.7", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.9.7-x86_64-apple-darwin-debug-20211017T1616.tar.zst"), + Release::new("cpython", "3.9.7", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.9.7-x86_64-apple-darwin-install_only-20211017T1616.tar.gz"), + Release::new("cpython", "3.9.7", "apple", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.9.7-x86_64-apple-darwin-lto-20211017T1616.tar.zst"), + Release::new("cpython", "3.9.7", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.9.7-x86_64-apple-darwin-pgo%2Blto-20211017T1616.tar.zst"), + Release::new("cpython", "3.9.7", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.9.7-x86_64-apple-darwin-pgo-20211017T1616.tar.zst"), + Release::new("cpython", "3.9.7", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.9.7-x86_64-pc-windows-msvc-shared-install_only-20211017T1616.tar.gz"), + Release::new("cpython", "3.9.7", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.9.7-x86_64-pc-windows-msvc-shared-pgo-20211017T1616.tar.zst"), + Release::new("cpython", "3.9.7", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.9.7-x86_64-pc-windows-msvc-static-noopt-20211017T1616.tar.zst"), + Release::new("cpython", "3.9.7", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.9.7-x86_64-unknown-linux-gnu-debug-20211017T1616.tar.zst"), + Release::new("cpython", "3.9.7", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.9.7-x86_64-unknown-linux-gnu-install_only-20211017T1616.tar.gz"), + Release::new("cpython", "3.9.7", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.9.7-x86_64-unknown-linux-gnu-lto-20211017T1616.tar.zst"), + Release::new("cpython", "3.9.7", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.9.7-x86_64-unknown-linux-gnu-pgo%2Blto-20211017T1616.tar.zst"), + Release::new("cpython", "3.9.7", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.9.7-x86_64-unknown-linux-gnu-pgo-20211017T1616.tar.zst"), + Release::new("cpython", "3.9.7", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.9.7-x86_64-unknown-linux-musl-debug-20211017T1616.tar.zst"), + Release::new("cpython", "3.9.7", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.9.7-x86_64-unknown-linux-musl-lto-20211017T1616.tar.zst"), + Release::new("cpython", "3.9.7", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20211017/cpython-3.9.7-x86_64-unknown-linux-musl-noopt-20211017T1616.tar.zst"), + Release::new("cpython", "3.10.0", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.10.0-aarch64-apple-darwin-debug-20211011T1926.tar.zst"), + Release::new("cpython", "3.10.0", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.10.0-aarch64-apple-darwin-install_only-20211011T1926.tar.gz"), + Release::new("cpython", "3.10.0", "apple", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.10.0-aarch64-apple-darwin-lto-20211011T1926.tar.zst"), + Release::new("cpython", "3.10.0", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.10.0-aarch64-apple-darwin-pgo%2Blto-20211011T1926.tar.zst"), + Release::new("cpython", "3.10.0", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.10.0-aarch64-apple-darwin-pgo-20211011T1926.tar.zst"), + Release::new("cpython", "3.10.0", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.10.0-aarch64-unknown-linux-gnu-debug-20211011T1926.tar.zst"), + Release::new("cpython", "3.10.0", "linux", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.10.0-aarch64-unknown-linux-gnu-lto-20211011T1926.tar.zst"), + Release::new("cpython", "3.10.0", "linux", "aarch64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.10.0-aarch64-unknown-linux-gnu-noopt-20211011T1926.tar.zst"), + Release::new("cpython", "3.10.0", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.10.0-i686-pc-windows-msvc-shared-pgo-20211011T1926.tar.zst"), + Release::new("cpython", "3.10.0", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.10.0-i686-pc-windows-msvc-static-noopt-20211011T1926.tar.zst"), + Release::new("cpython", "3.10.0", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.10.0-i686-unknown-linux-gnu-debug-20211011T1926.tar.zst"), + Release::new("cpython", "3.10.0", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.10.0-i686-unknown-linux-gnu-lto-20211011T1926.tar.zst"), + Release::new("cpython", "3.10.0", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.10.0-i686-unknown-linux-gnu-pgo%2Blto-20211011T1926.tar.zst"), + Release::new("cpython", "3.10.0", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.10.0-i686-unknown-linux-gnu-pgo-20211011T1926.tar.zst"), + Release::new("cpython", "3.10.0", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.10.0-x86_64-apple-darwin-debug-20211011T1926.tar.zst"), + Release::new("cpython", "3.10.0", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.10.0-x86_64-apple-darwin-install_only-20211011T1926.tar.gz"), + Release::new("cpython", "3.10.0", "apple", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.10.0-x86_64-apple-darwin-lto-20211011T1926.tar.zst"), + Release::new("cpython", "3.10.0", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.10.0-x86_64-apple-darwin-pgo%2Blto-20211011T1926.tar.zst"), + Release::new("cpython", "3.10.0", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.10.0-x86_64-apple-darwin-pgo-20211011T1926.tar.zst"), + Release::new("cpython", "3.10.0", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.10.0-x86_64-pc-windows-msvc-shared-install_only-20211011T1926.tar.gz"), + Release::new("cpython", "3.10.0", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.10.0-x86_64-pc-windows-msvc-shared-pgo-20211011T1926.tar.zst"), + Release::new("cpython", "3.10.0", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.10.0-x86_64-pc-windows-msvc-static-noopt-20211011T1926.tar.zst"), + Release::new("cpython", "3.10.0", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.10.0-x86_64-unknown-linux-gnu-debug-20211011T1926.tar.zst"), + Release::new("cpython", "3.10.0", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.10.0-x86_64-unknown-linux-gnu-install_only-20211011T1926.tar.gz"), + Release::new("cpython", "3.10.0", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.10.0-x86_64-unknown-linux-gnu-lto-20211011T1926.tar.zst"), + Release::new("cpython", "3.10.0", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.10.0-x86_64-unknown-linux-gnu-pgo%2Blto-20211011T1926.tar.zst"), + Release::new("cpython", "3.10.0", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.10.0-x86_64-unknown-linux-gnu-pgo-20211011T1926.tar.zst"), + Release::new("cpython", "3.10.0", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.10.0-x86_64-unknown-linux-musl-debug-20211011T1926.tar.zst"), + Release::new("cpython", "3.10.0", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.10.0-x86_64-unknown-linux-musl-lto-20211011T1926.tar.zst"), + Release::new("cpython", "3.10.0", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.10.0-x86_64-unknown-linux-musl-noopt-20211011T1926.tar.zst"), + Release::new("cpython", "3.8.12", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.8.12-i686-pc-windows-msvc-shared-pgo-20211011T1926.tar.zst"), + Release::new("cpython", "3.8.12", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.8.12-i686-pc-windows-msvc-static-noopt-20211011T1926.tar.zst"), + Release::new("cpython", "3.8.12", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.8.12-i686-unknown-linux-gnu-debug-20211011T1926.tar.zst"), + Release::new("cpython", "3.8.12", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.8.12-i686-unknown-linux-gnu-lto-20211011T1926.tar.zst"), + Release::new("cpython", "3.8.12", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.8.12-i686-unknown-linux-gnu-pgo%2Blto-20211011T1926.tar.zst"), + Release::new("cpython", "3.8.12", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.8.12-i686-unknown-linux-gnu-pgo-20211011T1926.tar.zst"), + Release::new("cpython", "3.8.12", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.8.12-x86_64-apple-darwin-debug-20211011T1926.tar.zst"), + Release::new("cpython", "3.8.12", "apple", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.8.12-x86_64-apple-darwin-lto-20211011T1926.tar.zst"), + Release::new("cpython", "3.8.12", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.8.12-x86_64-apple-darwin-pgo%2Blto-20211011T1926.tar.zst"), + Release::new("cpython", "3.8.12", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.8.12-x86_64-apple-darwin-pgo-20211011T1926.tar.zst"), + Release::new("cpython", "3.8.12", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.8.12-x86_64-pc-windows-msvc-shared-pgo-20211011T1926.tar.zst"), + Release::new("cpython", "3.8.12", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.8.12-x86_64-pc-windows-msvc-static-noopt-20211011T1926.tar.zst"), + Release::new("cpython", "3.8.12", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.8.12-x86_64-unknown-linux-gnu-debug-20211011T1926.tar.zst"), + Release::new("cpython", "3.8.12", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.8.12-x86_64-unknown-linux-gnu-lto-20211011T1926.tar.zst"), + Release::new("cpython", "3.8.12", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.8.12-x86_64-unknown-linux-gnu-pgo%2Blto-20211011T1926.tar.zst"), + Release::new("cpython", "3.8.12", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.8.12-x86_64-unknown-linux-gnu-pgo-20211011T1926.tar.zst"), + Release::new("cpython", "3.8.12", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.8.12-x86_64-unknown-linux-musl-debug-20211011T1926.tar.zst"), + Release::new("cpython", "3.8.12", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.8.12-x86_64-unknown-linux-musl-lto-20211011T1926.tar.zst"), + Release::new("cpython", "3.8.12", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.8.12-x86_64-unknown-linux-musl-noopt-20211011T1926.tar.zst"), + Release::new("cpython", "3.9.7", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.9.7-aarch64-apple-darwin-debug-20211011T1926.tar.zst"), + Release::new("cpython", "3.9.7", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.9.7-aarch64-apple-darwin-install_only-20211011T1926.tar.gz"), + Release::new("cpython", "3.9.7", "apple", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.9.7-aarch64-apple-darwin-lto-20211011T1926.tar.zst"), + Release::new("cpython", "3.9.7", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.9.7-aarch64-apple-darwin-pgo%2Blto-20211011T1926.tar.zst"), + Release::new("cpython", "3.9.7", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.9.7-aarch64-apple-darwin-pgo-20211011T1926.tar.zst"), + Release::new("cpython", "3.9.7", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.9.7-aarch64-unknown-linux-gnu-debug-20211011T1926.tar.zst"), + Release::new("cpython", "3.9.7", "linux", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.9.7-aarch64-unknown-linux-gnu-lto-20211011T1926.tar.zst"), + Release::new("cpython", "3.9.7", "linux", "aarch64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.9.7-aarch64-unknown-linux-gnu-noopt-20211011T1926.tar.zst"), + Release::new("cpython", "3.9.7", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.9.7-i686-pc-windows-msvc-shared-pgo-20211011T1926.tar.zst"), + Release::new("cpython", "3.9.7", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.9.7-i686-pc-windows-msvc-static-noopt-20211011T1926.tar.zst"), + Release::new("cpython", "3.9.7", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.9.7-i686-unknown-linux-gnu-debug-20211011T1926.tar.zst"), + Release::new("cpython", "3.9.7", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.9.7-i686-unknown-linux-gnu-lto-20211011T1926.tar.zst"), + Release::new("cpython", "3.9.7", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.9.7-i686-unknown-linux-gnu-pgo%2Blto-20211011T1926.tar.zst"), + Release::new("cpython", "3.9.7", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.9.7-i686-unknown-linux-gnu-pgo-20211011T1926.tar.zst"), + Release::new("cpython", "3.9.7", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.9.7-x86_64-apple-darwin-debug-20211011T1926.tar.zst"), + Release::new("cpython", "3.9.7", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.9.7-x86_64-apple-darwin-install_only-20211011T1926.tar.gz"), + Release::new("cpython", "3.9.7", "apple", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.9.7-x86_64-apple-darwin-lto-20211011T1926.tar.zst"), + Release::new("cpython", "3.9.7", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.9.7-x86_64-apple-darwin-pgo%2Blto-20211011T1926.tar.zst"), + Release::new("cpython", "3.9.7", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.9.7-x86_64-apple-darwin-pgo-20211011T1926.tar.zst"), + Release::new("cpython", "3.9.7", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.9.7-x86_64-pc-windows-msvc-shared-install_only-20211011T1926.tar.gz"), + Release::new("cpython", "3.9.7", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.9.7-x86_64-pc-windows-msvc-shared-pgo-20211011T1926.tar.zst"), + Release::new("cpython", "3.9.7", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.9.7-x86_64-pc-windows-msvc-static-noopt-20211011T1926.tar.zst"), + Release::new("cpython", "3.9.7", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.9.7-x86_64-unknown-linux-gnu-debug-20211011T1926.tar.zst"), + Release::new("cpython", "3.9.7", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.9.7-x86_64-unknown-linux-gnu-install_only-20211011T1926.tar.gz"), + Release::new("cpython", "3.9.7", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.9.7-x86_64-unknown-linux-gnu-lto-20211011T1926.tar.zst"), + Release::new("cpython", "3.9.7", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.9.7-x86_64-unknown-linux-gnu-pgo%2Blto-20211011T1926.tar.zst"), + Release::new("cpython", "3.9.7", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.9.7-x86_64-unknown-linux-gnu-pgo-20211011T1926.tar.zst"), + Release::new("cpython", "3.9.7", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.9.7-x86_64-unknown-linux-musl-debug-20211011T1926.tar.zst"), + Release::new("cpython", "3.9.7", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.9.7-x86_64-unknown-linux-musl-lto-20211011T1926.tar.zst"), + Release::new("cpython", "3.9.7", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20211012/cpython-3.9.7-x86_64-unknown-linux-musl-noopt-20211011T1926.tar.zst"), + Release::new("cpython", "3.8.11", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210724/cpython-3.8.11-i686-pc-windows-msvc-shared-pgo-20210724T1424.tar.zst"), + Release::new("cpython", "3.8.11", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20210724/cpython-3.8.11-i686-pc-windows-msvc-static-noopt-20210724T1424.tar.zst"), + Release::new("cpython", "3.8.11", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210724/cpython-3.8.11-i686-unknown-linux-gnu-debug-20210724T1424.tar.zst"), + Release::new("cpython", "3.8.11", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20210724/cpython-3.8.11-i686-unknown-linux-gnu-lto-20210724T1424.tar.zst"), + Release::new("cpython", "3.8.11", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210724/cpython-3.8.11-i686-unknown-linux-gnu-pgo%2Blto-20210724T1424.tar.zst"), + Release::new("cpython", "3.8.11", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210724/cpython-3.8.11-i686-unknown-linux-gnu-pgo-20210724T1424.tar.zst"), + Release::new("cpython", "3.8.11", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210724/cpython-3.8.11-x86_64-apple-darwin-debug-20210724T1424.tar.zst"), + Release::new("cpython", "3.8.11", "apple", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20210724/cpython-3.8.11-x86_64-apple-darwin-lto-20210724T1424.tar.zst"), + Release::new("cpython", "3.8.11", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210724/cpython-3.8.11-x86_64-apple-darwin-pgo%2Blto-20210724T1424.tar.zst"), + Release::new("cpython", "3.8.11", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210724/cpython-3.8.11-x86_64-apple-darwin-pgo-20210724T1424.tar.zst"), + Release::new("cpython", "3.8.11", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210724/cpython-3.8.11-x86_64-pc-windows-msvc-shared-pgo-20210724T1424.tar.zst"), + Release::new("cpython", "3.8.11", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20210724/cpython-3.8.11-x86_64-pc-windows-msvc-static-noopt-20210724T1424.tar.zst"), + Release::new("cpython", "3.8.11", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210724/cpython-3.8.11-x86_64-unknown-linux-gnu-debug-20210724T1424.tar.zst"), + Release::new("cpython", "3.8.11", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20210724/cpython-3.8.11-x86_64-unknown-linux-gnu-lto-20210724T1424.tar.zst"), + Release::new("cpython", "3.8.11", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210724/cpython-3.8.11-x86_64-unknown-linux-gnu-pgo%2Blto-20210724T1424.tar.zst"), + Release::new("cpython", "3.8.11", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210724/cpython-3.8.11-x86_64-unknown-linux-gnu-pgo-20210724T1424.tar.zst"), + Release::new("cpython", "3.8.11", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210724/cpython-3.8.11-x86_64-unknown-linux-musl-debug-20210724T1424.tar.zst"), + Release::new("cpython", "3.8.11", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20210724/cpython-3.8.11-x86_64-unknown-linux-musl-lto-20210724T1424.tar.zst"), + Release::new("cpython", "3.8.11", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20210724/cpython-3.8.11-x86_64-unknown-linux-musl-noopt-20210724T1424.tar.zst"), + Release::new("cpython", "3.9.6", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210724/cpython-3.9.6-aarch64-apple-darwin-debug-20210724T1424.tar.zst"), + Release::new("cpython", "3.9.6", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210724/cpython-3.9.6-aarch64-apple-darwin-install_only-20210724T1424.tar.gz"), + Release::new("cpython", "3.9.6", "apple", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20210724/cpython-3.9.6-aarch64-apple-darwin-lto-20210724T1424.tar.zst"), + Release::new("cpython", "3.9.6", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210724/cpython-3.9.6-aarch64-apple-darwin-pgo%2Blto-20210724T1424.tar.zst"), + Release::new("cpython", "3.9.6", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210724/cpython-3.9.6-aarch64-apple-darwin-pgo-20210724T1424.tar.zst"), + Release::new("cpython", "3.9.6", "linux", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210724/cpython-3.9.6-aarch64-unknown-linux-gnu-debug-20210724T1424.tar.zst"), + Release::new("cpython", "3.9.6", "linux", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20210724/cpython-3.9.6-aarch64-unknown-linux-gnu-lto-20210724T1424.tar.zst"), + Release::new("cpython", "3.9.6", "linux", "aarch64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20210724/cpython-3.9.6-aarch64-unknown-linux-gnu-noopt-20210724T1424.tar.zst"), + Release::new("cpython", "3.9.6", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210724/cpython-3.9.6-i686-pc-windows-msvc-shared-pgo-20210724T1424.tar.zst"), + Release::new("cpython", "3.9.6", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20210724/cpython-3.9.6-i686-pc-windows-msvc-static-noopt-20210724T1424.tar.zst"), + Release::new("cpython", "3.9.6", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210724/cpython-3.9.6-i686-unknown-linux-gnu-debug-20210724T1424.tar.zst"), + Release::new("cpython", "3.9.6", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20210724/cpython-3.9.6-i686-unknown-linux-gnu-lto-20210724T1424.tar.zst"), + Release::new("cpython", "3.9.6", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210724/cpython-3.9.6-i686-unknown-linux-gnu-pgo%2Blto-20210724T1424.tar.zst"), + Release::new("cpython", "3.9.6", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210724/cpython-3.9.6-i686-unknown-linux-gnu-pgo-20210724T1424.tar.zst"), + Release::new("cpython", "3.9.6", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210724/cpython-3.9.6-x86_64-apple-darwin-debug-20210724T1424.tar.zst"), + Release::new("cpython", "3.9.6", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210724/cpython-3.9.6-x86_64-apple-darwin-install_only-20210724T1424.tar.gz"), + Release::new("cpython", "3.9.6", "apple", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20210724/cpython-3.9.6-x86_64-apple-darwin-lto-20210724T1424.tar.zst"), + Release::new("cpython", "3.9.6", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210724/cpython-3.9.6-x86_64-apple-darwin-pgo%2Blto-20210724T1424.tar.zst"), + Release::new("cpython", "3.9.6", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210724/cpython-3.9.6-x86_64-apple-darwin-pgo-20210724T1424.tar.zst"), + Release::new("cpython", "3.9.6", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210724/cpython-3.9.6-x86_64-pc-windows-msvc-shared-install_only-20210724T1424.tar.gz"), + Release::new("cpython", "3.9.6", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210724/cpython-3.9.6-x86_64-pc-windows-msvc-shared-pgo-20210724T1424.tar.zst"), + Release::new("cpython", "3.9.6", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20210724/cpython-3.9.6-x86_64-pc-windows-msvc-static-noopt-20210724T1424.tar.zst"), + Release::new("cpython", "3.9.6", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210724/cpython-3.9.6-x86_64-unknown-linux-gnu-debug-20210724T1424.tar.zst"), + Release::new("cpython", "3.9.6", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210724/cpython-3.9.6-x86_64-unknown-linux-gnu-install_only-20210724T1424.tar.gz"), + Release::new("cpython", "3.9.6", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20210724/cpython-3.9.6-x86_64-unknown-linux-gnu-lto-20210724T1424.tar.zst"), + Release::new("cpython", "3.9.6", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210724/cpython-3.9.6-x86_64-unknown-linux-gnu-pgo%2Blto-20210724T1424.tar.zst"), + Release::new("cpython", "3.9.6", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210724/cpython-3.9.6-x86_64-unknown-linux-gnu-pgo-20210724T1424.tar.zst"), + Release::new("cpython", "3.9.6", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210724/cpython-3.9.6-x86_64-unknown-linux-musl-debug-20210724T1424.tar.zst"), + Release::new("cpython", "3.9.6", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20210724/cpython-3.9.6-x86_64-unknown-linux-musl-lto-20210724T1424.tar.zst"), + Release::new("cpython", "3.9.6", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20210724/cpython-3.9.6-x86_64-unknown-linux-musl-noopt-20210724T1424.tar.zst"), + Release::new("cpython", "3.8.10", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210506/cpython-3.8.10-i686-pc-windows-msvc-shared-pgo-20210506T0943.tar.zst"), + Release::new("cpython", "3.8.10", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20210506/cpython-3.8.10-i686-pc-windows-msvc-static-noopt-20210506T0943.tar.zst"), + Release::new("cpython", "3.8.10", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210506/cpython-3.8.10-i686-unknown-linux-gnu-debug-20210506T0943.tar.zst"), + Release::new("cpython", "3.8.10", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210506/cpython-3.8.10-i686-unknown-linux-gnu-pgo%2Blto-20210506T0943.tar.zst"), + Release::new("cpython", "3.8.10", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210506/cpython-3.8.10-i686-unknown-linux-gnu-pgo-20210506T0943.tar.zst"), + Release::new("cpython", "3.8.10", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210506/cpython-3.8.10-x86_64-apple-darwin-debug-20210506T0943.tar.zst"), + Release::new("cpython", "3.8.10", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210506/cpython-3.8.10-x86_64-apple-darwin-pgo%2Blto-20210506T0943.tar.zst"), + Release::new("cpython", "3.8.10", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210506/cpython-3.8.10-x86_64-apple-darwin-pgo-20210506T0943.tar.zst"), + Release::new("cpython", "3.8.10", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210506/cpython-3.8.10-x86_64-pc-windows-msvc-shared-pgo-20210506T0943.tar.zst"), + Release::new("cpython", "3.8.10", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20210506/cpython-3.8.10-x86_64-pc-windows-msvc-static-noopt-20210506T0943.tar.zst"), + Release::new("cpython", "3.8.10", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210506/cpython-3.8.10-x86_64-unknown-linux-gnu-debug-20210506T0943.tar.zst"), + Release::new("cpython", "3.8.10", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210506/cpython-3.8.10-x86_64-unknown-linux-gnu-pgo%2Blto-20210506T0943.tar.zst"), + Release::new("cpython", "3.8.10", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210506/cpython-3.8.10-x86_64-unknown-linux-gnu-pgo-20210506T0943.tar.zst"), + Release::new("cpython", "3.8.10", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210506/cpython-3.8.10-x86_64-unknown-linux-musl-debug-20210506T0943.tar.zst"), + Release::new("cpython", "3.8.10", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20210506/cpython-3.8.10-x86_64-unknown-linux-musl-lto-20210506T0943.tar.zst"), + Release::new("cpython", "3.8.10", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20210506/cpython-3.8.10-x86_64-unknown-linux-musl-noopt-20210506T0943.tar.zst"), + Release::new("cpython", "3.9.5", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210506/cpython-3.9.5-aarch64-apple-darwin-debug-20210506T0943.tar.zst"), + Release::new("cpython", "3.9.5", "apple", "aarch64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20210506/cpython-3.9.5-aarch64-apple-darwin-noopt-20210506T0943.tar.zst"), + Release::new("cpython", "3.9.5", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210506/cpython-3.9.5-aarch64-apple-darwin-pgo%2Blto-20210506T0943.tar.zst"), + Release::new("cpython", "3.9.5", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210506/cpython-3.9.5-aarch64-apple-darwin-pgo-20210506T0943.tar.zst"), + Release::new("cpython", "3.9.5", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210506/cpython-3.9.5-i686-pc-windows-msvc-shared-pgo-20210506T0943.tar.zst"), + Release::new("cpython", "3.9.5", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20210506/cpython-3.9.5-i686-pc-windows-msvc-static-noopt-20210506T0943.tar.zst"), + Release::new("cpython", "3.9.5", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210506/cpython-3.9.5-i686-unknown-linux-gnu-debug-20210506T0943.tar.zst"), + Release::new("cpython", "3.9.5", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210506/cpython-3.9.5-i686-unknown-linux-gnu-pgo%2Blto-20210506T0943.tar.zst"), + Release::new("cpython", "3.9.5", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210506/cpython-3.9.5-i686-unknown-linux-gnu-pgo-20210506T0943.tar.zst"), + Release::new("cpython", "3.9.5", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210506/cpython-3.9.5-x86_64-apple-darwin-debug-20210506T0943.tar.zst"), + Release::new("cpython", "3.9.5", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210506/cpython-3.9.5-x86_64-apple-darwin-pgo%2Blto-20210506T0943.tar.zst"), + Release::new("cpython", "3.9.5", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210506/cpython-3.9.5-x86_64-apple-darwin-pgo-20210506T0943.tar.zst"), + Release::new("cpython", "3.9.5", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210506/cpython-3.9.5-x86_64-pc-windows-msvc-shared-pgo-20210506T0943.tar.zst"), + Release::new("cpython", "3.9.5", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20210506/cpython-3.9.5-x86_64-pc-windows-msvc-static-noopt-20210506T0943.tar.zst"), + Release::new("cpython", "3.9.5", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210506/cpython-3.9.5-x86_64-unknown-linux-gnu-debug-20210506T0943.tar.zst"), + Release::new("cpython", "3.9.5", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210506/cpython-3.9.5-x86_64-unknown-linux-gnu-pgo%2Blto-20210506T0943.tar.zst"), + Release::new("cpython", "3.9.5", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210506/cpython-3.9.5-x86_64-unknown-linux-gnu-pgo-20210506T0943.tar.zst"), + Release::new("cpython", "3.9.5", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210506/cpython-3.9.5-x86_64-unknown-linux-musl-debug-20210506T0943.tar.zst"), + Release::new("cpython", "3.9.5", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20210506/cpython-3.9.5-x86_64-unknown-linux-musl-lto-20210506T0943.tar.zst"), + Release::new("cpython", "3.9.5", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20210506/cpython-3.9.5-x86_64-unknown-linux-musl-noopt-20210506T0943.tar.zst"), + Release::new("cpython", "3.8.9", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210415/cpython-3.8.9-i686-pc-windows-msvc-shared-pgo-20210414T1515.tar.zst"), + Release::new("cpython", "3.8.9", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20210415/cpython-3.8.9-i686-pc-windows-msvc-static-noopt-20210414T1515.tar.zst"), + Release::new("cpython", "3.8.9", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210415/cpython-3.8.9-i686-unknown-linux-gnu-debug-20210414T1515.tar.zst"), + Release::new("cpython", "3.8.9", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20210415/cpython-3.8.9-i686-unknown-linux-gnu-lto-20210414T1515.tar.zst"), + Release::new("cpython", "3.8.9", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210415/cpython-3.8.9-i686-unknown-linux-gnu-pgo%2Blto-20210414T1515.tar.zst"), + Release::new("cpython", "3.8.9", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210415/cpython-3.8.9-i686-unknown-linux-gnu-pgo-20210414T1515.tar.zst"), + Release::new("cpython", "3.8.9", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210415/cpython-3.8.9-x86_64-apple-darwin-debug-20210414T1515.tar.zst"), + Release::new("cpython", "3.8.9", "apple", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20210415/cpython-3.8.9-x86_64-apple-darwin-lto-20210414T1515.tar.zst"), + Release::new("cpython", "3.8.9", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210415/cpython-3.8.9-x86_64-apple-darwin-pgo%2Blto-20210414T1515.tar.zst"), + Release::new("cpython", "3.8.9", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210415/cpython-3.8.9-x86_64-apple-darwin-pgo-20210414T1515.tar.zst"), + Release::new("cpython", "3.8.9", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210415/cpython-3.8.9-x86_64-pc-windows-msvc-shared-pgo-20210414T1515.tar.zst"), + Release::new("cpython", "3.8.9", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20210415/cpython-3.8.9-x86_64-pc-windows-msvc-static-noopt-20210414T1515.tar.zst"), + Release::new("cpython", "3.8.9", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210415/cpython-3.8.9-x86_64-unknown-linux-gnu-debug-20210414T1515.tar.zst"), + Release::new("cpython", "3.8.9", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20210415/cpython-3.8.9-x86_64-unknown-linux-gnu-lto-20210414T1515.tar.zst"), + Release::new("cpython", "3.8.9", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210415/cpython-3.8.9-x86_64-unknown-linux-gnu-pgo%2Blto-20210414T1515.tar.zst"), + Release::new("cpython", "3.8.9", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210415/cpython-3.8.9-x86_64-unknown-linux-gnu-pgo-20210414T1515.tar.zst"), + Release::new("cpython", "3.8.9", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210415/cpython-3.8.9-x86_64-unknown-linux-musl-debug-20210414T1515.tar.zst"), + Release::new("cpython", "3.8.9", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20210415/cpython-3.8.9-x86_64-unknown-linux-musl-lto-20210414T1515.tar.zst"), + Release::new("cpython", "3.8.9", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20210415/cpython-3.8.9-x86_64-unknown-linux-musl-noopt-20210414T1515.tar.zst"), + Release::new("cpython", "3.9.4", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210415/cpython-3.9.4-aarch64-apple-darwin-debug-20210414T1515.tar.zst"), + Release::new("cpython", "3.9.4", "apple", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20210415/cpython-3.9.4-aarch64-apple-darwin-lto-20210414T1515.tar.zst"), + Release::new("cpython", "3.9.4", "apple", "aarch64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20210415/cpython-3.9.4-aarch64-apple-darwin-noopt-20210414T1515.tar.zst"), + Release::new("cpython", "3.9.4", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210415/cpython-3.9.4-aarch64-apple-darwin-pgo%2Blto-20210414T1515.tar.zst"), + Release::new("cpython", "3.9.4", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210415/cpython-3.9.4-aarch64-apple-darwin-pgo-20210414T1515.tar.zst"), + Release::new("cpython", "3.9.4", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210415/cpython-3.9.4-i686-pc-windows-msvc-shared-pgo-20210414T1515.tar.zst"), + Release::new("cpython", "3.9.4", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20210415/cpython-3.9.4-i686-pc-windows-msvc-static-noopt-20210414T1515.tar.zst"), + Release::new("cpython", "3.9.4", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210415/cpython-3.9.4-i686-unknown-linux-gnu-debug-20210414T1515.tar.zst"), + Release::new("cpython", "3.9.4", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20210415/cpython-3.9.4-i686-unknown-linux-gnu-lto-20210414T1515.tar.zst"), + Release::new("cpython", "3.9.4", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210415/cpython-3.9.4-i686-unknown-linux-gnu-pgo%2Blto-20210414T1515.tar.zst"), + Release::new("cpython", "3.9.4", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210415/cpython-3.9.4-i686-unknown-linux-gnu-pgo-20210414T1515.tar.zst"), + Release::new("cpython", "3.9.4", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210415/cpython-3.9.4-x86_64-apple-darwin-debug-20210414T1515.tar.zst"), + Release::new("cpython", "3.9.4", "apple", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20210415/cpython-3.9.4-x86_64-apple-darwin-lto-20210414T1515.tar.zst"), + Release::new("cpython", "3.9.4", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210415/cpython-3.9.4-x86_64-apple-darwin-pgo%2Blto-20210414T1515.tar.zst"), + Release::new("cpython", "3.9.4", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210415/cpython-3.9.4-x86_64-apple-darwin-pgo-20210414T1515.tar.zst"), + Release::new("cpython", "3.9.4", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210415/cpython-3.9.4-x86_64-pc-windows-msvc-shared-pgo-20210414T1515.tar.zst"), + Release::new("cpython", "3.9.4", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20210415/cpython-3.9.4-x86_64-pc-windows-msvc-static-noopt-20210414T1515.tar.zst"), + Release::new("cpython", "3.9.4", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210415/cpython-3.9.4-x86_64-unknown-linux-gnu-debug-20210414T1515.tar.zst"), + Release::new("cpython", "3.9.4", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20210415/cpython-3.9.4-x86_64-unknown-linux-gnu-lto-20210414T1515.tar.zst"), + Release::new("cpython", "3.9.4", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210415/cpython-3.9.4-x86_64-unknown-linux-gnu-pgo%2Blto-20210414T1515.tar.zst"), + Release::new("cpython", "3.9.4", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210415/cpython-3.9.4-x86_64-unknown-linux-gnu-pgo-20210414T1515.tar.zst"), + Release::new("cpython", "3.9.4", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210415/cpython-3.9.4-x86_64-unknown-linux-musl-debug-20210414T1515.tar.zst"), + Release::new("cpython", "3.9.4", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20210415/cpython-3.9.4-x86_64-unknown-linux-musl-lto-20210414T1515.tar.zst"), + Release::new("cpython", "3.9.4", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20210415/cpython-3.9.4-x86_64-unknown-linux-musl-noopt-20210414T1515.tar.zst"), + Release::new("cpython", "3.8.9", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210414/cpython-3.8.9-i686-pc-windows-msvc-shared-pgo-20210413T2055.tar.zst"), + Release::new("cpython", "3.8.9", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20210414/cpython-3.8.9-i686-pc-windows-msvc-static-noopt-20210413T2055.tar.zst"), + Release::new("cpython", "3.8.9", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210414/cpython-3.8.9-i686-unknown-linux-gnu-debug-20210413T2055.tar.zst"), + Release::new("cpython", "3.8.9", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20210414/cpython-3.8.9-i686-unknown-linux-gnu-lto-20210413T2055.tar.zst"), + Release::new("cpython", "3.8.9", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210414/cpython-3.8.9-i686-unknown-linux-gnu-pgo%2Blto-20210413T2055.tar.zst"), + Release::new("cpython", "3.8.9", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210414/cpython-3.8.9-i686-unknown-linux-gnu-pgo-20210413T2055.tar.zst"), + Release::new("cpython", "3.8.9", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210414/cpython-3.8.9-x86_64-apple-darwin-debug-20210413T2055.tar.zst"), + Release::new("cpython", "3.8.9", "apple", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20210414/cpython-3.8.9-x86_64-apple-darwin-lto-20210413T2055.tar.zst"), + Release::new("cpython", "3.8.9", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210414/cpython-3.8.9-x86_64-apple-darwin-pgo%2Blto-20210413T2055.tar.zst"), + Release::new("cpython", "3.8.9", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210414/cpython-3.8.9-x86_64-apple-darwin-pgo-20210413T2055.tar.zst"), + Release::new("cpython", "3.8.9", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210414/cpython-3.8.9-x86_64-pc-windows-msvc-shared-pgo-20210413T2055.tar.zst"), + Release::new("cpython", "3.8.9", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20210414/cpython-3.8.9-x86_64-pc-windows-msvc-static-noopt-20210413T2055.tar.zst"), + Release::new("cpython", "3.8.9", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210414/cpython-3.8.9-x86_64-unknown-linux-gnu-debug-20210413T2055.tar.zst"), + Release::new("cpython", "3.8.9", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20210414/cpython-3.8.9-x86_64-unknown-linux-gnu-lto-20210413T2055.tar.zst"), + Release::new("cpython", "3.8.9", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210414/cpython-3.8.9-x86_64-unknown-linux-gnu-pgo%2Blto-20210413T2055.tar.zst"), + Release::new("cpython", "3.8.9", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210414/cpython-3.8.9-x86_64-unknown-linux-gnu-pgo-20210413T2055.tar.zst"), + Release::new("cpython", "3.8.9", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210414/cpython-3.8.9-x86_64-unknown-linux-musl-debug-20210413T2055.tar.zst"), + Release::new("cpython", "3.8.9", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20210414/cpython-3.8.9-x86_64-unknown-linux-musl-lto-20210413T2055.tar.zst"), + Release::new("cpython", "3.8.9", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20210414/cpython-3.8.9-x86_64-unknown-linux-musl-noopt-20210413T2055.tar.zst"), + Release::new("cpython", "3.9.3", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210414/cpython-3.9.3-aarch64-apple-darwin-debug-20210413T2055.tar.zst"), + Release::new("cpython", "3.9.3", "apple", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20210414/cpython-3.9.3-aarch64-apple-darwin-lto-20210413T2055.tar.zst"), + Release::new("cpython", "3.9.3", "apple", "aarch64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20210414/cpython-3.9.3-aarch64-apple-darwin-noopt-20210413T2055.tar.zst"), + Release::new("cpython", "3.9.3", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210414/cpython-3.9.3-aarch64-apple-darwin-pgo%2Blto-20210413T2055.tar.zst"), + Release::new("cpython", "3.9.3", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210414/cpython-3.9.3-aarch64-apple-darwin-pgo-20210413T2055.tar.zst"), + Release::new("cpython", "3.9.3", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210414/cpython-3.9.3-i686-pc-windows-msvc-shared-pgo-20210413T2055.tar.zst"), + Release::new("cpython", "3.9.3", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20210414/cpython-3.9.3-i686-pc-windows-msvc-static-noopt-20210413T2055.tar.zst"), + Release::new("cpython", "3.9.3", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210414/cpython-3.9.3-x86_64-apple-darwin-debug-20210413T2055.tar.zst"), + Release::new("cpython", "3.9.3", "apple", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20210414/cpython-3.9.3-x86_64-apple-darwin-lto-20210413T2055.tar.zst"), + Release::new("cpython", "3.9.3", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210414/cpython-3.9.3-x86_64-apple-darwin-pgo%2Blto-20210413T2055.tar.zst"), + Release::new("cpython", "3.9.3", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210414/cpython-3.9.3-x86_64-apple-darwin-pgo-20210413T2055.tar.zst"), + Release::new("cpython", "3.9.3", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210414/cpython-3.9.3-x86_64-pc-windows-msvc-shared-pgo-20210413T2055.tar.zst"), + Release::new("cpython", "3.9.3", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20210414/cpython-3.9.3-x86_64-pc-windows-msvc-static-noopt-20210413T2055.tar.zst"), + Release::new("cpython", "3.9.3", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210414/cpython-3.9.3-x86_64-unknown-linux-gnu-debug-20210413T2055.tar.zst"), + Release::new("cpython", "3.9.3", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20210414/cpython-3.9.3-x86_64-unknown-linux-gnu-lto-20210413T2055.tar.zst"), + Release::new("cpython", "3.9.3", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210414/cpython-3.9.3-x86_64-unknown-linux-gnu-pgo%2Blto-20210413T2055.tar.zst"), + Release::new("cpython", "3.9.3", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210414/cpython-3.9.3-x86_64-unknown-linux-gnu-pgo-20210413T2055.tar.zst"), + Release::new("cpython", "3.9.3", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210414/cpython-3.9.3-x86_64-unknown-linux-musl-debug-20210413T2055.tar.zst"), + Release::new("cpython", "3.9.3", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20210414/cpython-3.9.3-x86_64-unknown-linux-musl-lto-20210413T2055.tar.zst"), + Release::new("cpython", "3.9.3", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20210414/cpython-3.9.3-x86_64-unknown-linux-musl-noopt-20210413T2055.tar.zst"), + Release::new("cpython", "3.8.8", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210327/cpython-3.8.8-i686-pc-windows-msvc-shared-pgo-20210327T1202.tar.zst"), + Release::new("cpython", "3.8.8", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20210327/cpython-3.8.8-i686-pc-windows-msvc-static-noopt-20210327T1202.tar.zst"), + Release::new("cpython", "3.8.8", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210327/cpython-3.8.8-i686-unknown-linux-gnu-debug-20210327T1202.tar.zst"), + Release::new("cpython", "3.8.8", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20210327/cpython-3.8.8-i686-unknown-linux-gnu-lto-20210327T1202.tar.zst"), + Release::new("cpython", "3.8.8", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210327/cpython-3.8.8-i686-unknown-linux-gnu-pgo%2Blto-20210327T1202.tar.zst"), + Release::new("cpython", "3.8.8", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210327/cpython-3.8.8-i686-unknown-linux-gnu-pgo-20210327T1202.tar.zst"), + Release::new("cpython", "3.8.8", "apple", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20210327/cpython-3.8.8-x86_64-apple-darwin-lto-20210327T1202.tar.zst"), + Release::new("cpython", "3.8.8", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210327/cpython-3.8.8-x86_64-apple-darwin-pgo%2Blto-20210327T1202.tar.zst"), + Release::new("cpython", "3.8.8", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210327/cpython-3.8.8-x86_64-apple-darwin-pgo-20210327T1202.tar.zst"), + Release::new("cpython", "3.8.8", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210327/cpython-3.8.8-x86_64-pc-windows-msvc-shared-pgo-20210327T1202.tar.zst"), + Release::new("cpython", "3.8.8", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20210327/cpython-3.8.8-x86_64-pc-windows-msvc-static-noopt-20210327T1202.tar.zst"), + Release::new("cpython", "3.8.8", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210327/cpython-3.8.8-x86_64-unknown-linux-gnu-debug-20210327T1202.tar.zst"), + Release::new("cpython", "3.8.8", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20210327/cpython-3.8.8-x86_64-unknown-linux-gnu-lto-20210327T1202.tar.zst"), + Release::new("cpython", "3.8.8", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210327/cpython-3.8.8-x86_64-unknown-linux-gnu-pgo%2Blto-20210327T1202.tar.zst"), + Release::new("cpython", "3.8.8", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210327/cpython-3.8.8-x86_64-unknown-linux-gnu-pgo-20210327T1202.tar.zst"), + Release::new("cpython", "3.8.8", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210327/cpython-3.8.8-x86_64-unknown-linux-musl-debug-20210327T1202.tar.zst"), + Release::new("cpython", "3.8.8", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20210327/cpython-3.8.8-x86_64-unknown-linux-musl-lto-20210327T1202.tar.zst"), + Release::new("cpython", "3.8.8", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20210327/cpython-3.8.8-x86_64-unknown-linux-musl-noopt-20210327T1202.tar.zst"), + Release::new("cpython", "3.9.2", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210327/cpython-3.9.2-aarch64-apple-darwin-debug-20210327T1202.tar.zst"), + Release::new("cpython", "3.9.2", "apple", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20210327/cpython-3.9.2-aarch64-apple-darwin-lto-20210327T1202.tar.zst"), + Release::new("cpython", "3.9.2", "apple", "aarch64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20210327/cpython-3.9.2-aarch64-apple-darwin-noopt-20210327T1202.tar.zst"), + Release::new("cpython", "3.9.2", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210327/cpython-3.9.2-aarch64-apple-darwin-pgo%2Blto-20210327T1202.tar.zst"), + Release::new("cpython", "3.9.2", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210327/cpython-3.9.2-aarch64-apple-darwin-pgo-20210327T1202.tar.zst"), + Release::new("cpython", "3.9.2", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210327/cpython-3.9.2-i686-pc-windows-msvc-shared-pgo-20210327T1202.tar.zst"), + Release::new("cpython", "3.9.2", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20210327/cpython-3.9.2-i686-pc-windows-msvc-static-noopt-20210327T1202.tar.zst"), + Release::new("cpython", "3.9.2", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210327/cpython-3.9.2-i686-unknown-linux-gnu-debug-20210327T1202.tar.zst"), + Release::new("cpython", "3.9.2", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20210327/cpython-3.9.2-i686-unknown-linux-gnu-lto-20210327T1202.tar.zst"), + Release::new("cpython", "3.9.2", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210327/cpython-3.9.2-i686-unknown-linux-gnu-pgo%2Blto-20210327T1202.tar.zst"), + Release::new("cpython", "3.9.2", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210327/cpython-3.9.2-i686-unknown-linux-gnu-pgo-20210327T1202.tar.zst"), + Release::new("cpython", "3.9.2", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210327/cpython-3.9.2-x86_64-apple-darwin-debug-20210327T1202.tar.zst"), + Release::new("cpython", "3.9.2", "apple", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20210327/cpython-3.9.2-x86_64-apple-darwin-lto-20210327T1202.tar.zst"), + Release::new("cpython", "3.9.2", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210327/cpython-3.9.2-x86_64-apple-darwin-pgo%2Blto-20210327T1202.tar.zst"), + Release::new("cpython", "3.9.2", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210327/cpython-3.9.2-x86_64-apple-darwin-pgo-20210327T1202.tar.zst"), + Release::new("cpython", "3.9.2", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210327/cpython-3.9.2-x86_64-pc-windows-msvc-shared-pgo-20210327T1202.tar.zst"), + Release::new("cpython", "3.9.2", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20210327/cpython-3.9.2-x86_64-pc-windows-msvc-static-noopt-20210327T1202.tar.zst"), + Release::new("cpython", "3.9.2", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210327/cpython-3.9.2-x86_64-unknown-linux-gnu-debug-20210327T1202.tar.zst"), + Release::new("cpython", "3.9.2", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20210327/cpython-3.9.2-x86_64-unknown-linux-gnu-lto-20210327T1202.tar.zst"), + Release::new("cpython", "3.9.2", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210327/cpython-3.9.2-x86_64-unknown-linux-gnu-pgo%2Blto-20210327T1202.tar.zst"), + Release::new("cpython", "3.9.2", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210327/cpython-3.9.2-x86_64-unknown-linux-gnu-pgo-20210327T1202.tar.zst"), + Release::new("cpython", "3.9.2", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210327/cpython-3.9.2-x86_64-unknown-linux-musl-debug-20210327T1202.tar.zst"), + Release::new("cpython", "3.9.2", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20210327/cpython-3.9.2-x86_64-unknown-linux-musl-lto-20210327T1202.tar.zst"), + Release::new("cpython", "3.9.2", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20210327/cpython-3.9.2-x86_64-unknown-linux-musl-noopt-20210327T1202.tar.zst"), + Release::new("cpython", "3.8.8", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210325/cpython-3.8.8-i686-pc-windows-msvc-shared-pgo-20210325T0901.tar.zst"), + Release::new("cpython", "3.8.8", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20210325/cpython-3.8.8-i686-pc-windows-msvc-static-noopt-20210325T0901.tar.zst"), + Release::new("cpython", "3.8.8", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210325/cpython-3.8.8-i686-unknown-linux-gnu-debug-20210325T0901.tar.zst"), + Release::new("cpython", "3.8.8", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210325/cpython-3.8.8-i686-unknown-linux-gnu-pgo%2Blto-20210325T0901.tar.zst"), + Release::new("cpython", "3.8.8", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210325/cpython-3.8.8-i686-unknown-linux-gnu-pgo-20210325T0901.tar.zst"), + Release::new("cpython", "3.8.8", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210325/cpython-3.8.8-x86_64-apple-darwin-debug-20210325T0901.tar.zst"), + Release::new("cpython", "3.8.8", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210325/cpython-3.8.8-x86_64-apple-darwin-pgo%2Blto-20210325T0901.tar.zst"), + Release::new("cpython", "3.8.8", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210325/cpython-3.8.8-x86_64-apple-darwin-pgo-20210325T0901.tar.zst"), + Release::new("cpython", "3.8.8", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210325/cpython-3.8.8-x86_64-pc-windows-msvc-shared-pgo-20210325T0901.tar.zst"), + Release::new("cpython", "3.8.8", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20210325/cpython-3.8.8-x86_64-pc-windows-msvc-static-noopt-20210325T0901.tar.zst"), + Release::new("cpython", "3.8.8", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210325/cpython-3.8.8-x86_64-unknown-linux-gnu-debug-20210325T0901.tar.zst"), + Release::new("cpython", "3.8.8", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210325/cpython-3.8.8-x86_64-unknown-linux-gnu-pgo%2Blto-20210325T0901.tar.zst"), + Release::new("cpython", "3.8.8", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210325/cpython-3.8.8-x86_64-unknown-linux-gnu-pgo-20210325T0901.tar.zst"), + Release::new("cpython", "3.8.8", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210325/cpython-3.8.8-x86_64-unknown-linux-musl-debug-20210325T0901.tar.zst"), + Release::new("cpython", "3.8.8", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20210325/cpython-3.8.8-x86_64-unknown-linux-musl-lto-20210325T0901.tar.zst"), + Release::new("cpython", "3.8.8", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20210325/cpython-3.8.8-x86_64-unknown-linux-musl-noopt-20210325T0901.tar.zst"), + Release::new("cpython", "3.9.2", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210325/cpython-3.9.2-aarch64-apple-darwin-debug-20210325T0901.tar.zst"), + Release::new("cpython", "3.9.2", "apple", "aarch64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20210325/cpython-3.9.2-aarch64-apple-darwin-noopt-20210325T0901.tar.zst"), + Release::new("cpython", "3.9.2", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210325/cpython-3.9.2-aarch64-apple-darwin-pgo%2Blto-20210325T0901.tar.zst"), + Release::new("cpython", "3.9.2", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210325/cpython-3.9.2-aarch64-apple-darwin-pgo-20210325T0901.tar.zst"), + Release::new("cpython", "3.9.2", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210325/cpython-3.9.2-i686-pc-windows-msvc-shared-pgo-20210325T0901.tar.zst"), + Release::new("cpython", "3.9.2", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20210325/cpython-3.9.2-i686-pc-windows-msvc-static-noopt-20210325T0901.tar.zst"), + Release::new("cpython", "3.9.2", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210325/cpython-3.9.2-i686-unknown-linux-gnu-debug-20210325T0901.tar.zst"), + Release::new("cpython", "3.9.2", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210325/cpython-3.9.2-i686-unknown-linux-gnu-pgo%2Blto-20210325T0901.tar.zst"), + Release::new("cpython", "3.9.2", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210325/cpython-3.9.2-i686-unknown-linux-gnu-pgo-20210325T0901.tar.zst"), + Release::new("cpython", "3.9.2", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210325/cpython-3.9.2-x86_64-apple-darwin-debug-20210325T0901.tar.zst"), + Release::new("cpython", "3.9.2", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210325/cpython-3.9.2-x86_64-apple-darwin-pgo%2Blto-20210325T0901.tar.zst"), + Release::new("cpython", "3.9.2", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210325/cpython-3.9.2-x86_64-apple-darwin-pgo-20210325T0901.tar.zst"), + Release::new("cpython", "3.9.2", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210325/cpython-3.9.2-x86_64-pc-windows-msvc-shared-pgo-20210325T0901.tar.zst"), + Release::new("cpython", "3.9.2", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20210325/cpython-3.9.2-x86_64-pc-windows-msvc-static-noopt-20210325T0901.tar.zst"), + Release::new("cpython", "3.9.2", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210325/cpython-3.9.2-x86_64-unknown-linux-gnu-debug-20210325T0901.tar.zst"), + Release::new("cpython", "3.9.2", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210325/cpython-3.9.2-x86_64-unknown-linux-gnu-pgo%2Blto-20210325T0901.tar.zst"), + Release::new("cpython", "3.9.2", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210325/cpython-3.9.2-x86_64-unknown-linux-gnu-pgo-20210325T0901.tar.zst"), + Release::new("cpython", "3.9.2", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210325/cpython-3.9.2-x86_64-unknown-linux-musl-debug-20210325T0901.tar.zst"), + Release::new("cpython", "3.9.2", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20210325/cpython-3.9.2-x86_64-unknown-linux-musl-lto-20210325T0901.tar.zst"), + Release::new("cpython", "3.9.2", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20210325/cpython-3.9.2-x86_64-unknown-linux-musl-noopt-20210325T0901.tar.zst"), + Release::new("cpython", "3.8.8", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210303/cpython-3.8.8-i686-pc-windows-msvc-shared-pgo-20210303T0937.tar.zst"), + Release::new("cpython", "3.8.8", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20210303/cpython-3.8.8-i686-pc-windows-msvc-static-noopt-20210303T0937.tar.zst"), + Release::new("cpython", "3.8.8", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210303/cpython-3.8.8-x86_64-apple-darwin-debug-20210303T0937.tar.zst"), + Release::new("cpython", "3.8.8", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210303/cpython-3.8.8-x86_64-apple-darwin-pgo-20210303T0937.tar.zst"), + Release::new("cpython", "3.8.8", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210303/cpython-3.8.8-x86_64-pc-windows-msvc-shared-pgo-20210303T0937.tar.zst"), + Release::new("cpython", "3.8.8", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20210303/cpython-3.8.8-x86_64-pc-windows-msvc-static-noopt-20210303T0937.tar.zst"), + Release::new("cpython", "3.8.8", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210303/cpython-3.8.8-x86_64-unknown-linux-gnu-pgo-20210303T0937.tar.zst"), + Release::new("cpython", "3.8.8", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20210303/cpython-3.8.8-x86_64-unknown-linux-musl-noopt-20210303T0937.tar.zst"), + Release::new("cpython", "3.9.2", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210303/cpython-3.9.2-aarch64-apple-darwin-debug-20210303T0937.tar.zst"), + Release::new("cpython", "3.9.2", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210303/cpython-3.9.2-aarch64-apple-darwin-pgo-20210303T0937.tar.zst"), + Release::new("cpython", "3.9.2", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210303/cpython-3.9.2-i686-pc-windows-msvc-shared-pgo-20210303T0937.tar.zst"), + Release::new("cpython", "3.9.2", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20210303/cpython-3.9.2-i686-pc-windows-msvc-static-noopt-20210303T0937.tar.zst"), + Release::new("cpython", "3.9.2", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210303/cpython-3.9.2-i686-unknown-linux-gnu-debug-20210303T0937.tar.zst"), + Release::new("cpython", "3.9.2", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210303/cpython-3.9.2-i686-unknown-linux-gnu-pgo-20210303T0937.tar.zst"), + Release::new("cpython", "3.9.2", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210303/cpython-3.9.2-x86_64-apple-darwin-debug-20210303T0937.tar.zst"), + Release::new("cpython", "3.9.2", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210303/cpython-3.9.2-x86_64-apple-darwin-pgo-20210303T0937.tar.zst"), + Release::new("cpython", "3.9.2", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210303/cpython-3.9.2-x86_64-pc-windows-msvc-shared-pgo-20210303T0937.tar.zst"), + Release::new("cpython", "3.9.2", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20210303/cpython-3.9.2-x86_64-pc-windows-msvc-static-noopt-20210303T0937.tar.zst"), + Release::new("cpython", "3.9.2", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210303/cpython-3.9.2-x86_64-unknown-linux-gnu-pgo-20210303T0937.tar.zst"), + Release::new("cpython", "3.9.2", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20210303/cpython-3.9.2-x86_64-unknown-linux-musl-noopt-20210303T0937.tar.zst"), + Release::new("cpython", "3.8.8", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210228/cpython-3.8.8-i686-pc-windows-msvc-shared-pgo-20210228T1503.tar.zst"), + Release::new("cpython", "3.8.8", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20210228/cpython-3.8.8-i686-pc-windows-msvc-static-noopt-20210228T1503.tar.zst"), + Release::new("cpython", "3.8.8", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210228/cpython-3.8.8-i686-unknown-linux-gnu-debug-20210228T1503.tar.zst"), + Release::new("cpython", "3.8.8", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20210228/cpython-3.8.8-i686-unknown-linux-gnu-lto-20210228T1503.tar.zst"), + Release::new("cpython", "3.8.8", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210228/cpython-3.8.8-i686-unknown-linux-gnu-pgo%2Blto-20210228T1503.tar.zst"), + Release::new("cpython", "3.8.8", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210228/cpython-3.8.8-i686-unknown-linux-gnu-pgo-20210228T1503.tar.zst"), + Release::new("cpython", "3.8.8", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210228/cpython-3.8.8-x86_64-apple-darwin-debug-20210228T1503.tar.zst"), + Release::new("cpython", "3.8.8", "apple", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20210228/cpython-3.8.8-x86_64-apple-darwin-lto-20210228T1503.tar.zst"), + Release::new("cpython", "3.8.8", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210228/cpython-3.8.8-x86_64-apple-darwin-pgo%2Blto-20210228T1503.tar.zst"), + Release::new("cpython", "3.8.8", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210228/cpython-3.8.8-x86_64-apple-darwin-pgo-20210228T1503.tar.zst"), + Release::new("cpython", "3.8.8", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210228/cpython-3.8.8-x86_64-pc-windows-msvc-shared-pgo-20210228T1503.tar.zst"), + Release::new("cpython", "3.8.8", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20210228/cpython-3.8.8-x86_64-pc-windows-msvc-static-noopt-20210228T1503.tar.zst"), + Release::new("cpython", "3.8.8", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210228/cpython-3.8.8-x86_64-unknown-linux-gnu-debug-20210228T1503.tar.zst"), + Release::new("cpython", "3.8.8", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20210228/cpython-3.8.8-x86_64-unknown-linux-gnu-lto-20210228T1503.tar.zst"), + Release::new("cpython", "3.8.8", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210228/cpython-3.8.8-x86_64-unknown-linux-gnu-pgo%2Blto-20210228T1503.tar.zst"), + Release::new("cpython", "3.8.8", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210228/cpython-3.8.8-x86_64-unknown-linux-gnu-pgo-20210228T1503.tar.zst"), + Release::new("cpython", "3.8.8", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210228/cpython-3.8.8-x86_64-unknown-linux-musl-debug-20210228T1503.tar.zst"), + Release::new("cpython", "3.8.8", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20210228/cpython-3.8.8-x86_64-unknown-linux-musl-lto-20210228T1503.tar.zst"), + Release::new("cpython", "3.8.8", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20210228/cpython-3.8.8-x86_64-unknown-linux-musl-noopt-20210228T1503.tar.zst"), + Release::new("cpython", "3.9.2", "apple", "aarch64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210228/cpython-3.9.2-aarch64-apple-darwin-debug-20210228T1503.tar.zst"), + Release::new("cpython", "3.9.2", "apple", "aarch64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20210228/cpython-3.9.2-aarch64-apple-darwin-lto-20210228T1503.tar.zst"), + Release::new("cpython", "3.9.2", "apple", "aarch64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20210228/cpython-3.9.2-aarch64-apple-darwin-noopt-20210228T1503.tar.zst"), + Release::new("cpython", "3.9.2", "apple", "aarch64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210228/cpython-3.9.2-aarch64-apple-darwin-pgo-20210228T1503.tar.zst"), + Release::new("cpython", "3.9.2", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210228/cpython-3.9.2-i686-pc-windows-msvc-shared-pgo-20210228T1503.tar.zst"), + Release::new("cpython", "3.9.2", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20210228/cpython-3.9.2-i686-pc-windows-msvc-static-noopt-20210228T1503.tar.zst"), + Release::new("cpython", "3.9.2", "linux", "i686", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210228/cpython-3.9.2-i686-unknown-linux-gnu-debug-20210228T1503.tar.zst"), + Release::new("cpython", "3.9.2", "linux", "i686", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20210228/cpython-3.9.2-i686-unknown-linux-gnu-lto-20210228T1503.tar.zst"), + Release::new("cpython", "3.9.2", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210228/cpython-3.9.2-i686-unknown-linux-gnu-pgo%2Blto-20210228T1503.tar.zst"), + Release::new("cpython", "3.9.2", "linux", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210228/cpython-3.9.2-i686-unknown-linux-gnu-pgo-20210228T1503.tar.zst"), + Release::new("cpython", "3.9.2", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210228/cpython-3.9.2-x86_64-apple-darwin-debug-20210228T1503.tar.zst"), + Release::new("cpython", "3.9.2", "apple", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20210228/cpython-3.9.2-x86_64-apple-darwin-lto-20210228T1503.tar.zst"), + Release::new("cpython", "3.9.2", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210228/cpython-3.9.2-x86_64-apple-darwin-pgo%2Blto-20210228T1503.tar.zst"), + Release::new("cpython", "3.9.2", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210228/cpython-3.9.2-x86_64-apple-darwin-pgo-20210228T1503.tar.zst"), + Release::new("cpython", "3.9.2", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210228/cpython-3.9.2-x86_64-pc-windows-msvc-shared-pgo-20210228T1503.tar.zst"), + Release::new("cpython", "3.9.2", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20210228/cpython-3.9.2-x86_64-pc-windows-msvc-static-noopt-20210228T1503.tar.zst"), + Release::new("cpython", "3.9.2", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210228/cpython-3.9.2-x86_64-unknown-linux-gnu-debug-20210228T1503.tar.zst"), + Release::new("cpython", "3.9.2", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20210228/cpython-3.9.2-x86_64-unknown-linux-gnu-lto-20210228T1503.tar.zst"), + Release::new("cpython", "3.9.2", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210228/cpython-3.9.2-x86_64-unknown-linux-gnu-pgo%2Blto-20210228T1503.tar.zst"), + Release::new("cpython", "3.9.2", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210228/cpython-3.9.2-x86_64-unknown-linux-gnu-pgo-20210228T1503.tar.zst"), + Release::new("cpython", "3.9.2", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210228/cpython-3.9.2-x86_64-unknown-linux-musl-debug-20210228T1503.tar.zst"), + Release::new("cpython", "3.9.2", "linux", "x86_64", "lto", "https://github.com/indygreg/python-build-standalone/releases/download/20210228/cpython-3.9.2-x86_64-unknown-linux-musl-lto-20210228T1503.tar.zst"), + Release::new("cpython", "3.9.2", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20210228/cpython-3.9.2-x86_64-unknown-linux-musl-noopt-20210228T1503.tar.zst"), + Release::new("cpython", "3.8.7", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210103/cpython-3.8.7-i686-pc-windows-msvc-shared-pgo-20210103T1125.tar.zst"), + Release::new("cpython", "3.8.7", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20210103/cpython-3.8.7-i686-pc-windows-msvc-static-noopt-20210103T1125.tar.zst"), + Release::new("cpython", "3.8.7", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210103/cpython-3.8.7-x86_64-apple-darwin-debug-20210103T1125.tar.zst"), + Release::new("cpython", "3.8.7", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210103/cpython-3.8.7-x86_64-apple-darwin-pgo-20210103T1125.tar.zst"), + Release::new("cpython", "3.8.7", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210103/cpython-3.8.7-x86_64-pc-windows-msvc-shared-pgo-20210103T1125.tar.zst"), + Release::new("cpython", "3.8.7", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20210103/cpython-3.8.7-x86_64-pc-windows-msvc-static-noopt-20210103T1125.tar.zst"), + Release::new("cpython", "3.8.7", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210103/cpython-3.8.7-x86_64-unknown-linux-gnu-debug-20210103T1125.tar.zst"), + Release::new("cpython", "3.8.7", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210103/cpython-3.8.7-x86_64-unknown-linux-gnu-pgo-20210103T1125.tar.zst"), + Release::new("cpython", "3.8.7", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210103/cpython-3.8.7-x86_64-unknown-linux-musl-debug-20210103T1125.tar.zst"), + Release::new("cpython", "3.8.7", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20210103/cpython-3.8.7-x86_64-unknown-linux-musl-noopt-20210103T1125.tar.zst"), + Release::new("cpython", "3.9.1", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210103/cpython-3.9.1-i686-pc-windows-msvc-shared-pgo-20210103T1125.tar.zst"), + Release::new("cpython", "3.9.1", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20210103/cpython-3.9.1-i686-pc-windows-msvc-static-noopt-20210103T1125.tar.zst"), + Release::new("cpython", "3.9.1", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210103/cpython-3.9.1-x86_64-apple-darwin-debug-20210103T1125.tar.zst"), + Release::new("cpython", "3.9.1", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210103/cpython-3.9.1-x86_64-apple-darwin-pgo-20210103T1125.tar.zst"), + Release::new("cpython", "3.9.1", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210103/cpython-3.9.1-x86_64-pc-windows-msvc-shared-pgo-20210103T1125.tar.zst"), + Release::new("cpython", "3.9.1", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20210103/cpython-3.9.1-x86_64-pc-windows-msvc-static-noopt-20210103T1125.tar.zst"), + Release::new("cpython", "3.9.1", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210103/cpython-3.9.1-x86_64-unknown-linux-gnu-debug-20210103T1125.tar.zst"), + Release::new("cpython", "3.9.1", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20210103/cpython-3.9.1-x86_64-unknown-linux-gnu-pgo-20210103T1125.tar.zst"), + Release::new("cpython", "3.9.1", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20210103/cpython-3.9.1-x86_64-unknown-linux-musl-debug-20210103T1125.tar.zst"), + Release::new("cpython", "3.9.1", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20210103/cpython-3.9.1-x86_64-unknown-linux-musl-noopt-20210103T1125.tar.zst"), + Release::new("cpython", "3.8.6", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20201020/cpython-3.8.6-i686-pc-windows-msvc-shared-pgo-20201021T0233.tar.zst"), + Release::new("cpython", "3.8.6", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20201020/cpython-3.8.6-i686-pc-windows-msvc-static-noopt-20201021T0259.tar.zst"), + Release::new("cpython", "3.8.6", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20201020/cpython-3.8.6-x86_64-apple-darwin-debug-20201020T0626.tar.zst"), + Release::new("cpython", "3.8.6", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20201020/cpython-3.8.6-x86_64-apple-darwin-pgo-20201020T0626.tar.zst"), + Release::new("cpython", "3.8.6", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20201020/cpython-3.8.6-x86_64-pc-windows-msvc-shared-pgo-20201021T0232.tar.zst"), + Release::new("cpython", "3.8.6", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20201020/cpython-3.8.6-x86_64-pc-windows-msvc-static-noopt-20201021T0259.tar.zst"), + Release::new("cpython", "3.8.6", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20201020/cpython-3.8.6-x86_64-unknown-linux-gnu-debug-20201020T0627.tar.zst"), + Release::new("cpython", "3.8.6", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20201020/cpython-3.8.6-x86_64-unknown-linux-gnu-pgo-20201020T0627.tar.zst"), + Release::new("cpython", "3.8.6", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20201020/cpython-3.8.6-x86_64-unknown-linux-musl-debug-20201020T0627.tar.zst"), + Release::new("cpython", "3.8.6", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20201020/cpython-3.8.6-x86_64-unknown-linux-musl-noopt-20201020T0627.tar.zst"), + Release::new("cpython", "3.9.0", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20201020/cpython-3.9.0-i686-pc-windows-msvc-shared-pgo-20201021T0245.tar.zst"), + Release::new("cpython", "3.9.0", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20201020/cpython-3.9.0-i686-pc-windows-msvc-static-noopt-20201021T0302.tar.zst"), + Release::new("cpython", "3.9.0", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20201020/cpython-3.9.0-x86_64-apple-darwin-debug-20201020T0626.tar.zst"), + Release::new("cpython", "3.9.0", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20201020/cpython-3.9.0-x86_64-apple-darwin-pgo-20201020T0626.tar.zst"), + Release::new("cpython", "3.9.0", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20201020/cpython-3.9.0-x86_64-pc-windows-msvc-shared-pgo-20201021T0245.tar.zst"), + Release::new("cpython", "3.9.0", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20201020/cpython-3.9.0-x86_64-pc-windows-msvc-static-noopt-20201021T0303.tar.zst"), + Release::new("cpython", "3.9.0", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20201020/cpython-3.9.0-x86_64-unknown-linux-gnu-debug-20201020T0627.tar.zst"), + Release::new("cpython", "3.9.0", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20201020/cpython-3.9.0-x86_64-unknown-linux-gnu-pgo-20201020T0627.tar.zst"), + Release::new("cpython", "3.9.0", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20201020/cpython-3.9.0-x86_64-unknown-linux-musl-debug-20201020T0627.tar.zst"), + Release::new("cpython", "3.9.0", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20201020/cpython-3.9.0-x86_64-unknown-linux-musl-noopt-20201020T0627.tar.zst"), + Release::new("cpython", "3.9.0", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20201006/cpython-3.9.0-x86_64-apple-darwin-debug-20201007T0154.tar.zst"), + Release::new("cpython", "3.9.0", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20201006/cpython-3.9.0-x86_64-apple-darwin-pgo-20201007T0154.tar.zst"), + Release::new("cpython", "3.9.0", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20201006/cpython-3.9.0-x86_64-unknown-linux-gnu-debug-20201007T0146.tar.zst"), + Release::new("cpython", "3.9.0", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20201006/cpython-3.9.0-x86_64-unknown-linux-gnu-pgo-20201007T0146.tar.zst"), + Release::new("cpython", "3.9.0", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20201006/cpython-3.9.0-x86_64-unknown-linux-musl-debug-20201007T0146.tar.zst"), + Release::new("cpython", "3.9.0", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20201006/cpython-3.9.0-x86_64-unknown-linux-musl-noopt-20201007T0146.tar.zst"), + Release::new("cpython", "3.9.0", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20201005/cpython-3.9.0-i686-pc-windows-msvc-shared-pgo-20201006T0241.tar.zst"), + Release::new("cpython", "3.9.0", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20201005/cpython-3.9.0-i686-pc-windows-msvc-static-noopt-20201006T0236.tar.zst"), + Release::new("cpython", "3.9.0", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20201005/cpython-3.9.0-x86_64-apple-darwin-debug-20201006T0133.tar.zst"), + Release::new("cpython", "3.9.0", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20201005/cpython-3.9.0-x86_64-apple-darwin-pgo-20201006T0133.tar.zst"), + Release::new("cpython", "3.9.0", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20201005/cpython-3.9.0-x86_64-pc-windows-msvc-shared-pgo-20201006T0240.tar.zst"), + Release::new("cpython", "3.9.0", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20201005/cpython-3.9.0-x86_64-pc-windows-msvc-static-noopt-20201006T0232.tar.zst"), + Release::new("cpython", "3.9.0", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20201005/cpython-3.9.0-x86_64-unknown-linux-gnu-debug-20201006T0158.tar.zst"), + Release::new("cpython", "3.9.0", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20201005/cpython-3.9.0-x86_64-unknown-linux-gnu-pgo-20201006T0158.tar.zst"), + Release::new("cpython", "3.9.0", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20201005/cpython-3.9.0-x86_64-unknown-linux-musl-debug-20201006T0158.tar.zst"), + Release::new("cpython", "3.9.0", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20201005/cpython-3.9.0-x86_64-unknown-linux-musl-noopt-20201006T0158.tar.zst"), + Release::new("cpython", "3.8.6", "windows", "i686", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20201003/cpython-3.8.6-i686-pc-windows-msvc-shared-pgo-20201003T2039.tar.zst"), + Release::new("cpython", "3.8.6", "windows", "i686", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20201003/cpython-3.8.6-i686-pc-windows-msvc-static-noopt-20201003T2034.tar.zst"), + Release::new("cpython", "3.8.6", "apple", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20201003/cpython-3.8.6-x86_64-apple-darwin-debug-20201003T2017.tar.zst"), + Release::new("cpython", "3.8.6", "apple", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20201003/cpython-3.8.6-x86_64-apple-darwin-pgo-20201003T2017.tar.zst"), + Release::new("cpython", "3.8.6", "windows", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20201003/cpython-3.8.6-x86_64-pc-windows-msvc-shared-pgo-20201003T2021.tar.zst"), + Release::new("cpython", "3.8.6", "windows", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20201003/cpython-3.8.6-x86_64-pc-windows-msvc-static-noopt-20201003T2015.tar.zst"), + Release::new("cpython", "3.8.6", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20201003/cpython-3.8.6-x86_64-unknown-linux-gnu-debug-20201003T2016.tar.zst"), + Release::new("cpython", "3.8.6", "linux", "x86_64", "pgo", "https://github.com/indygreg/python-build-standalone/releases/download/20201003/cpython-3.8.6-x86_64-unknown-linux-gnu-pgo-20201003T2016.tar.zst"), + Release::new("cpython", "3.8.6", "linux", "x86_64", "debug", "https://github.com/indygreg/python-build-standalone/releases/download/20201003/cpython-3.8.6-x86_64-unknown-linux-musl-debug-20201003T2016.tar.zst"), + Release::new("cpython", "3.8.6", "linux", "x86_64", "noopt", "https://github.com/indygreg/python-build-standalone/releases/download/20201003/cpython-3.8.6-x86_64-unknown-linux-musl-noopt-20201003T2016.tar.zst"), +]; diff --git a/crates/huak_python_manager/src/main.rs b/crates/huak_python_manager/src/main.rs new file mode 100644 index 00000000..55e2d613 --- /dev/null +++ b/crates/huak_python_manager/src/main.rs @@ -0,0 +1,6 @@ +use huak_home::huak_home_dir; +mod generated; + +fn main() { + println!("{:?}", huak_home_dir()); +}