Avoid reusing interpreter metadata when running under Rosetta (#9846)

## Summary

Closes https://github.com/astral-sh/uv/issues/9836.
This commit is contained in:
Charlie Marsh 2024-12-12 13:21:35 -05:00 committed by GitHub
parent c0f8e20a51
commit a13e3f5f69
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 2 deletions

View file

@ -784,7 +784,7 @@ impl CacheBucket {
Self::SourceDistributions => "sdists-v6",
Self::FlatIndex => "flat-index-v2",
Self::Git => "git-v0",
Self::Interpreter => "interpreter-v3",
Self::Interpreter => "interpreter-v4",
// Note that when bumping this, you'll also need to bump it
// in crates/uv/tests/cache_clean.rs.
Self::Simple => "simple-v14",