mirror of
https://github.com/astral-sh/uv.git
synced 2025-07-16 01:35:00 +00:00
Remove path-absolutize
dependency (#6589)
## Summary This is now in the standard library.
This commit is contained in:
parent
7fa265a11b
commit
0dc74f619c
10 changed files with 13 additions and 66 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue