ソースを参照

Merge pull request #99 from langgenius/fix/remove-proxy-args-from-uv

fix: Remove redundant proxy handling in Python environment setup
Yeuoly 4 ヶ月 前
コミット
07d13bfb59
共有1 個のファイルを変更した0 個の追加6 個の削除を含む
  1. 0 6
      internal/core/plugin_manager/local_runtime/environment_python.go

+ 0 - 6
internal/core/plugin_manager/local_runtime/environment_python.go

@@ -104,12 +104,6 @@ func (p *LocalPluginRuntime) InitPythonEnvironment() error {
 
 	args := []string{"install"}
 
-	if p.HttpProxy != "" {
-		args = append(args, "--proxy", p.HttpProxy)
-	} else if p.HttpsProxy != "" {
-		args = append(args, "--proxy", p.HttpsProxy)
-	}
-
 	if p.pipMirrorUrl != "" {
 		args = append(args, "-i", p.pipMirrorUrl)
 	}