Skip to content

Commit

Permalink
Ensure installing python
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Oct 11, 2024
1 parent 68b424e commit deab35b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion dev/tasks/java-jars/github.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,10 @@ jobs:
# tries to replace /usr/local/bin/2to3 and so on and causes
# a conflict error.
brew update
brew install --overwrite python@3.13
for python_package in $(brew list | grep python@); do
brew install --overwrite ${python_package}
done
brew install --overwrite python
brew bundle --file=arrow/cpp/Brewfile
# We want to link aws-sdk-cpp statically but Homebrew's
Expand Down

0 comments on commit deab35b

Please sign in to comment.