From 9d31b8d86e89f083f0a1b44b994f76e0d59146d2 Mon Sep 17 00:00:00 2001 From: Colin Dean Date: Mon, 13 Oct 2025 16:43:41 -0400 Subject: [PATCH] Set link:false for Python build dependency This was an unfortunate side effect change documented in the linked forum thread. --- Brewfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Brewfile b/Brewfile index 9056e25..b58d97e 100644 --- a/Brewfile +++ b/Brewfile @@ -32,7 +32,8 @@ end ## PYTHON BUILD DEPENDENCIES py_version = open(".python-version").read.strip.split(".").take(2).join(".") -brew "python@#{py_version}", args: ["only-dependencies"] +# Drop link:false when https://github.com/orgs/Homebrew/discussions/6133 is fixed +brew "python@#{py_version}", link: false, args: ["only-dependencies"] # PyEnv suggests installing these for building Python using # Homebrew-provided dependencies on Linux. # This exists here primarily for running in containers, such as