Skip to content
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

GitHub Actions: use python 3.10 instead of 3.11 on MacOS #3606

Merged
merged 1 commit into from
Dec 23, 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
4 changes: 2 additions & 2 deletions .github/workflows/testing-mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ jobs:
run: brew update
- name: install tools and libraries
run: |
# python@3.11 symlink 2to3-3.11 to /usr/local/bin/2to3-3.11, but it already exists. so we need use --overwrite option when installing python@3.11, python@3.11 is depended by gdb.
brew install --overwrite python@3.11
# See https://github.com/actions/runner-images/issues/6817.
brew install --overwrite python@3.10
brew install automake pkg-config bash libxml2 jansson libyaml gdb docutils pcre2
- name: autogen.sh
run: ./autogen.sh
Expand Down