From fb229c89c478e1594453f2d62112d8565463cc4c Mon Sep 17 00:00:00 2001 From: debugtalk Date: Thu, 5 May 2022 14:33:07 +0800 Subject: [PATCH] change: skip funppy version requirements --- hrp/internal/scaffold/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hrp/internal/scaffold/main.go b/hrp/internal/scaffold/main.go index 98f5ffed..d655384d 100644 --- a/hrp/internal/scaffold/main.go +++ b/hrp/internal/scaffold/main.go @@ -185,7 +185,7 @@ func createPythonPlugin(projectName string) error { return errors.Wrap(err, "copy file failed") } - _, err = builtin.EnsurePython3Venv(fmt.Sprintf("funppy>=%s", shared.Version)) + _, err = builtin.EnsurePython3Venv("funppy") if err != nil { return err }