-
Notifications
You must be signed in to change notification settings - Fork 3.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GH-44373: [Packaging][Java] Fix brew link to Python 3.13 on macOS #44374
Conversation
@github-actions crossbow submit java-jars |
|
Revision: 42b2409 Submitted crossbow builds: ursacomputing/crossbow @ actions-4b95b7ffd9
|
@github-actions crossbow submit java-jars |
Revision: be014ee Submitted crossbow builds: ursacomputing/crossbow @ actions-70a9323a1e
|
@github-actions crossbow submit java-jars |
Revision: 68b424e Submitted crossbow builds: ursacomputing/crossbow @ actions-55470c4dd9
|
The only way I've found to fix the issue temporary is to pin |
@github-actions crossbow submit java-jars |
Revision: deab35b Submitted crossbow builds: ursacomputing/crossbow @ actions-6ff8a791a6
|
We can fix this by running |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
+1
…4374) ### Rationale for this change Java-jars are currently failing on macOS to install Python 3.13 because `python@ 3.13` (`python` is an alias of `python@ 3.13` now) isn't installed yet. Our link failure workaround is updating already installed `python@*` with `--overwrite` explicitly. `python@ 3.13` (`python`) isn't installed on GitHub Actions runner yet. So `brew bundle` installs `python` without `--overwrite`. ### What changes are included in this PR? Install `python` with `--overwrite` explicitly before `brew bundle`. ### Are these changes tested? Via CI ### Are there any user-facing changes? No * GitHub Issue: #44373 Lead-authored-by: Sutou Kouhei <kou@clear-code.com> Co-authored-by: Raúl Cumplido <raulcumplido@gmail.com> Signed-off-by: Sutou Kouhei <kou@clear-code.com>
After merging your PR, Conbench analyzed the 4 benchmarking runs that have been run so far on merge-commit dcc1ee5. There were no benchmark performance regressions. 🎉 The full Conbench report has more details. It also includes information about 4 possible false positives for unstable benchmarks that are known to sometimes produce them. |
…OS (apache#44374) ### Rationale for this change Java-jars are currently failing on macOS to install Python 3.13 because `python@ 3.13` (`python` is an alias of `python@ 3.13` now) isn't installed yet. Our link failure workaround is updating already installed `python@*` with `--overwrite` explicitly. `python@ 3.13` (`python`) isn't installed on GitHub Actions runner yet. So `brew bundle` installs `python` without `--overwrite`. ### What changes are included in this PR? Install `python` with `--overwrite` explicitly before `brew bundle`. ### Are these changes tested? Via CI ### Are there any user-facing changes? No * GitHub Issue: apache#44373 Lead-authored-by: Sutou Kouhei <kou@clear-code.com> Co-authored-by: Raúl Cumplido <raulcumplido@gmail.com> Signed-off-by: Sutou Kouhei <kou@clear-code.com>
Rationale for this change
Java-jars are currently failing on macOS to install Python 3.13 because
python@3.13
(python
is an alias ofpython@3.13
now) isn't installed yet. Our link failure workaround is updating already installedpython@*
with--overwrite
explicitly.python@3.13
(python
) isn't installed on GitHub Actions runner yet. Sobrew bundle
installspython
without--overwrite
.What changes are included in this PR?
Install
python
with--overwrite
explicitly beforebrew bundle
.Are these changes tested?
Via CI
Are there any user-facing changes?
No