From e8ce1841d5db2d7bb491534ffc28797a76a673ad Mon Sep 17 00:00:00 2001 From: William Woodruff Date: Sun, 14 Jul 2024 12:51:41 -0400 Subject: [PATCH] pypi: source wheel -> universal wheel Signed-off-by: William Woodruff --- Library/Homebrew/utils/pypi.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/utils/pypi.rb b/Library/Homebrew/utils/pypi.rb index 54b41fbdf6..59fb275b5f 100644 --- a/Library/Homebrew/utils/pypi.rb +++ b/Library/Homebrew/utils/pypi.rb @@ -77,7 +77,7 @@ module PyPI url["packagetype"] == "sdist" end - # If there isn't an sdist, we use the first source wheel. + # If there isn't an sdist, we use the first universal wheel. if dist.nil? dist = json["urls"].find do |url| url["filename"].end_with?("-none-any.whl")