mirror of
https://github.com/astral-sh/uv.git
synced 2025-08-03 18:38:21 +00:00
Re-allow HTTP schemes for Git dependencies (#11687)
## Summary Closes https://github.com/astral-sh/uv/issues/11683.
This commit is contained in:
parent
6bef1a32b1
commit
4bab1cd002
1 changed files with 1 additions and 1 deletions
|
@ -54,7 +54,7 @@ impl GitUrl {
|
|||
precise: Option<GitOid>,
|
||||
) -> Result<Self, GitUrlParseError> {
|
||||
match repository.scheme() {
|
||||
"https" | "ssh" | "file" => {}
|
||||
"http" | "https" | "ssh" | "file" => {}
|
||||
unsupported => {
|
||||
return Err(GitUrlParseError::UnsupportedGitScheme(
|
||||
unsupported.to_string(),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue