()
| 67 | ]; |
| 68 | |
| 69 | function getDevPythonVersion(): PythonVersion { |
| 70 | // Omitting major/minor lets uv resolve the interpreter via its own |
| 71 | // chain (`.python-version`, managed default, system `python3`) instead |
| 72 | // of the old `--python 3.0` placeholder that uv >= 0.10.11 rejects. |
| 73 | return { |
| 74 | pipPath: 'pip3', |
| 75 | pythonPath: 'python3', |
| 76 | runtime: 'python3', |
| 77 | }; |
| 78 | } |
| 79 | |
| 80 | /** |
| 81 | * Select the appropriate Python version for production builds when no version is specified |
no outgoing calls
no test coverage detected