Skip to content

Commit e6b013b

Browse files
committed
Exclude python versions incompatible with qt backend libs
1 parent f67cbd6 commit e6b013b

1 file changed

Lines changed: 10 additions & 3 deletions

File tree

.github/workflows/main.yml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,21 +19,28 @@ jobs:
1919
runs-on: ${{ matrix.image }}
2020
strategy:
2121
matrix:
22-
os: [ubuntu, windows, macos-arm64]
22+
os: [ubuntu, windows, macos-x86_64, macos-arm64]
2323
python-version: ["3.8", "3.9", "3.10", "3.11"]
2424
qt-version: ["pyside2", "pyside6", "pyqt5", "pyqt6"]
2525
include:
2626
- os: ubuntu
2727
image: ubuntu-24.04
2828
- os: windows
2929
image: windows-2022
30-
# - os: macos
31-
# image: macos-14-large
30+
- os: macos-x86_64
31+
image: macos-13
3232
- os: macos-arm64
3333
image: macos-14
3434
exclude:
3535
- os: macos-arm64
3636
qt-version: pyside2
37+
- python-version: "3.11"
38+
qt-version: pyside2
39+
# both pyside6 and pyqt6 require python>=3.9
40+
- python-version: "3.8"
41+
qt-version: pyside6
42+
- python-version: "3.8"
43+
qt-version: pyqt6
3744
fail-fast: false
3845
defaults:
3946
run:

0 commit comments

Comments
 (0)