mirror of
https://github.com/astral-sh/uv.git
synced 2025-11-22 20:45:25 +00:00
Add support for unnamed Git and HTTP requirements (#2578)
## Summary Enables, e.g., `uv pip install git+https://github.com/pallets/flask.git`. Part of: https://github.com/astral-sh/uv/issues/313.
This commit is contained in:
parent
fc9761d020
commit
2979918320
12 changed files with 517 additions and 273 deletions
|
|
@ -225,6 +225,7 @@ impl From<reqwest::Error> for ErrorKind {
|
|||
Self::ReqwestError(BetterReqwestError::from(error))
|
||||
}
|
||||
}
|
||||
|
||||
impl From<reqwest_middleware::Error> for ErrorKind {
|
||||
fn from(error: reqwest_middleware::Error) -> Self {
|
||||
if let reqwest_middleware::Error::Middleware(ref underlying) = error {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue