We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4924232 commit aa5e757Copy full SHA for aa5e757
1 file changed
.github/workflows/main.yml
@@ -32,11 +32,13 @@ jobs:
32
- os: macos-arm64
33
image: macos-14
34
exclude:
35
+ # pyside2 does not publish arm64 packages
36
37
qt-version: pyside2
38
+ # pyside2 requires python <3.11
39
- python-version: "3.11"
40
- # both pyside6 and pyqt6 require python>=3.9
41
+ # pyside6 and pyqt6 require python >=3.9
42
- python-version: "3.8"
43
qt-version: pyside6
44
@@ -104,7 +106,7 @@ jobs:
104
106
# run: poetry run mypy
105
107
108
- name: Install Qt
- run: poetry run pip install ${{ matrix.qt-version }}
109
+ run: poetry run pip install --ignore-installed ${{ matrix.qt-version }}
110
111
- name: Install libxcb dependencies
112
if: ${{ matrix.os == 'ubuntu' }}
0 commit comments