[3.10] gh-127359: Pin Tcl/Tk to 8 (8.6) for testing macOS (GH-127365) (#127408)

https://github.com/python/cpython/commit/e43897c3403dbdb545a8914523f7b363c77... commit: e43897c3403dbdb545a8914523f7b363c7742f65 branch: 3.10 author: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> committer: hugovk <1324225+hugovk@users.noreply.github.com> date: 2024-11-30T18:38:29+02:00 summary: [3.10] gh-127359: Pin Tcl/Tk to 8 (8.6) for testing macOS (GH-127365) (#127408) files: M .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index eecca69316f6f3..8edf2d0f6cfb37 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -185,7 +185,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: | CPPFLAGS="-I$(brew --prefix gdbm)/include -I$(brew --prefix xz)/include" \
participants (1)
-
hugovk