class Dependabot::Uv::LanguageVersionManager
def python_requirement_string
def python_requirement_string if user_specified_python_version if user_specified_python_version.start_with?(/\d/) parts = user_specified_python_version.split(".") parts.fill("*", (parts.length)..2).join(".") else user_specified_python_version end else python_version_matching_imputed_requirements || PRE_INSTALLED_PYTHON_VERSIONS.first end end