class Dependabot::Uv::FileParser::PythonRequirementParser
def pip_compile_python_requirement
def pip_compile_python_requirement requirement_files.each do |file| next unless requirements_in_file_matcher.compiled_file?(file) marker = /^# This file is autogenerated by pip-compile with [pP]ython (?<version>\d+.\d+)$/m match = marker.match(file.content) next unless match return match[:version] end nil end