8000 [3.9] gh-97032: Set tkinter path for macOS CI by corona10 · Pull Request #97525 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

[3.9] gh-97032: Set tkinter path for macOS CI #97525

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 24, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
gh-97032: Set tkinter path for macOS CI
  • Loading branch information
corona10 committed Sep 24, 2022
commit 4dbb65de39335efe21c39af776fea75b530359f3
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
0