Skip to content

Commit 70b1013

Browse files
authored
Merge pull request #188 from target/link-false-for-python
Set link:false for Python build dependency
2 parents a530473 + 9d31b8d commit 70b1013

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)