Skip to content

Commit ed65c24

Browse files
Sync latest Python releases (#16246)
Automated update for Python releases. Co-authored-by: zanieb <2586601+zanieb@users.noreply.github.com>
1 parent e0fe38e commit ed65c24

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

crates/uv-dev/src/generate_sysconfig_mappings.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ use crate::ROOT_DIR;
1111
use crate::generate_all::Mode;
1212

1313
/// Contains current supported targets
14-
const TARGETS_YML_URL: &str = "https://raw.githubusercontent.com/astral-sh/python-build-standalone/refs/tags/20251007/cpython-unix/targets.yml";
14+
const TARGETS_YML_URL: &str = "https://raw.githubusercontent.com/astral-sh/python-build-standalone/refs/tags/20251014/cpython-unix/targets.yml";
1515

1616
#[derive(clap::Args)]
1717
pub(crate) struct Args {
@@ -130,7 +130,7 @@ async fn generate() -> Result<String> {
130130
output.push_str("//! DO NOT EDIT\n");
131131
output.push_str("//!\n");
132132
output.push_str("//! Generated with `cargo run dev generate-sysconfig-metadata`\n");
133-
output.push_str("//! Targets from <https://github.com/astral-sh/python-build-standalone/blob/20251007/cpython-unix/targets.yml>\n");
133+
output.push_str("//! Targets from <https://github.com/astral-sh/python-build-standalone/blob/20251014/cpython-unix/targets.yml>\n");
134134
output.push_str("//!\n");
135135

136136
// Disable clippy/fmt

crates/uv-python/src/sysconfig/generated_mappings.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! DO NOT EDIT
22
//!
33
//! Generated with `cargo run dev generate-sysconfig-metadata`
4-
//! Targets from <https://github.com/astral-sh/python-build-standalone/blob/20251007/cpython-unix/targets.yml>
4+
//! Targets from <https://github.com/astral-sh/python-build-standalone/blob/20251014/cpython-unix/targets.yml>
55
//!
66
#![allow(clippy::all)]
77
#![cfg_attr(any(), rustfmt::skip)]

0 commit comments

Comments
 (0)