From: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Date: Sat, 30 Nov 2024 16:38:35 +0000 (+0200) Subject: [3.9] gh-127359: Pin Tcl/Tk to 8 (8.6) for testing macOS (GH-127365) (#127409) X-Git-Tag: v3.9.21~5 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=307a762b022515e00951c07e2fc5971fcbbe2b46;p=thirdparty%2FPython%2Fcpython.git [3.9] gh-127359: Pin Tcl/Tk to 8 (8.6) for testing macOS (GH-127365) (#127409) --- diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index eb0c11946643..ae099ee1dced 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -158,7 +158,10 @@ jobs: steps: - uses: actions/checkout@v4 - name: Install Homebrew dependencies - run: brew install pkg-config openssl@3.0 xz gdbm tcl-tk + run: | + brew install pkg-config openssl@3.0 xz gdbm tcl-tk@8 + # Because alternate versions are not symlinked into place by default: + brew link tcl-tk@8 - name: Configure CPython run: | CC=clang \