mirror of
https://github.com/astral-sh/uv
synced 2026-01-20 21:10:10 -05:00
Remove path-absolutize dependency (#6589)
## Summary This is now in the standard library.
This commit is contained in:
@@ -686,7 +686,7 @@ impl InterpreterInfo {
|
||||
/// unless the Python executable changes, so we use the executable's last modified
|
||||
/// time as a cache key.
|
||||
pub(crate) fn query_cached(executable: &Path, cache: &Cache) -> Result<Self, Error> {
|
||||
let absolute = uv_fs::absolutize_path(executable)?;
|
||||
let absolute = std::path::absolute(executable)?;
|
||||
|
||||
let cache_entry = cache.entry(
|
||||
CacheBucket::Interpreter,
|
||||
|
||||
Reference in New Issue
Block a user