From 4dbb65de39335efe21c39af776fea75b530359f3 Mon Sep 17 00:00:00 2001 From: Dong-hee Na Date: Sat, 24 Sep 2022 22:23:41 +0900 Subject: [PATCH] gh-97032: Set tkinter path for macOS CI --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b2792efc0dae9e..274a1df4384ac5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -151,7 +151,7 @@ jobs: steps: - uses: actions/checkout@v3 - name: Configure CPython - run: ./configure --with-pydebug --with-openssl=/usr/local/opt/openssl --prefix=/opt/python-dev + run: ./configure --with-pydebug --with-openssl=/usr/local/opt/openssl --prefix=/opt/python-dev --with-tcltk-includes=-I$(brew --prefix tcl-tk)/include --with-tcltk-libs="-L$(brew --prefix tcl-tk)/lib -ltcl8.6 -ltk8.6" - name: Build CPython run: make -j4 - name: Display build info