(pv: PythonVersion)
| 31 | } |
| 32 | |
| 33 | export function pythonVersionString(pv: PythonVersion): string | undefined { |
| 34 | if (pv.major === undefined || pv.minor === undefined) return undefined; |
| 35 | return `${pv.major}.${pv.minor}`; |
| 36 | } |
| 37 | |
| 38 | const DEFAULT_PYTHON_VERSION: PythonVersion = makePythonVersion(3, 12); |
| 39 | export const DEFAULT_PYTHON_VERSION_STRING: string = pythonVersionString( |
no outgoing calls
no test coverage detected