Skip to content

Commit f3194f7

Browse files
chore: add log message for installing uv
1 parent 7c5da26 commit f3194f7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pkg/repos/runtimes/python/python.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import (
2222
//go:embed python.json
2323
var releasesData []byte
2424

25-
const uvVersion = "uv==0.2.3"
25+
const uvVersion = "uv==0.2.27"
2626

2727
type Release struct {
2828
OS string `json:"os,omitempty"`
@@ -185,6 +185,7 @@ func (r *Runtime) runPip(ctx context.Context, toolSource, binDir string, env []s
185185
}
186186

187187
func (r *Runtime) setupUV(ctx context.Context, tmp string) error {
188+
log.InfofCtx(ctx, "Install uv %s", uvVersion)
188189
cmd := debugcmd.New(ctx, pythonCmd(tmp), "-m", "pip", "install", uvVersion)
189190
return cmd.Run()
190191
}

0 commit comments

Comments
 (0)