mirror of https://github.com/astral-sh/uv
Add manylinux2014 aliases for `--python-platform` (#10217)
## Summary Closes https://github.com/astral-sh/uv/issues/10210.
This commit is contained in:
parent
b316d780bf
commit
4b5a89dbff
|
|
@ -68,6 +68,11 @@ pub enum TargetTriple {
|
||||||
#[cfg_attr(feature = "schemars", schemars(rename = "x86_64-unknown-linux-musl"))]
|
#[cfg_attr(feature = "schemars", schemars(rename = "x86_64-unknown-linux-musl"))]
|
||||||
X8664UnknownLinuxMusl,
|
X8664UnknownLinuxMusl,
|
||||||
|
|
||||||
|
/// An `x86_64` target for the `manylinux2014` platform. Equivalent to `x86_64-manylinux_2_17`.
|
||||||
|
#[cfg_attr(feature = "clap", value(name = "x86_64-manylinux2014"))]
|
||||||
|
#[cfg_attr(feature = "schemars", schemars(rename = "x86_64-manylinux2014"))]
|
||||||
|
X8664Manylinux2014,
|
||||||
|
|
||||||
/// An `x86_64` target for the `manylinux_2_17` platform.
|
/// An `x86_64` target for the `manylinux_2_17` platform.
|
||||||
#[cfg_attr(feature = "clap", value(name = "x86_64-manylinux_2_17"))]
|
#[cfg_attr(feature = "clap", value(name = "x86_64-manylinux_2_17"))]
|
||||||
#[cfg_attr(feature = "schemars", schemars(rename = "x86_64-manylinux_2_17"))]
|
#[cfg_attr(feature = "schemars", schemars(rename = "x86_64-manylinux_2_17"))]
|
||||||
|
|
@ -128,6 +133,11 @@ pub enum TargetTriple {
|
||||||
#[cfg_attr(feature = "schemars", schemars(rename = "x86_64-manylinux_2_40"))]
|
#[cfg_attr(feature = "schemars", schemars(rename = "x86_64-manylinux_2_40"))]
|
||||||
X8664Manylinux240,
|
X8664Manylinux240,
|
||||||
|
|
||||||
|
/// An ARM64 target for the `manylinux2014` platform. Equivalent to `aarch64-manylinux_2_17`.
|
||||||
|
#[cfg_attr(feature = "clap", value(name = "aarch64-manylinux2014"))]
|
||||||
|
#[cfg_attr(feature = "schemars", schemars(rename = "aarch64-manylinux2014"))]
|
||||||
|
Aarch64Manylinux2014,
|
||||||
|
|
||||||
/// An ARM64 target for the `manylinux_2_17` platform.
|
/// An ARM64 target for the `manylinux_2_17` platform.
|
||||||
#[cfg_attr(feature = "clap", value(name = "aarch64-manylinux_2_17"))]
|
#[cfg_attr(feature = "clap", value(name = "aarch64-manylinux_2_17"))]
|
||||||
#[cfg_attr(feature = "schemars", schemars(rename = "aarch64-manylinux_2_17"))]
|
#[cfg_attr(feature = "schemars", schemars(rename = "aarch64-manylinux_2_17"))]
|
||||||
|
|
@ -229,6 +239,13 @@ impl TargetTriple {
|
||||||
Self::X8664UnknownLinuxMusl => {
|
Self::X8664UnknownLinuxMusl => {
|
||||||
Platform::new(Os::Musllinux { major: 1, minor: 2 }, Arch::X86_64)
|
Platform::new(Os::Musllinux { major: 1, minor: 2 }, Arch::X86_64)
|
||||||
}
|
}
|
||||||
|
Self::X8664Manylinux2014 => Platform::new(
|
||||||
|
Os::Manylinux {
|
||||||
|
major: 2,
|
||||||
|
minor: 17,
|
||||||
|
},
|
||||||
|
Arch::X86_64,
|
||||||
|
),
|
||||||
Self::X8664Manylinux217 => Platform::new(
|
Self::X8664Manylinux217 => Platform::new(
|
||||||
Os::Manylinux {
|
Os::Manylinux {
|
||||||
major: 2,
|
major: 2,
|
||||||
|
|
@ -313,6 +330,13 @@ impl TargetTriple {
|
||||||
},
|
},
|
||||||
Arch::X86_64,
|
Arch::X86_64,
|
||||||
),
|
),
|
||||||
|
Self::Aarch64Manylinux2014 => Platform::new(
|
||||||
|
Os::Manylinux {
|
||||||
|
major: 2,
|
||||||
|
minor: 17,
|
||||||
|
},
|
||||||
|
Arch::Aarch64,
|
||||||
|
),
|
||||||
Self::Aarch64Manylinux217 => Platform::new(
|
Self::Aarch64Manylinux217 => Platform::new(
|
||||||
Os::Manylinux {
|
Os::Manylinux {
|
||||||
major: 2,
|
major: 2,
|
||||||
|
|
@ -411,6 +435,7 @@ impl TargetTriple {
|
||||||
Self::Aarch64UnknownLinuxGnu => "aarch64",
|
Self::Aarch64UnknownLinuxGnu => "aarch64",
|
||||||
Self::Aarch64UnknownLinuxMusl => "aarch64",
|
Self::Aarch64UnknownLinuxMusl => "aarch64",
|
||||||
Self::X8664UnknownLinuxMusl => "x86_64",
|
Self::X8664UnknownLinuxMusl => "x86_64",
|
||||||
|
Self::X8664Manylinux2014 => "x86_64",
|
||||||
Self::X8664Manylinux217 => "x86_64",
|
Self::X8664Manylinux217 => "x86_64",
|
||||||
Self::X8664Manylinux228 => "x86_64",
|
Self::X8664Manylinux228 => "x86_64",
|
||||||
Self::X8664Manylinux231 => "x86_64",
|
Self::X8664Manylinux231 => "x86_64",
|
||||||
|
|
@ -423,6 +448,7 @@ impl TargetTriple {
|
||||||
Self::X8664Manylinux238 => "x86_64",
|
Self::X8664Manylinux238 => "x86_64",
|
||||||
Self::X8664Manylinux239 => "x86_64",
|
Self::X8664Manylinux239 => "x86_64",
|
||||||
Self::X8664Manylinux240 => "x86_64",
|
Self::X8664Manylinux240 => "x86_64",
|
||||||
|
Self::Aarch64Manylinux2014 => "aarch64",
|
||||||
Self::Aarch64Manylinux217 => "aarch64",
|
Self::Aarch64Manylinux217 => "aarch64",
|
||||||
Self::Aarch64Manylinux228 => "aarch64",
|
Self::Aarch64Manylinux228 => "aarch64",
|
||||||
Self::Aarch64Manylinux231 => "aarch64",
|
Self::Aarch64Manylinux231 => "aarch64",
|
||||||
|
|
@ -449,6 +475,7 @@ impl TargetTriple {
|
||||||
Self::Aarch64UnknownLinuxGnu => "Linux",
|
Self::Aarch64UnknownLinuxGnu => "Linux",
|
||||||
Self::Aarch64UnknownLinuxMusl => "Linux",
|
Self::Aarch64UnknownLinuxMusl => "Linux",
|
||||||
Self::X8664UnknownLinuxMusl => "Linux",
|
Self::X8664UnknownLinuxMusl => "Linux",
|
||||||
|
Self::X8664Manylinux2014 => "Linux",
|
||||||
Self::X8664Manylinux217 => "Linux",
|
Self::X8664Manylinux217 => "Linux",
|
||||||
Self::X8664Manylinux228 => "Linux",
|
Self::X8664Manylinux228 => "Linux",
|
||||||
Self::X8664Manylinux231 => "Linux",
|
Self::X8664Manylinux231 => "Linux",
|
||||||
|
|
@ -461,6 +488,7 @@ impl TargetTriple {
|
||||||
Self::X8664Manylinux238 => "Linux",
|
Self::X8664Manylinux238 => "Linux",
|
||||||
Self::X8664Manylinux239 => "Linux",
|
Self::X8664Manylinux239 => "Linux",
|
||||||
Self::X8664Manylinux240 => "Linux",
|
Self::X8664Manylinux240 => "Linux",
|
||||||
|
Self::Aarch64Manylinux2014 => "Linux",
|
||||||
Self::Aarch64Manylinux217 => "Linux",
|
Self::Aarch64Manylinux217 => "Linux",
|
||||||
Self::Aarch64Manylinux228 => "Linux",
|
Self::Aarch64Manylinux228 => "Linux",
|
||||||
Self::Aarch64Manylinux231 => "Linux",
|
Self::Aarch64Manylinux231 => "Linux",
|
||||||
|
|
@ -487,6 +515,7 @@ impl TargetTriple {
|
||||||
Self::Aarch64UnknownLinuxGnu => "",
|
Self::Aarch64UnknownLinuxGnu => "",
|
||||||
Self::Aarch64UnknownLinuxMusl => "",
|
Self::Aarch64UnknownLinuxMusl => "",
|
||||||
Self::X8664UnknownLinuxMusl => "",
|
Self::X8664UnknownLinuxMusl => "",
|
||||||
|
Self::X8664Manylinux2014 => "",
|
||||||
Self::X8664Manylinux217 => "",
|
Self::X8664Manylinux217 => "",
|
||||||
Self::X8664Manylinux228 => "",
|
Self::X8664Manylinux228 => "",
|
||||||
Self::X8664Manylinux231 => "",
|
Self::X8664Manylinux231 => "",
|
||||||
|
|
@ -499,6 +528,7 @@ impl TargetTriple {
|
||||||
Self::X8664Manylinux238 => "",
|
Self::X8664Manylinux238 => "",
|
||||||
Self::X8664Manylinux239 => "",
|
Self::X8664Manylinux239 => "",
|
||||||
Self::X8664Manylinux240 => "",
|
Self::X8664Manylinux240 => "",
|
||||||
|
Self::Aarch64Manylinux2014 => "",
|
||||||
Self::Aarch64Manylinux217 => "",
|
Self::Aarch64Manylinux217 => "",
|
||||||
Self::Aarch64Manylinux228 => "",
|
Self::Aarch64Manylinux228 => "",
|
||||||
Self::Aarch64Manylinux231 => "",
|
Self::Aarch64Manylinux231 => "",
|
||||||
|
|
@ -525,6 +555,7 @@ impl TargetTriple {
|
||||||
Self::Aarch64UnknownLinuxGnu => "",
|
Self::Aarch64UnknownLinuxGnu => "",
|
||||||
Self::Aarch64UnknownLinuxMusl => "",
|
Self::Aarch64UnknownLinuxMusl => "",
|
||||||
Self::X8664UnknownLinuxMusl => "",
|
Self::X8664UnknownLinuxMusl => "",
|
||||||
|
Self::X8664Manylinux2014 => "",
|
||||||
Self::X8664Manylinux217 => "",
|
Self::X8664Manylinux217 => "",
|
||||||
Self::X8664Manylinux228 => "",
|
Self::X8664Manylinux228 => "",
|
||||||
Self::X8664Manylinux231 => "",
|
Self::X8664Manylinux231 => "",
|
||||||
|
|
@ -537,6 +568,7 @@ impl TargetTriple {
|
||||||
Self::X8664Manylinux238 => "",
|
Self::X8664Manylinux238 => "",
|
||||||
Self::X8664Manylinux239 => "",
|
Self::X8664Manylinux239 => "",
|
||||||
Self::X8664Manylinux240 => "",
|
Self::X8664Manylinux240 => "",
|
||||||
|
Self::Aarch64Manylinux2014 => "",
|
||||||
Self::Aarch64Manylinux217 => "",
|
Self::Aarch64Manylinux217 => "",
|
||||||
Self::Aarch64Manylinux228 => "",
|
Self::Aarch64Manylinux228 => "",
|
||||||
Self::Aarch64Manylinux231 => "",
|
Self::Aarch64Manylinux231 => "",
|
||||||
|
|
@ -563,6 +595,7 @@ impl TargetTriple {
|
||||||
Self::Aarch64UnknownLinuxGnu => "posix",
|
Self::Aarch64UnknownLinuxGnu => "posix",
|
||||||
Self::Aarch64UnknownLinuxMusl => "posix",
|
Self::Aarch64UnknownLinuxMusl => "posix",
|
||||||
Self::X8664UnknownLinuxMusl => "posix",
|
Self::X8664UnknownLinuxMusl => "posix",
|
||||||
|
Self::X8664Manylinux2014 => "posix",
|
||||||
Self::X8664Manylinux217 => "posix",
|
Self::X8664Manylinux217 => "posix",
|
||||||
Self::X8664Manylinux228 => "posix",
|
Self::X8664Manylinux228 => "posix",
|
||||||
Self::X8664Manylinux231 => "posix",
|
Self::X8664Manylinux231 => "posix",
|
||||||
|
|
@ -575,6 +608,7 @@ impl TargetTriple {
|
||||||
Self::X8664Manylinux238 => "posix",
|
Self::X8664Manylinux238 => "posix",
|
||||||
Self::X8664Manylinux239 => "posix",
|
Self::X8664Manylinux239 => "posix",
|
||||||
Self::X8664Manylinux240 => "posix",
|
Self::X8664Manylinux240 => "posix",
|
||||||
|
Self::Aarch64Manylinux2014 => "posix",
|
||||||
Self::Aarch64Manylinux217 => "posix",
|
Self::Aarch64Manylinux217 => "posix",
|
||||||
Self::Aarch64Manylinux228 => "posix",
|
Self::Aarch64Manylinux228 => "posix",
|
||||||
Self::Aarch64Manylinux231 => "posix",
|
Self::Aarch64Manylinux231 => "posix",
|
||||||
|
|
@ -601,6 +635,7 @@ impl TargetTriple {
|
||||||
Self::Aarch64UnknownLinuxGnu => "linux",
|
Self::Aarch64UnknownLinuxGnu => "linux",
|
||||||
Self::Aarch64UnknownLinuxMusl => "linux",
|
Self::Aarch64UnknownLinuxMusl => "linux",
|
||||||
Self::X8664UnknownLinuxMusl => "linux",
|
Self::X8664UnknownLinuxMusl => "linux",
|
||||||
|
Self::X8664Manylinux2014 => "linux",
|
||||||
Self::X8664Manylinux217 => "linux",
|
Self::X8664Manylinux217 => "linux",
|
||||||
Self::X8664Manylinux228 => "linux",
|
Self::X8664Manylinux228 => "linux",
|
||||||
Self::X8664Manylinux231 => "linux",
|
Self::X8664Manylinux231 => "linux",
|
||||||
|
|
@ -613,6 +648,7 @@ impl TargetTriple {
|
||||||
Self::X8664Manylinux238 => "linux",
|
Self::X8664Manylinux238 => "linux",
|
||||||
Self::X8664Manylinux239 => "linux",
|
Self::X8664Manylinux239 => "linux",
|
||||||
Self::X8664Manylinux240 => "linux",
|
Self::X8664Manylinux240 => "linux",
|
||||||
|
Self::Aarch64Manylinux2014 => "linux",
|
||||||
Self::Aarch64Manylinux217 => "linux",
|
Self::Aarch64Manylinux217 => "linux",
|
||||||
Self::Aarch64Manylinux228 => "linux",
|
Self::Aarch64Manylinux228 => "linux",
|
||||||
Self::Aarch64Manylinux231 => "linux",
|
Self::Aarch64Manylinux231 => "linux",
|
||||||
|
|
@ -639,6 +675,7 @@ impl TargetTriple {
|
||||||
Self::Aarch64UnknownLinuxGnu => true,
|
Self::Aarch64UnknownLinuxGnu => true,
|
||||||
Self::Aarch64UnknownLinuxMusl => true,
|
Self::Aarch64UnknownLinuxMusl => true,
|
||||||
Self::X8664UnknownLinuxMusl => true,
|
Self::X8664UnknownLinuxMusl => true,
|
||||||
|
Self::X8664Manylinux2014 => true,
|
||||||
Self::X8664Manylinux217 => true,
|
Self::X8664Manylinux217 => true,
|
||||||
Self::X8664Manylinux228 => true,
|
Self::X8664Manylinux228 => true,
|
||||||
Self::X8664Manylinux231 => true,
|
Self::X8664Manylinux231 => true,
|
||||||
|
|
@ -651,6 +688,7 @@ impl TargetTriple {
|
||||||
Self::X8664Manylinux238 => true,
|
Self::X8664Manylinux238 => true,
|
||||||
Self::X8664Manylinux239 => true,
|
Self::X8664Manylinux239 => true,
|
||||||
Self::X8664Manylinux240 => true,
|
Self::X8664Manylinux240 => true,
|
||||||
|
Self::Aarch64Manylinux2014 => true,
|
||||||
Self::Aarch64Manylinux217 => true,
|
Self::Aarch64Manylinux217 => true,
|
||||||
Self::Aarch64Manylinux228 => true,
|
Self::Aarch64Manylinux228 => true,
|
||||||
Self::Aarch64Manylinux231 => true,
|
Self::Aarch64Manylinux231 => true,
|
||||||
|
|
|
||||||
|
|
@ -2857,6 +2857,8 @@ uv tree [OPTIONS]
|
||||||
|
|
||||||
<li><code>x86_64-unknown-linux-musl</code>: An <code>x86_64</code> Linux target</li>
|
<li><code>x86_64-unknown-linux-musl</code>: An <code>x86_64</code> Linux target</li>
|
||||||
|
|
||||||
|
<li><code>x86_64-manylinux2014</code>: An <code>x86_64</code> target for the <code>manylinux2014</code> platform. Equivalent to <code>x86_64-manylinux_2_17</code></li>
|
||||||
|
|
||||||
<li><code>x86_64-manylinux_2_17</code>: An <code>x86_64</code> target for the <code>manylinux_2_17</code> platform</li>
|
<li><code>x86_64-manylinux_2_17</code>: An <code>x86_64</code> target for the <code>manylinux_2_17</code> platform</li>
|
||||||
|
|
||||||
<li><code>x86_64-manylinux_2_28</code>: An <code>x86_64</code> target for the <code>manylinux_2_28</code> platform</li>
|
<li><code>x86_64-manylinux_2_28</code>: An <code>x86_64</code> target for the <code>manylinux_2_28</code> platform</li>
|
||||||
|
|
@ -2881,6 +2883,8 @@ uv tree [OPTIONS]
|
||||||
|
|
||||||
<li><code>x86_64-manylinux_2_40</code>: An <code>x86_64</code> target for the <code>manylinux_2_40</code> platform</li>
|
<li><code>x86_64-manylinux_2_40</code>: An <code>x86_64</code> target for the <code>manylinux_2_40</code> platform</li>
|
||||||
|
|
||||||
|
<li><code>aarch64-manylinux2014</code>: An ARM64 target for the <code>manylinux2014</code> platform. Equivalent to <code>aarch64-manylinux_2_17</code></li>
|
||||||
|
|
||||||
<li><code>aarch64-manylinux_2_17</code>: An ARM64 target for the <code>manylinux_2_17</code> platform</li>
|
<li><code>aarch64-manylinux_2_17</code>: An ARM64 target for the <code>manylinux_2_17</code> platform</li>
|
||||||
|
|
||||||
<li><code>aarch64-manylinux_2_28</code>: An ARM64 target for the <code>manylinux_2_28</code> platform</li>
|
<li><code>aarch64-manylinux_2_28</code>: An ARM64 target for the <code>manylinux_2_28</code> platform</li>
|
||||||
|
|
@ -5759,6 +5763,8 @@ uv pip compile [OPTIONS] <SRC_FILE>...
|
||||||
|
|
||||||
<li><code>x86_64-unknown-linux-musl</code>: An <code>x86_64</code> Linux target</li>
|
<li><code>x86_64-unknown-linux-musl</code>: An <code>x86_64</code> Linux target</li>
|
||||||
|
|
||||||
|
<li><code>x86_64-manylinux2014</code>: An <code>x86_64</code> target for the <code>manylinux2014</code> platform. Equivalent to <code>x86_64-manylinux_2_17</code></li>
|
||||||
|
|
||||||
<li><code>x86_64-manylinux_2_17</code>: An <code>x86_64</code> target for the <code>manylinux_2_17</code> platform</li>
|
<li><code>x86_64-manylinux_2_17</code>: An <code>x86_64</code> target for the <code>manylinux_2_17</code> platform</li>
|
||||||
|
|
||||||
<li><code>x86_64-manylinux_2_28</code>: An <code>x86_64</code> target for the <code>manylinux_2_28</code> platform</li>
|
<li><code>x86_64-manylinux_2_28</code>: An <code>x86_64</code> target for the <code>manylinux_2_28</code> platform</li>
|
||||||
|
|
@ -5783,6 +5789,8 @@ uv pip compile [OPTIONS] <SRC_FILE>...
|
||||||
|
|
||||||
<li><code>x86_64-manylinux_2_40</code>: An <code>x86_64</code> target for the <code>manylinux_2_40</code> platform</li>
|
<li><code>x86_64-manylinux_2_40</code>: An <code>x86_64</code> target for the <code>manylinux_2_40</code> platform</li>
|
||||||
|
|
||||||
|
<li><code>aarch64-manylinux2014</code>: An ARM64 target for the <code>manylinux2014</code> platform. Equivalent to <code>aarch64-manylinux_2_17</code></li>
|
||||||
|
|
||||||
<li><code>aarch64-manylinux_2_17</code>: An ARM64 target for the <code>manylinux_2_17</code> platform</li>
|
<li><code>aarch64-manylinux_2_17</code>: An ARM64 target for the <code>manylinux_2_17</code> platform</li>
|
||||||
|
|
||||||
<li><code>aarch64-manylinux_2_28</code>: An ARM64 target for the <code>manylinux_2_28</code> platform</li>
|
<li><code>aarch64-manylinux_2_28</code>: An ARM64 target for the <code>manylinux_2_28</code> platform</li>
|
||||||
|
|
@ -6159,6 +6167,8 @@ uv pip sync [OPTIONS] <SRC_FILE>...
|
||||||
|
|
||||||
<li><code>x86_64-unknown-linux-musl</code>: An <code>x86_64</code> Linux target</li>
|
<li><code>x86_64-unknown-linux-musl</code>: An <code>x86_64</code> Linux target</li>
|
||||||
|
|
||||||
|
<li><code>x86_64-manylinux2014</code>: An <code>x86_64</code> target for the <code>manylinux2014</code> platform. Equivalent to <code>x86_64-manylinux_2_17</code></li>
|
||||||
|
|
||||||
<li><code>x86_64-manylinux_2_17</code>: An <code>x86_64</code> target for the <code>manylinux_2_17</code> platform</li>
|
<li><code>x86_64-manylinux_2_17</code>: An <code>x86_64</code> target for the <code>manylinux_2_17</code> platform</li>
|
||||||
|
|
||||||
<li><code>x86_64-manylinux_2_28</code>: An <code>x86_64</code> target for the <code>manylinux_2_28</code> platform</li>
|
<li><code>x86_64-manylinux_2_28</code>: An <code>x86_64</code> target for the <code>manylinux_2_28</code> platform</li>
|
||||||
|
|
@ -6183,6 +6193,8 @@ uv pip sync [OPTIONS] <SRC_FILE>...
|
||||||
|
|
||||||
<li><code>x86_64-manylinux_2_40</code>: An <code>x86_64</code> target for the <code>manylinux_2_40</code> platform</li>
|
<li><code>x86_64-manylinux_2_40</code>: An <code>x86_64</code> target for the <code>manylinux_2_40</code> platform</li>
|
||||||
|
|
||||||
|
<li><code>aarch64-manylinux2014</code>: An ARM64 target for the <code>manylinux2014</code> platform. Equivalent to <code>aarch64-manylinux_2_17</code></li>
|
||||||
|
|
||||||
<li><code>aarch64-manylinux_2_17</code>: An ARM64 target for the <code>manylinux_2_17</code> platform</li>
|
<li><code>aarch64-manylinux_2_17</code>: An ARM64 target for the <code>manylinux_2_17</code> platform</li>
|
||||||
|
|
||||||
<li><code>aarch64-manylinux_2_28</code>: An ARM64 target for the <code>manylinux_2_28</code> platform</li>
|
<li><code>aarch64-manylinux_2_28</code>: An ARM64 target for the <code>manylinux_2_28</code> platform</li>
|
||||||
|
|
@ -6612,6 +6624,8 @@ uv pip install [OPTIONS] <PACKAGE|--requirements <REQUIREMENTS>|--editable <EDIT
|
||||||
|
|
||||||
<li><code>x86_64-unknown-linux-musl</code>: An <code>x86_64</code> Linux target</li>
|
<li><code>x86_64-unknown-linux-musl</code>: An <code>x86_64</code> Linux target</li>
|
||||||
|
|
||||||
|
<li><code>x86_64-manylinux2014</code>: An <code>x86_64</code> target for the <code>manylinux2014</code> platform. Equivalent to <code>x86_64-manylinux_2_17</code></li>
|
||||||
|
|
||||||
<li><code>x86_64-manylinux_2_17</code>: An <code>x86_64</code> target for the <code>manylinux_2_17</code> platform</li>
|
<li><code>x86_64-manylinux_2_17</code>: An <code>x86_64</code> target for the <code>manylinux_2_17</code> platform</li>
|
||||||
|
|
||||||
<li><code>x86_64-manylinux_2_28</code>: An <code>x86_64</code> target for the <code>manylinux_2_28</code> platform</li>
|
<li><code>x86_64-manylinux_2_28</code>: An <code>x86_64</code> target for the <code>manylinux_2_28</code> platform</li>
|
||||||
|
|
@ -6636,6 +6650,8 @@ uv pip install [OPTIONS] <PACKAGE|--requirements <REQUIREMENTS>|--editable <EDIT
|
||||||
|
|
||||||
<li><code>x86_64-manylinux_2_40</code>: An <code>x86_64</code> target for the <code>manylinux_2_40</code> platform</li>
|
<li><code>x86_64-manylinux_2_40</code>: An <code>x86_64</code> target for the <code>manylinux_2_40</code> platform</li>
|
||||||
|
|
||||||
|
<li><code>aarch64-manylinux2014</code>: An ARM64 target for the <code>manylinux2014</code> platform. Equivalent to <code>aarch64-manylinux_2_17</code></li>
|
||||||
|
|
||||||
<li><code>aarch64-manylinux_2_17</code>: An ARM64 target for the <code>manylinux_2_17</code> platform</li>
|
<li><code>aarch64-manylinux_2_17</code>: An ARM64 target for the <code>manylinux_2_17</code> platform</li>
|
||||||
|
|
||||||
<li><code>aarch64-manylinux_2_28</code>: An ARM64 target for the <code>manylinux_2_28</code> platform</li>
|
<li><code>aarch64-manylinux_2_28</code>: An ARM64 target for the <code>manylinux_2_28</code> platform</li>
|
||||||
|
|
|
||||||
|
|
@ -1850,6 +1850,13 @@
|
||||||
"x86_64-unknown-linux-musl"
|
"x86_64-unknown-linux-musl"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"description": "An `x86_64` target for the `manylinux2014` platform. Equivalent to `x86_64-manylinux_2_17`.",
|
||||||
|
"type": "string",
|
||||||
|
"enum": [
|
||||||
|
"x86_64-manylinux2014"
|
||||||
|
]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"description": "An `x86_64` target for the `manylinux_2_17` platform.",
|
"description": "An `x86_64` target for the `manylinux_2_17` platform.",
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
|
@ -1934,6 +1941,13 @@
|
||||||
"x86_64-manylinux_2_40"
|
"x86_64-manylinux_2_40"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"description": "An ARM64 target for the `manylinux2014` platform. Equivalent to `aarch64-manylinux_2_17`.",
|
||||||
|
"type": "string",
|
||||||
|
"enum": [
|
||||||
|
"aarch64-manylinux2014"
|
||||||
|
]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"description": "An ARM64 target for the `manylinux_2_17` platform.",
|
"description": "An ARM64 target for the `manylinux_2_17` platform.",
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue