From 61d23fef530c3f136ede5ab4460f9d839dedf995 Mon Sep 17 00:00:00 2001 From: Branch Vincent Date: Sat, 5 Aug 2023 16:39:29 -0700 Subject: [PATCH] formula: use pip's `--no-compile` --- Library/Homebrew/formula.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb index 738000ff6f..89ccd99d6a 100644 --- a/Library/Homebrew/formula.rb +++ b/Library/Homebrew/formula.rb @@ -1707,7 +1707,7 @@ class Formula } def std_pip_args(prefix: self.prefix, build_isolation: false) args = ["--verbose", "--no-deps", "--no-binary=:all:", "--ignore-installed", - "--use-feature=no-binary-enable-wheel-cache"] + "--use-feature=no-binary-enable-wheel-cache", "--no-compile"] args << "--prefix=#{prefix}" if prefix args << "--no-build-isolation" unless build_isolation args