hasUV reports whether the `uv` package manager is available on PATH.
()
| 810 | |
| 811 | // hasUV reports whether the `uv` package manager is available on PATH. |
| 812 | func hasUV() bool { |
| 813 | _, err := exec.LookPath("uv") |
| 814 | return err == nil |
| 815 | } |
| 816 | |
| 817 | // pythonVenvDir returns the effective venv directory name for a Python project. |
| 818 | func pythonVenvDir(venv string) string { |
no outgoing calls
no test coverage detected