From f5c07a2991383c6abcb450c1c96b3721c43688ce Mon Sep 17 00:00:00 2001
From: Rylan Polster <rslpolster@gmail.com>
Date: Thu, 1 Oct 2020 14:40:36 -0400
Subject: [PATCH] bump-formula-pr: don't warn for virtualenv resource

---
 Library/Homebrew/dev-cmd/bump-formula-pr.rb | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/Library/Homebrew/dev-cmd/bump-formula-pr.rb b/Library/Homebrew/dev-cmd/bump-formula-pr.rb
index 4fec1e3112..d07b1b0d84 100644
--- a/Library/Homebrew/dev-cmd/bump-formula-pr.rb
+++ b/Library/Homebrew/dev-cmd/bump-formula-pr.rb
@@ -145,7 +145,9 @@ module Homebrew
     check_closed_pull_requests(formula, tap_full_name, version: new_version, args: args) if new_version
 
     opoo "This formula has patches that may be resolved upstream." if formula.patchlist.present?
-    opoo "This formula has resources that may need to be updated." if formula.resources.present?
+    if formula.resources.present? && formula.resources.any? { |resource| resource.name != "homebrew-virtualenv" }
+      opoo "This formula has resources that may need to be updated."
+    end
 
     requested_spec = :stable
     formula_spec = formula.stable
-- 
GitLab