80b0d4c4e2
Revert #11601 for now We run Python interpreter discovery with `-I` (#2500) which means these environments variables are ignored when determining `sys.path`. Unless we decide to remove the `-I` flag from the `sys.path` query, we shouldn't release these changes to interpreter discovery caching.
9 lines
191 B
Rust
9 lines
191 B
Rust
use serde::{Deserialize, Serialize};
|
|
use uv_cache_info::Timestamp;
|
|
|
|
#[derive(Deserialize, Serialize)]
|
|
pub struct CachedByTimestamp<Data> {
|
|
pub timestamp: Timestamp,
|
|
pub data: Data,
|
|
}
|