class Dependabot::Uv::FileUpdater::CompileFileUpdater

def run_uv_compile_command(command, allow_unsafe_shell_command: false, fingerprint:)

def run_uv_compile_command(command, allow_unsafe_shell_command: false, fingerprint:)
  run_command(
    "pyenv local #{language_version_manager.python_major_minor}",
    fingerprint: "pyenv local <python_major_minor>"
  )
  run_command(
    command,
    allow_unsafe_shell_command: allow_unsafe_shell_command,
    fingerprint: fingerprint
  )
end