mirror of
https://github.com/astral-sh/uv.git
synced 2025-11-22 04:27:18 +00:00
Bump MSRV to 1.84 (#12670)
## Summary Closes https://github.com/astral-sh/uv/issues/12649.
This commit is contained in:
parent
420fc287fa
commit
42dcea0ee2
64 changed files with 162 additions and 144 deletions
|
|
@ -1459,7 +1459,7 @@ impl Lock {
|
|||
return Ok(SatisfiesResult::MissingLocalIndex(name, version, path));
|
||||
}
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
// If the package is immutable, we don't need to validate it (or its dependencies).
|
||||
|
|
@ -2257,7 +2257,7 @@ impl Package {
|
|||
}
|
||||
.into()),
|
||||
};
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
if let Some(sdist) = self.to_source_dist(workspace_root)? {
|
||||
|
|
@ -3599,8 +3599,8 @@ impl GitSource {
|
|||
"branch" => kind = GitSourceKind::Branch(val.into_owned()),
|
||||
"rev" => kind = GitSourceKind::Rev(val.into_owned()),
|
||||
"subdirectory" => subdirectory = Some(PortablePathBuf::from(val.as_ref()).into()),
|
||||
_ => continue,
|
||||
};
|
||||
_ => {}
|
||||
}
|
||||
}
|
||||
let precise = GitOid::from_str(url.fragment().ok_or(GitSourceError::MissingSha)?)
|
||||
.map_err(|_| GitSourceError::InvalidSha)?;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue