(output: string)
| 65 | } |
| 66 | |
| 67 | function extractPythonVersion(output: string): string | null { |
| 68 | const match = output.match(/Python\s+([0-9][^\s]*)/i) |
| 69 | return match?.[1] ?? null |
| 70 | } |
| 71 | |
| 72 | export function isPythonVersionAtLeast( |
| 73 | version: string | null, |
no outgoing calls
no test coverage detected