From 19df1a43726a94ba96edf44ca85fd8a7d9c5f38c Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Tue, 21 May 2024 15:52:31 -0400 Subject: [PATCH] Rename all instances of `Cpython` to `CPython` (#3702) --- crates/platform-tags/src/tags.rs | 4 +- crates/uv-interpreter/src/discovery.rs | 4 +- crates/uv-interpreter/src/implementation.rs | 8 +- .../uv-interpreter/src/managed/downloads.rs | 2 +- .../src/managed/python_versions.inc | 912 +++++++++--------- .../template-version-metadata.py | 11 +- 6 files changed, 475 insertions(+), 466 deletions(-) diff --git a/crates/platform-tags/src/tags.rs b/crates/platform-tags/src/tags.rs index e25daa91e..09ef84e18 100644 --- a/crates/platform-tags/src/tags.rs +++ b/crates/platform-tags/src/tags.rs @@ -18,7 +18,7 @@ pub enum TagsError { #[error("Invalid priority: `{0}`")] InvalidPriority(usize, #[source] std::num::TryFromIntError), #[error("Only CPython can be freethreading, not: {0}")] - GilIsACpythonProblem(String), + GilIsACPythonProblem(String), } #[derive(Debug, Eq, Ord, PartialEq, PartialOrd, Clone)] @@ -355,7 +355,7 @@ impl Implementation { fn parse(name: &str, gil_disabled: bool) -> Result { if gil_disabled && name != "cpython" { - return Err(TagsError::GilIsACpythonProblem(name.to_string())); + return Err(TagsError::GilIsACPythonProblem(name.to_string())); } match name { // Known and supported implementations. diff --git a/crates/uv-interpreter/src/discovery.rs b/crates/uv-interpreter/src/discovery.rs index b0dfc15ce..178fe7dbc 100644 --- a/crates/uv-interpreter/src/discovery.rs +++ b/crates/uv-interpreter/src/discovery.rs @@ -1176,12 +1176,12 @@ mod tests { ); assert_eq!( InterpreterRequest::parse("cpython"), - InterpreterRequest::Implementation(ImplementationName::Cpython) + InterpreterRequest::Implementation(ImplementationName::CPython) ); assert_eq!( InterpreterRequest::parse("cpython3.12.2"), InterpreterRequest::ImplementationVersion( - ImplementationName::Cpython, + ImplementationName::CPython, VersionRequest::from_str("3.12.2").unwrap() ) ); diff --git a/crates/uv-interpreter/src/implementation.rs b/crates/uv-interpreter/src/implementation.rs index fee3bb8f9..d82a864b9 100644 --- a/crates/uv-interpreter/src/implementation.rs +++ b/crates/uv-interpreter/src/implementation.rs @@ -12,18 +12,18 @@ pub enum Error { #[derive(Debug, Eq, PartialEq, Clone, Copy)] pub enum ImplementationName { - Cpython, + CPython, } impl ImplementationName { pub(crate) fn iter() -> impl Iterator { - static NAMES: &[ImplementationName] = &[ImplementationName::Cpython]; + static NAMES: &[ImplementationName] = &[ImplementationName::CPython]; NAMES.iter() } pub fn as_str(&self) -> &str { match self { - Self::Cpython => "cpython", + Self::CPython => "cpython", } } } @@ -33,7 +33,7 @@ impl FromStr for ImplementationName { fn from_str(s: &str) -> Result { match s.to_ascii_lowercase().as_str() { - "cpython" => Ok(Self::Cpython), + "cpython" => Ok(Self::CPython), _ => Err(Error::UnknownImplementation(s.to_string())), } } diff --git a/crates/uv-interpreter/src/managed/downloads.rs b/crates/uv-interpreter/src/managed/downloads.rs index c78ec2434..0a3010a6b 100644 --- a/crates/uv-interpreter/src/managed/downloads.rs +++ b/crates/uv-interpreter/src/managed/downloads.rs @@ -116,7 +116,7 @@ impl PythonDownloadRequest { pub fn fill(mut self) -> Result { if self.implementation.is_none() { - self.implementation = Some(ImplementationName::Cpython); + self.implementation = Some(ImplementationName::CPython); } if self.arch.is_none() { self.arch = Some(Arch::from_env()?); diff --git a/crates/uv-interpreter/src/managed/python_versions.inc b/crates/uv-interpreter/src/managed/python_versions.inc index 305f36d39..98f2fc3cb 100644 --- a/crates/uv-interpreter/src/managed/python_versions.inc +++ b/crates/uv-interpreter/src/managed/python_versions.inc @@ -1,7 +1,7 @@ // DO NOT EDIT // // Generated with `crates/uv-interpreter/template-version-metadata.py` -// From template at `crates/uv-interpreter/src/python_versions.inc.mustache` +// From template at `crates/uv-interpreter/src/managed/python_versions.inc.mustache` pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ PythonDownload { @@ -9,7 +9,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 12, patch: 2, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Linux, libc: Libc::Gnu, @@ -21,7 +21,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 12, patch: 2, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Macos, libc: Libc::None, @@ -33,7 +33,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 12, patch: 2, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Powerpc64Le, os: Os::Linux, libc: Libc::Gnu, @@ -45,7 +45,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 12, patch: 2, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::S390X, os: Os::Linux, libc: Libc::Gnu, @@ -57,7 +57,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 12, patch: 2, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Windows, libc: Libc::None, @@ -69,7 +69,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 12, patch: 2, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Gnu, @@ -81,7 +81,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 12, patch: 2, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Musl, @@ -93,7 +93,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 12, patch: 2, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Macos, libc: Libc::None, @@ -105,7 +105,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 12, patch: 2, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Windows, libc: Libc::None, @@ -117,7 +117,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 12, patch: 1, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Linux, libc: Libc::Gnu, @@ -129,7 +129,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 12, patch: 1, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Macos, libc: Libc::None, @@ -141,7 +141,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 12, patch: 1, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Powerpc64Le, os: Os::Linux, libc: Libc::Gnu, @@ -153,7 +153,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 12, patch: 1, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::S390X, os: Os::Linux, libc: Libc::Gnu, @@ -165,7 +165,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 12, patch: 1, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Windows, libc: Libc::None, @@ -177,7 +177,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 12, patch: 1, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Gnu, @@ -189,7 +189,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 12, patch: 1, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Musl, @@ -201,7 +201,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 12, patch: 1, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Macos, libc: Libc::None, @@ -213,7 +213,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 12, patch: 1, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Windows, libc: Libc::None, @@ -225,7 +225,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 12, patch: 0, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Linux, libc: Libc::Gnu, @@ -237,7 +237,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 12, patch: 0, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Macos, libc: Libc::None, @@ -249,7 +249,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 12, patch: 0, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Powerpc64Le, os: Os::Linux, libc: Libc::Gnu, @@ -261,7 +261,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 12, patch: 0, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::S390X, os: Os::Linux, libc: Libc::Gnu, @@ -273,7 +273,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 12, patch: 0, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Windows, libc: Libc::None, @@ -285,7 +285,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 12, patch: 0, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Gnu, @@ -297,7 +297,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 12, patch: 0, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Musl, @@ -309,7 +309,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 12, patch: 0, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Macos, libc: Libc::None, @@ -321,7 +321,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 12, patch: 0, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Windows, libc: Libc::None, @@ -333,7 +333,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 11, patch: 8, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Linux, libc: Libc::Gnu, @@ -345,7 +345,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 11, patch: 8, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Macos, libc: Libc::None, @@ -357,7 +357,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 11, patch: 8, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Powerpc64Le, os: Os::Linux, libc: Libc::Gnu, @@ -369,7 +369,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 11, patch: 8, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::S390X, os: Os::Linux, libc: Libc::Gnu, @@ -381,7 +381,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 11, patch: 8, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Windows, libc: Libc::None, @@ -393,7 +393,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 11, patch: 8, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Gnu, @@ -405,7 +405,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 11, patch: 8, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Musl, @@ -417,7 +417,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 11, patch: 8, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Macos, libc: Libc::None, @@ -429,7 +429,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 11, patch: 8, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Windows, libc: Libc::None, @@ -441,7 +441,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 11, patch: 7, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Linux, libc: Libc::Gnu, @@ -453,7 +453,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 11, patch: 7, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Macos, libc: Libc::None, @@ -465,7 +465,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 11, patch: 7, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Powerpc64Le, os: Os::Linux, libc: Libc::Gnu, @@ -477,7 +477,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 11, patch: 7, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::S390X, os: Os::Linux, libc: Libc::Gnu, @@ -489,7 +489,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 11, patch: 7, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Windows, libc: Libc::None, @@ -501,7 +501,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 11, patch: 7, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Gnu, @@ -513,7 +513,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 11, patch: 7, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Musl, @@ -525,7 +525,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 11, patch: 7, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Macos, libc: Libc::None, @@ -537,7 +537,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 11, patch: 7, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Windows, libc: Libc::None, @@ -549,7 +549,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 11, patch: 6, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Linux, libc: Libc::Gnu, @@ -561,7 +561,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 11, patch: 6, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Macos, libc: Libc::None, @@ -573,7 +573,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 11, patch: 6, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Powerpc64Le, os: Os::Linux, libc: Libc::Gnu, @@ -585,7 +585,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 11, patch: 6, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::S390X, os: Os::Linux, libc: Libc::Gnu, @@ -597,7 +597,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 11, patch: 6, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Windows, libc: Libc::None, @@ -609,7 +609,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 11, patch: 6, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Gnu, @@ -621,7 +621,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 11, patch: 6, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Musl, @@ -633,7 +633,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 11, patch: 6, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Macos, libc: Libc::None, @@ -645,7 +645,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 11, patch: 6, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Windows, libc: Libc::None, @@ -657,7 +657,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 11, patch: 5, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Linux, libc: Libc::Gnu, @@ -669,7 +669,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 11, patch: 5, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Macos, libc: Libc::None, @@ -681,7 +681,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 11, patch: 5, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Powerpc64Le, os: Os::Linux, libc: Libc::Gnu, @@ -693,7 +693,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 11, patch: 5, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::S390X, os: Os::Linux, libc: Libc::Gnu, @@ -705,7 +705,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 11, patch: 5, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Linux, libc: Libc::Gnu, @@ -717,7 +717,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 11, patch: 5, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Windows, libc: Libc::None, @@ -729,7 +729,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 11, patch: 5, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Gnu, @@ -741,7 +741,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 11, patch: 5, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Musl, @@ -753,7 +753,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 11, patch: 5, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Macos, libc: Libc::None, @@ -765,7 +765,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 11, patch: 5, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Windows, libc: Libc::None, @@ -777,7 +777,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 11, patch: 4, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Linux, libc: Libc::Gnu, @@ -789,7 +789,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 11, patch: 4, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Macos, libc: Libc::None, @@ -801,7 +801,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 11, patch: 4, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Powerpc64Le, os: Os::Linux, libc: Libc::Gnu, @@ -813,7 +813,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 11, patch: 4, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::S390X, os: Os::Linux, libc: Libc::Gnu, @@ -825,7 +825,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 11, patch: 4, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Linux, libc: Libc::Gnu, @@ -837,7 +837,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 11, patch: 4, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Windows, libc: Libc::None, @@ -849,7 +849,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 11, patch: 4, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Gnu, @@ -861,7 +861,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 11, patch: 4, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Musl, @@ -873,7 +873,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 11, patch: 4, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Macos, libc: Libc::None, @@ -885,7 +885,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 11, patch: 4, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Windows, libc: Libc::None, @@ -897,7 +897,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 11, patch: 3, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Linux, libc: Libc::Gnu, @@ -909,7 +909,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 11, patch: 3, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Macos, libc: Libc::None, @@ -921,7 +921,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 11, patch: 3, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Powerpc64Le, os: Os::Linux, libc: Libc::Gnu, @@ -933,7 +933,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 11, patch: 3, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Linux, libc: Libc::Gnu, @@ -945,7 +945,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 11, patch: 3, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Windows, libc: Libc::None, @@ -957,7 +957,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 11, patch: 3, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Gnu, @@ -969,7 +969,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 11, patch: 3, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Musl, @@ -981,7 +981,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 11, patch: 3, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Macos, libc: Libc::None, @@ -993,7 +993,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 11, patch: 3, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Windows, libc: Libc::None, @@ -1005,7 +1005,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 11, patch: 1, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Linux, libc: Libc::Gnu, @@ -1017,7 +1017,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 11, patch: 1, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Macos, libc: Libc::None, @@ -1029,7 +1029,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 11, patch: 1, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Linux, libc: Libc::Gnu, @@ -1041,7 +1041,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 11, patch: 1, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Windows, libc: Libc::None, @@ -1053,7 +1053,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 11, patch: 1, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Gnu, @@ -1065,7 +1065,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 11, patch: 1, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Musl, @@ -1077,7 +1077,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 11, patch: 1, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Macos, libc: Libc::None, @@ -1089,7 +1089,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 11, patch: 1, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Windows, libc: Libc::None, @@ -1101,7 +1101,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 13, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Linux, libc: Libc::Gnu, @@ -1113,7 +1113,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 13, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Macos, libc: Libc::None, @@ -1125,7 +1125,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 13, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Powerpc64Le, os: Os::Linux, libc: Libc::Gnu, @@ -1137,7 +1137,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 13, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::S390X, os: Os::Linux, libc: Libc::Gnu, @@ -1149,7 +1149,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 13, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Linux, libc: Libc::Gnu, @@ -1161,7 +1161,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 13, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Windows, libc: Libc::None, @@ -1173,7 +1173,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 13, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Gnu, @@ -1185,7 +1185,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 13, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Musl, @@ -1197,7 +1197,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 13, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Macos, libc: Libc::None, @@ -1209,7 +1209,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 13, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Windows, libc: Libc::None, @@ -1221,7 +1221,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 12, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Linux, libc: Libc::Gnu, @@ -1233,7 +1233,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 12, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Macos, libc: Libc::None, @@ -1245,7 +1245,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 12, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Powerpc64Le, os: Os::Linux, libc: Libc::Gnu, @@ -1257,7 +1257,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 12, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::S390X, os: Os::Linux, libc: Libc::Gnu, @@ -1269,7 +1269,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 12, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Linux, libc: Libc::Gnu, @@ -1281,7 +1281,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 12, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Windows, libc: Libc::None, @@ -1293,7 +1293,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 12, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Gnu, @@ -1305,7 +1305,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 12, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Musl, @@ -1317,7 +1317,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 12, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Macos, libc: Libc::None, @@ -1329,7 +1329,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 12, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Windows, libc: Libc::None, @@ -1341,7 +1341,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 11, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Linux, libc: Libc::Gnu, @@ -1353,7 +1353,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 11, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Macos, libc: Libc::None, @@ -1365,7 +1365,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 11, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Powerpc64Le, os: Os::Linux, libc: Libc::Gnu, @@ -1377,7 +1377,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 11, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Linux, libc: Libc::Gnu, @@ -1389,7 +1389,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 11, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Windows, libc: Libc::None, @@ -1401,7 +1401,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 11, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Gnu, @@ -1413,7 +1413,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 11, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Musl, @@ -1425,7 +1425,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 11, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Macos, libc: Libc::None, @@ -1437,7 +1437,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 11, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Windows, libc: Libc::None, @@ -1449,7 +1449,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 9, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Linux, libc: Libc::Gnu, @@ -1461,7 +1461,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 9, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Macos, libc: Libc::None, @@ -1473,7 +1473,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 9, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Linux, libc: Libc::Gnu, @@ -1485,7 +1485,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 9, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Windows, libc: Libc::None, @@ -1497,7 +1497,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 9, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Gnu, @@ -1509,7 +1509,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 9, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Musl, @@ -1521,7 +1521,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 9, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Macos, libc: Libc::None, @@ -1533,7 +1533,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 9, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Windows, libc: Libc::None, @@ -1545,7 +1545,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 8, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Linux, libc: Libc::Gnu, @@ -1557,7 +1557,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 8, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Macos, libc: Libc::None, @@ -1569,7 +1569,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 8, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Linux, libc: Libc::Gnu, @@ -1581,7 +1581,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 8, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Windows, libc: Libc::None, @@ -1593,7 +1593,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 8, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Gnu, @@ -1605,7 +1605,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 8, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Musl, @@ -1617,7 +1617,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 8, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Macos, libc: Libc::None, @@ -1629,7 +1629,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 8, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Windows, libc: Libc::None, @@ -1641,7 +1641,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 7, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Linux, libc: Libc::Gnu, @@ -1653,7 +1653,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 7, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Macos, libc: Libc::None, @@ -1665,7 +1665,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 7, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Linux, libc: Libc::Gnu, @@ -1677,7 +1677,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 7, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Windows, libc: Libc::None, @@ -1689,7 +1689,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 7, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Gnu, @@ -1701,7 +1701,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 7, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Musl, @@ -1713,7 +1713,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 7, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Macos, libc: Libc::None, @@ -1725,7 +1725,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 7, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Windows, libc: Libc::None, @@ -1737,7 +1737,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 6, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Linux, libc: Libc::Gnu, @@ -1749,7 +1749,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 6, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Macos, libc: Libc::None, @@ -1761,7 +1761,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 6, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Linux, libc: Libc::Gnu, @@ -1773,7 +1773,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 6, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Windows, libc: Libc::None, @@ -1785,7 +1785,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 6, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Gnu, @@ -1797,7 +1797,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 6, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Musl, @@ -1809,7 +1809,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 6, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Macos, libc: Libc::None, @@ -1821,7 +1821,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 6, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Windows, libc: Libc::None, @@ -1833,7 +1833,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 5, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Linux, libc: Libc::Gnu, @@ -1845,7 +1845,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 5, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Macos, libc: Libc::None, @@ -1857,7 +1857,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 5, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Linux, libc: Libc::Gnu, @@ -1869,7 +1869,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 5, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Windows, libc: Libc::None, @@ -1881,7 +1881,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 5, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Gnu, @@ -1893,7 +1893,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 5, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Musl, @@ -1905,7 +1905,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 5, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Macos, libc: Libc::None, @@ -1917,7 +1917,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 5, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Windows, libc: Libc::None, @@ -1929,7 +1929,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 4, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Linux, libc: Libc::Gnu, @@ -1941,7 +1941,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 4, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Macos, libc: Libc::None, @@ -1953,7 +1953,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 4, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Linux, libc: Libc::Gnu, @@ -1965,7 +1965,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 4, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Windows, libc: Libc::None, @@ -1977,7 +1977,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 4, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Gnu, @@ -1989,7 +1989,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 4, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Musl, @@ -2001,7 +2001,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 4, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Macos, libc: Libc::None, @@ -2013,7 +2013,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 4, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Windows, libc: Libc::None, @@ -2025,7 +2025,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 3, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Linux, libc: Libc::Gnu, @@ -2037,7 +2037,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 3, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Macos, libc: Libc::None, @@ -2049,7 +2049,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 3, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Linux, libc: Libc::Gnu, @@ -2061,7 +2061,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 3, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Windows, libc: Libc::None, @@ -2073,7 +2073,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 3, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Gnu, @@ -2085,7 +2085,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 3, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Musl, @@ -2097,7 +2097,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 3, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Macos, libc: Libc::None, @@ -2109,7 +2109,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 3, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Windows, libc: Libc::None, @@ -2121,7 +2121,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 2, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Linux, libc: Libc::Gnu, @@ -2133,7 +2133,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 2, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Macos, libc: Libc::None, @@ -2145,7 +2145,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 2, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Linux, libc: Libc::Gnu, @@ -2157,7 +2157,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 2, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Windows, libc: Libc::None, @@ -2169,7 +2169,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 2, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Gnu, @@ -2181,7 +2181,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 2, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Musl, @@ -2193,7 +2193,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 2, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Macos, libc: Libc::None, @@ -2205,7 +2205,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 2, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Windows, libc: Libc::None, @@ -2217,7 +2217,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 0, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Linux, libc: Libc::Gnu, @@ -2229,7 +2229,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 0, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Macos, libc: Libc::None, @@ -2241,7 +2241,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 0, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Linux, libc: Libc::Gnu, @@ -2253,7 +2253,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 0, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Windows, libc: Libc::None, @@ -2265,7 +2265,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 0, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Gnu, @@ -2277,7 +2277,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 0, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Musl, @@ -2289,7 +2289,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 0, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Macos, libc: Libc::None, @@ -2301,7 +2301,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 10, patch: 0, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Windows, libc: Libc::None, @@ -2313,7 +2313,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 18, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Linux, libc: Libc::Gnu, @@ -2325,7 +2325,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 18, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Macos, libc: Libc::None, @@ -2337,7 +2337,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 18, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Powerpc64Le, os: Os::Linux, libc: Libc::Gnu, @@ -2349,7 +2349,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 18, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::S390X, os: Os::Linux, libc: Libc::Gnu, @@ -2361,7 +2361,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 18, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Linux, libc: Libc::Gnu, @@ -2373,7 +2373,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 18, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Windows, libc: Libc::None, @@ -2385,7 +2385,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 18, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Gnu, @@ -2397,7 +2397,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 18, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Musl, @@ -2409,7 +2409,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 18, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Macos, libc: Libc::None, @@ -2421,7 +2421,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 18, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Windows, libc: Libc::None, @@ -2433,7 +2433,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 17, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Linux, libc: Libc::Gnu, @@ -2445,7 +2445,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 17, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Macos, libc: Libc::None, @@ -2457,7 +2457,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 17, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Powerpc64Le, os: Os::Linux, libc: Libc::Gnu, @@ -2469,7 +2469,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 17, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::S390X, os: Os::Linux, libc: Libc::Gnu, @@ -2481,7 +2481,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 17, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Linux, libc: Libc::Gnu, @@ -2493,7 +2493,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 17, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Windows, libc: Libc::None, @@ -2505,7 +2505,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 17, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Gnu, @@ -2517,7 +2517,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 17, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Musl, @@ -2529,7 +2529,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 17, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Macos, libc: Libc::None, @@ -2541,7 +2541,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 17, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Windows, libc: Libc::None, @@ -2553,7 +2553,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 16, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Linux, libc: Libc::Gnu, @@ -2565,7 +2565,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 16, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Macos, libc: Libc::None, @@ -2577,7 +2577,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 16, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Powerpc64Le, os: Os::Linux, libc: Libc::Gnu, @@ -2589,7 +2589,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 16, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Linux, libc: Libc::Gnu, @@ -2601,7 +2601,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 16, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Windows, libc: Libc::None, @@ -2613,7 +2613,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 16, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Gnu, @@ -2625,7 +2625,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 16, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Musl, @@ -2637,7 +2637,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 16, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Macos, libc: Libc::None, @@ -2649,7 +2649,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 16, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Windows, libc: Libc::None, @@ -2661,7 +2661,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 15, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Linux, libc: Libc::Gnu, @@ -2673,7 +2673,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 15, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Macos, libc: Libc::None, @@ -2685,7 +2685,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 15, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Linux, libc: Libc::Gnu, @@ -2697,7 +2697,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 15, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Windows, libc: Libc::None, @@ -2709,7 +2709,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 15, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Gnu, @@ -2721,7 +2721,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 15, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Musl, @@ -2733,7 +2733,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 15, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Macos, libc: Libc::None, @@ -2745,7 +2745,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 15, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Windows, libc: Libc::None, @@ -2757,7 +2757,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 14, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Linux, libc: Libc::Gnu, @@ -2769,7 +2769,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 14, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Macos, libc: Libc::None, @@ -2781,7 +2781,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 14, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Linux, libc: Libc::Gnu, @@ -2793,7 +2793,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 14, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Windows, libc: Libc::None, @@ -2805,7 +2805,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 14, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Gnu, @@ -2817,7 +2817,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 14, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Musl, @@ -2829,7 +2829,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 14, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Macos, libc: Libc::None, @@ -2841,7 +2841,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 14, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Windows, libc: Libc::None, @@ -2853,7 +2853,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 13, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Linux, libc: Libc::Gnu, @@ -2865,7 +2865,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 13, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Macos, libc: Libc::None, @@ -2877,7 +2877,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 13, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Linux, libc: Libc::Gnu, @@ -2889,7 +2889,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 13, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Windows, libc: Libc::None, @@ -2901,7 +2901,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 13, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Gnu, @@ -2913,7 +2913,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 13, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Musl, @@ -2925,7 +2925,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 13, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Macos, libc: Libc::None, @@ -2937,7 +2937,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 13, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Windows, libc: Libc::None, @@ -2949,7 +2949,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 12, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Linux, libc: Libc::Gnu, @@ -2961,7 +2961,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 12, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Macos, libc: Libc::None, @@ -2973,7 +2973,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 12, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Linux, libc: Libc::Gnu, @@ -2985,7 +2985,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 12, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Windows, libc: Libc::None, @@ -2997,7 +2997,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 12, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Gnu, @@ -3009,7 +3009,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 12, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Musl, @@ -3021,7 +3021,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 12, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Macos, libc: Libc::None, @@ -3033,7 +3033,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 12, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Windows, libc: Libc::None, @@ -3045,7 +3045,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 11, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Linux, libc: Libc::Gnu, @@ -3057,7 +3057,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 11, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Macos, libc: Libc::None, @@ -3069,7 +3069,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 11, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Linux, libc: Libc::Gnu, @@ -3081,7 +3081,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 11, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Windows, libc: Libc::None, @@ -3093,7 +3093,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 11, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Gnu, @@ -3105,7 +3105,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 11, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Musl, @@ -3117,7 +3117,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 11, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Macos, libc: Libc::None, @@ -3129,7 +3129,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 11, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Windows, libc: Libc::None, @@ -3141,7 +3141,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 10, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Linux, libc: Libc::Gnu, @@ -3153,7 +3153,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 10, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Macos, libc: Libc::None, @@ -3165,7 +3165,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 10, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Linux, libc: Libc::Gnu, @@ -3177,7 +3177,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 10, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Windows, libc: Libc::None, @@ -3189,7 +3189,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 10, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Gnu, @@ -3201,7 +3201,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 10, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Musl, @@ -3213,7 +3213,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 10, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Macos, libc: Libc::None, @@ -3225,7 +3225,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 10, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Windows, libc: Libc::None, @@ -3237,7 +3237,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 7, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Linux, libc: Libc::Gnu, @@ -3249,7 +3249,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 7, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Macos, libc: Libc::None, @@ -3261,7 +3261,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 7, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Linux, libc: Libc::Gnu, @@ -3273,7 +3273,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 7, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Windows, libc: Libc::None, @@ -3285,7 +3285,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 7, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Gnu, @@ -3297,7 +3297,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 7, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Musl, @@ -3309,7 +3309,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 7, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Macos, libc: Libc::None, @@ -3321,7 +3321,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 7, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Windows, libc: Libc::None, @@ -3333,7 +3333,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 6, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Linux, libc: Libc::Gnu, @@ -3345,7 +3345,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 6, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Macos, libc: Libc::None, @@ -3357,7 +3357,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 6, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Linux, libc: Libc::Gnu, @@ -3369,7 +3369,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 6, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Windows, libc: Libc::None, @@ -3381,7 +3381,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 6, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Gnu, @@ -3393,7 +3393,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 6, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Musl, @@ -3405,7 +3405,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 6, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Macos, libc: Libc::None, @@ -3417,7 +3417,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 6, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Windows, libc: Libc::None, @@ -3429,7 +3429,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 5, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Macos, libc: Libc::None, @@ -3441,7 +3441,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 5, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Linux, libc: Libc::Gnu, @@ -3453,7 +3453,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 5, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Windows, libc: Libc::None, @@ -3465,7 +3465,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 5, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Gnu, @@ -3477,7 +3477,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 5, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Musl, @@ -3489,7 +3489,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 5, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Macos, libc: Libc::None, @@ -3501,7 +3501,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 5, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Windows, libc: Libc::None, @@ -3513,7 +3513,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 4, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Macos, libc: Libc::None, @@ -3525,7 +3525,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 4, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Linux, libc: Libc::Gnu, @@ -3537,7 +3537,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 4, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Windows, libc: Libc::None, @@ -3549,7 +3549,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 4, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Gnu, @@ -3561,7 +3561,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 4, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Musl, @@ -3573,7 +3573,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 4, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Macos, libc: Libc::None, @@ -3585,7 +3585,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 4, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Windows, libc: Libc::None, @@ -3597,7 +3597,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 3, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Macos, libc: Libc::None, @@ -3609,7 +3609,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 3, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Windows, libc: Libc::None, @@ -3621,7 +3621,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 3, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Gnu, @@ -3633,7 +3633,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 3, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Musl, @@ -3645,7 +3645,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 3, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Macos, libc: Libc::None, @@ -3657,7 +3657,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 3, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Windows, libc: Libc::None, @@ -3669,7 +3669,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 2, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Macos, libc: Libc::None, @@ -3681,7 +3681,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 2, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Linux, libc: Libc::Gnu, @@ -3693,7 +3693,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 2, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Windows, libc: Libc::None, @@ -3705,7 +3705,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 2, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Gnu, @@ -3717,7 +3717,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 2, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Musl, @@ -3729,7 +3729,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 2, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Macos, libc: Libc::None, @@ -3741,7 +3741,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 2, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Windows, libc: Libc::None, @@ -3753,7 +3753,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 1, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Windows, libc: Libc::None, @@ -3765,7 +3765,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 1, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Gnu, @@ -3777,7 +3777,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 1, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Musl, @@ -3789,7 +3789,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 1, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Macos, libc: Libc::None, @@ -3801,7 +3801,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 1, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Windows, libc: Libc::None, @@ -3813,7 +3813,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 0, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Windows, libc: Libc::None, @@ -3825,7 +3825,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 0, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Gnu, @@ -3837,7 +3837,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 0, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Musl, @@ -3849,7 +3849,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 0, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Macos, libc: Libc::None, @@ -3861,7 +3861,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 9, patch: 0, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Windows, libc: Libc::None, @@ -3873,7 +3873,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 18, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Linux, libc: Libc::Gnu, @@ -3885,7 +3885,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 18, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Macos, libc: Libc::None, @@ -3897,7 +3897,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 18, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Windows, libc: Libc::None, @@ -3909,7 +3909,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 18, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Gnu, @@ -3921,7 +3921,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 18, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Musl, @@ -3933,7 +3933,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 18, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Macos, libc: Libc::None, @@ -3945,7 +3945,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 18, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Windows, libc: Libc::None, @@ -3957,7 +3957,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 17, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Linux, libc: Libc::Gnu, @@ -3969,7 +3969,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 17, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Macos, libc: Libc::None, @@ -3981,7 +3981,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 17, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Linux, libc: Libc::Gnu, @@ -3993,7 +3993,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 17, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Windows, libc: Libc::None, @@ -4005,7 +4005,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 17, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Gnu, @@ -4017,7 +4017,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 17, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Musl, @@ -4029,7 +4029,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 17, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Macos, libc: Libc::None, @@ -4041,7 +4041,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 17, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Windows, libc: Libc::None, @@ -4053,7 +4053,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 16, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Linux, libc: Libc::Gnu, @@ -4065,7 +4065,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 16, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Macos, libc: Libc::None, @@ -4077,7 +4077,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 16, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Linux, libc: Libc::Gnu, @@ -4089,7 +4089,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 16, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Windows, libc: Libc::None, @@ -4101,7 +4101,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 16, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Gnu, @@ -4113,7 +4113,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 16, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Musl, @@ -4125,7 +4125,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 16, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Macos, libc: Libc::None, @@ -4137,7 +4137,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 16, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Windows, libc: Libc::None, @@ -4149,7 +4149,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 15, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Linux, libc: Libc::Gnu, @@ -4161,7 +4161,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 15, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Macos, libc: Libc::None, @@ -4173,7 +4173,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 15, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Linux, libc: Libc::Gnu, @@ -4185,7 +4185,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 15, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Windows, libc: Libc::None, @@ -4197,7 +4197,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 15, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Gnu, @@ -4209,7 +4209,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 15, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Musl, @@ -4221,7 +4221,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 15, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Macos, libc: Libc::None, @@ -4233,7 +4233,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 15, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Windows, libc: Libc::None, @@ -4245,7 +4245,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 14, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Linux, libc: Libc::Gnu, @@ -4257,7 +4257,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 14, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Macos, libc: Libc::None, @@ -4269,7 +4269,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 14, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Linux, libc: Libc::Gnu, @@ -4281,7 +4281,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 14, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Windows, libc: Libc::None, @@ -4293,7 +4293,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 14, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Gnu, @@ -4305,7 +4305,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 14, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Musl, @@ -4317,7 +4317,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 14, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Macos, libc: Libc::None, @@ -4329,7 +4329,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 14, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Windows, libc: Libc::None, @@ -4341,7 +4341,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 13, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Linux, libc: Libc::Gnu, @@ -4353,7 +4353,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 13, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Macos, libc: Libc::None, @@ -4365,7 +4365,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 13, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Linux, libc: Libc::Gnu, @@ -4377,7 +4377,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 13, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Windows, libc: Libc::None, @@ -4389,7 +4389,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 13, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Gnu, @@ -4401,7 +4401,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 13, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Musl, @@ -4413,7 +4413,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 13, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Macos, libc: Libc::None, @@ -4425,7 +4425,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 13, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Windows, libc: Libc::None, @@ -4437,7 +4437,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 12, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::Aarch64, os: Os::Macos, libc: Libc::None, @@ -4449,7 +4449,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 12, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Linux, libc: Libc::Gnu, @@ -4461,7 +4461,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 12, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Windows, libc: Libc::None, @@ -4473,7 +4473,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 12, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Gnu, @@ -4485,7 +4485,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 12, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Musl, @@ -4497,7 +4497,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 12, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Macos, libc: Libc::None, @@ -4509,7 +4509,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 12, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Windows, libc: Libc::None, @@ -4521,7 +4521,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 11, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Linux, libc: Libc::Gnu, @@ -4533,7 +4533,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 11, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Windows, libc: Libc::None, @@ -4545,7 +4545,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 11, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Gnu, @@ -4557,7 +4557,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 11, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Musl, @@ -4569,7 +4569,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 11, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Macos, libc: Libc::None, @@ -4581,7 +4581,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 11, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Windows, libc: Libc::None, @@ -4593,7 +4593,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 10, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Linux, libc: Libc::Gnu, @@ -4605,7 +4605,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 10, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Windows, libc: Libc::None, @@ -4617,7 +4617,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 10, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Gnu, @@ -4629,7 +4629,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 10, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Musl, @@ -4641,7 +4641,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 10, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Macos, libc: Libc::None, @@ -4653,7 +4653,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 10, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Windows, libc: Libc::None, @@ -4665,7 +4665,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 9, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Linux, libc: Libc::Gnu, @@ -4677,7 +4677,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 9, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Windows, libc: Libc::None, @@ -4689,7 +4689,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 9, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Gnu, @@ -4701,7 +4701,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 9, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Musl, @@ -4713,7 +4713,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 9, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Macos, libc: Libc::None, @@ -4725,7 +4725,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 9, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Windows, libc: Libc::None, @@ -4737,7 +4737,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 8, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Linux, libc: Libc::Gnu, @@ -4749,7 +4749,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 8, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Windows, libc: Libc::None, @@ -4761,7 +4761,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 8, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Gnu, @@ -4773,7 +4773,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 8, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Musl, @@ -4785,7 +4785,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 8, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Macos, libc: Libc::None, @@ -4797,7 +4797,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 8, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Windows, libc: Libc::None, @@ -4809,7 +4809,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 7, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Windows, libc: Libc::None, @@ -4821,7 +4821,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 7, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Gnu, @@ -4833,7 +4833,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 7, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Musl, @@ -4845,7 +4845,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 7, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Macos, libc: Libc::None, @@ -4857,7 +4857,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 7, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Windows, libc: Libc::None, @@ -4869,7 +4869,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 6, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Windows, libc: Libc::None, @@ -4881,7 +4881,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 6, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Gnu, @@ -4893,7 +4893,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 6, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Musl, @@ -4905,7 +4905,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 6, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Macos, libc: Libc::None, @@ -4917,7 +4917,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 6, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Windows, libc: Libc::None, @@ -4929,7 +4929,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 5, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Windows, libc: Libc::None, @@ -4941,7 +4941,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 5, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Gnu, @@ -4953,7 +4953,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 5, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Musl, @@ -4965,7 +4965,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 5, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Macos, libc: Libc::None, @@ -4977,7 +4977,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 5, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Windows, libc: Libc::None, @@ -4989,7 +4989,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 3, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Windows, libc: Libc::None, @@ -5001,7 +5001,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 3, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Gnu, @@ -5013,7 +5013,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 3, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Musl, @@ -5025,7 +5025,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 3, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Macos, libc: Libc::None, @@ -5037,7 +5037,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 3, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Windows, libc: Libc::None, @@ -5049,7 +5049,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 2, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Windows, libc: Libc::None, @@ -5061,7 +5061,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 2, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Gnu, @@ -5073,7 +5073,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 2, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Macos, libc: Libc::None, @@ -5085,7 +5085,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 8, patch: 2, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Windows, libc: Libc::None, @@ -5097,7 +5097,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 7, patch: 9, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Windows, libc: Libc::None, @@ -5109,7 +5109,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 7, patch: 9, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Gnu, @@ -5121,7 +5121,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 7, patch: 9, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Musl, @@ -5133,7 +5133,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 7, patch: 9, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Macos, libc: Libc::None, @@ -5145,7 +5145,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 7, patch: 9, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Windows, libc: Libc::None, @@ -5157,7 +5157,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 7, patch: 7, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Windows, libc: Libc::None, @@ -5169,7 +5169,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 7, patch: 7, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Gnu, @@ -5181,7 +5181,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 7, patch: 7, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Musl, @@ -5193,7 +5193,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 7, patch: 7, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Macos, libc: Libc::None, @@ -5205,7 +5205,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 7, patch: 7, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Windows, libc: Libc::None, @@ -5217,7 +5217,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 7, patch: 6, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Windows, libc: Libc::None, @@ -5229,7 +5229,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 7, patch: 6, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Gnu, @@ -5241,7 +5241,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 7, patch: 6, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Musl, @@ -5253,7 +5253,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 7, patch: 6, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Macos, libc: Libc::None, @@ -5265,7 +5265,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 7, patch: 6, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Windows, libc: Libc::None, @@ -5277,7 +5277,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 7, patch: 5, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Windows, libc: Libc::None, @@ -5289,7 +5289,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 7, patch: 5, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Gnu, @@ -5301,7 +5301,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 7, patch: 5, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Musl, @@ -5313,7 +5313,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 7, patch: 5, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Macos, libc: Libc::None, @@ -5325,7 +5325,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 7, patch: 5, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Windows, libc: Libc::None, @@ -5337,7 +5337,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 7, patch: 4, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Windows, libc: Libc::None, @@ -5349,7 +5349,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 7, patch: 4, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Gnu, @@ -5361,7 +5361,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 7, patch: 4, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Musl, @@ -5373,7 +5373,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 7, patch: 4, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Macos, libc: Libc::None, @@ -5385,7 +5385,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 7, patch: 4, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Windows, libc: Libc::None, @@ -5397,7 +5397,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 7, patch: 3, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86, os: Os::Windows, libc: Libc::None, @@ -5409,7 +5409,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 7, patch: 3, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Gnu, @@ -5421,7 +5421,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 7, patch: 3, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Musl, @@ -5433,7 +5433,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 7, patch: 3, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Macos, libc: Libc::None, @@ -5445,7 +5445,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 7, patch: 3, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Windows, libc: Libc::None, @@ -5457,7 +5457,7 @@ pub(crate) const PYTHON_DOWNLOADS: &[PythonDownload] = &[ major: 3, minor: 7, patch: 1, - implementation: ImplementationName::Cpython, + implementation: ImplementationName::CPython, arch: Arch::X86_64, os: Os::Linux, libc: Libc::Gnu, diff --git a/crates/uv-interpreter/template-version-metadata.py b/crates/uv-interpreter/template-version-metadata.py index 7050c02a8..7eda4c14e 100644 --- a/crates/uv-interpreter/template-version-metadata.py +++ b/crates/uv-interpreter/template-version-metadata.py @@ -33,10 +33,19 @@ except ImportError: exit(1) +def prepare_name(name: str) -> str: + match name: + case "cpython": + return "CPython" + case _: + raise ValueError(f"Unknown implementation name: {name}") + + def prepare_value(value: dict) -> dict: # Convert fields from snake case to camel case for enums - for key in ["arch", "os", "libc", "name"]: + for key in ["arch", "os", "libc"]: value[key] = value[key].title() + value["name"] = prepare_name(value["name"]) return value