class Dependabot::Uv::Version

def post_cmp_key

def post_cmp_key
  # Versions without a post segment should sort before those with one.
  return NEGATIVE_INFINITY if post.nil?
  T.must(post)
end