Skip to content

Commit 9d31b8d

Browse files
authored
Set link:false for Python build dependency
This was an unfortunate side effect change documented in the linked forum thread.
1 parent a530473 commit 9d31b8d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Brewfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ end
3232

3333
## PYTHON BUILD DEPENDENCIES
3434
py_version = open(".python-version").read.strip.split(".").take(2).join(".")
35-
brew "python@#{py_version}", args: ["only-dependencies"]
35+
# Drop link:false when https://github.com/orgs/Homebrew/discussions/6133 is fixed
36+
brew "python@#{py_version}", link: false, args: ["only-dependencies"]
3637
# PyEnv suggests installing these for building Python using
3738
# Homebrew-provided dependencies on Linux.
3839
# This exists here primarily for running in containers, such as

0 commit comments

Comments
 (0)