Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Brewfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading