Skip to content

Commit 857bdc7

Browse files
charliermarshcodex
andcommitted
Update uv build wheel snapshot
The published async zip rc2 writer produces the same wheel contents with a different deterministic archive hash, so update the inline insta snapshot used by the build-backend reproducibility test. Co-authored-by: Codex <noreply@openai.com>
1 parent 0fdef0b commit 857bdc7

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

crates/uv-build-backend/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,7 @@ mod tests {
735735
// Check that the wheel is reproducible across platforms.
736736
assert_snapshot!(
737737
format!("{:x}", sha2::Sha256::digest(fs_err::read(&wheel_path).unwrap())),
738-
@"cf5d6cdd49691afa93417491dd3376abc1211894b57cdbdc9d62d47658688cc5"
738+
@"0affdf7d3fda7e0a27007f6bf61524cd58bf3fce8e456bafb58b4a22faf0d6d0"
739739
);
740740
assert_snapshot!(build.wheel_contents.join("\n"), @"
741741
built_by_uv-0.1.0.data/data/

crates/uv-extract/src/vendor/cloneable_seekable_reader.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ use std::{
1313
sync::{Arc, Mutex},
1414
};
1515

16+
// Chosen from extraction benchmarks to reduce read calls without adding too
17+
// much per-clone buffering.
1618
const BUFFER_SIZE: usize = 64 * 1024;
1719

1820
/// A trait to represent some reader which has a total length known in

0 commit comments

Comments
 (0)