https://github.com/python/cpython/commit/825b83da96b650069fd7fe42d48a94954ca40dbf commit: 825b83da96b650069fd7fe42d48a94954ca40dbf branch: 3.12 author: Miss Islington (bot) <[email protected]> committer: vstinner <[email protected]> date: 2024-12-20T13:07:04Z summary:
[3.12] gh-128069: brew link --overwrite tcl-tk@8 to prevent conflict with GitHub image's version (GH-128090) (#128125) gh-128069: brew link --overwrite tcl-tk@8 to prevent conflict with GitHub image's version (GH-128090) brew link --overwrite tcl-tk@8 to prevent conflict with GitHub image's version (cherry picked from commit 46dc1ba9c6e8b95635fa27607d01d6108d8f677e) Co-authored-by: Victor Stinner <[email protected]> Co-authored-by: Hugo van Kemenade <[email protected]> files: M .github/workflows/reusable-macos.yml diff --git a/.github/workflows/reusable-macos.yml b/.github/workflows/reusable-macos.yml index d626cebcc493f2..981a866156160e 100644 --- a/.github/workflows/reusable-macos.yml +++ b/.github/workflows/reusable-macos.yml @@ -41,7 +41,7 @@ jobs: run: | brew install pkg-config [email protected] xz gdbm tcl-tk@8 # Because alternate versions are not symlinked into place by default: - brew link tcl-tk@8 + brew link --overwrite tcl-tk@8 - name: Configure CPython run: | GDBM_CFLAGS="-I$(brew --prefix gdbm)/include" \ _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-checkins.python.org/ Member address: [email protected]
