From: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Date: Thu, 28 Nov 2024 17:03:09 +0000 (+0200) Subject: gh-127359: Pin Tcl/Tk to 8 (8.6) for testing macOS (#127365) X-Git-Tag: v3.14.0a3~181 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b83be9c9718aac42d0d8fc689a829d6594192afa;p=thirdparty%2FPython%2Fcpython.git gh-127359: Pin Tcl/Tk to 8 (8.6) for testing macOS (#127365) --- diff --git a/.github/workflows/reusable-macos.yml b/.github/workflows/reusable-macos.yml index 915481d0737c..4c3dd10194f8 100644 --- a/.github/workflows/reusable-macos.yml +++ b/.github/workflows/reusable-macos.yml @@ -37,7 +37,10 @@ jobs: path: config.cache key: ${{ github.job }}-${{ inputs.os }}-${{ env.IMAGE_VERSION }}-${{ inputs.config_hash }} - name: Install Homebrew dependencies - run: brew install pkg-config openssl@3.0 xz gdbm tcl-tk make + run: | + brew install pkg-config openssl@3.0 xz gdbm tcl-tk@8 make + # Because alternate versions are not symlinked into place by default: + brew link tcl-tk@8 - name: Configure CPython run: | GDBM_CFLAGS="-I$(brew --prefix gdbm)/include" \