-
Notifications
You must be signed in to change notification settings - Fork 84
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
Fails to install Qt on macos #230
Comments
Hi! Could you please provide your workflow YAML file? A snippet about this action would be enough. |
macos:
runs-on: macos-${{ matrix.macos_ver }}
name: macos
strategy:
fail-fast: false
matrix:
QT_VER: [5.15, 6.6.3]
macos_ver: [13, 14]
env:
HOMEBREW_NO_AUTO_UPDATE: 1
HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK: 1
steps:
- name: Install prerequisties
run: |
brew list -1 | grep python | while read formula; do brew unlink $formula; brew link --overwrite $formula; done
brew update
- name: Install Qt
uses: jurplel/install-qt-action@v3
with:
setup-python: false
version: ${{ matrix.QT_VER }}
dir: ${{ github.workspace }}/Qt
archives: qtbase
|
For anyone who hit the same issue. the only woraround I found is to install Qt from Homebrew. I am closing the issue, Please don't reopen. |
Hi, @MehdiChinoune . Would you mind if others discuss the same problem here without re-opening this issue? |
Please open a new issue. I don't want to get any notification about it. |
This started happening just recently
It looks like Homebrew has implemented PEP-0668 https://peps.python.org/pep-0668/
The text was updated successfully, but these errors were encountered: