class Dependabot::Uv::FileUpdater::CompileFileUpdater

def update_manifest_files

def update_manifest_files
  dependency_files.filter_map do |file|
    next unless file.name.end_with?(".in")
    file = file.dup
    updated_content = update_dependency_requirement(file)
    next if updated_content == file.content
    file.content = updated_content
    file
  end
end