From 4bab1cd0027e1d3b6006ea0ee9124e388e32eb4f Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Thu, 20 Feb 2025 21:14:31 -0800 Subject: [PATCH] Re-allow HTTP schemes for Git dependencies (#11687) ## Summary Closes https://github.com/astral-sh/uv/issues/11683. --- crates/uv-git-types/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/uv-git-types/src/lib.rs b/crates/uv-git-types/src/lib.rs index ee1ffb27f..675ff8be1 100644 --- a/crates/uv-git-types/src/lib.rs +++ b/crates/uv-git-types/src/lib.rs @@ -54,7 +54,7 @@ impl GitUrl { precise: Option, ) -> Result { match repository.scheme() { - "https" | "ssh" | "file" => {} + "http" | "https" | "ssh" | "file" => {} unsupported => { return Err(GitUrlParseError::UnsupportedGitScheme( unsupported.to_string(),