Skip to content

Commit 7906921

Browse files
committed
Only build for Python 3.13 on Windows
1 parent 574d459 commit 7906921

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/lint-and-build.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,10 +90,13 @@ jobs:
9090
# Only the Python version we plan on shipping matters.
9191
matrix:
9292
os: [windows-latest, ubuntu-22.04]
93-
python-version: ["3.12", "3.13"]
93+
python-version: ["3.13"]
9494
include:
95+
# I had some Qt Wayland issues on 3.12 for ubuntu-22.04 iirc. TODO: test it
9596
- os: ubuntu-22.04
96-
python-version: "3.11" # I had some Qt Wayland issues on 3.12 for ubuntu-22.04 iirc. TODO: test it
97+
python-version: "3.11"
98+
- os: ubuntu-22.04
99+
python-version: "3.12"
97100
steps:
98101
- name: Checkout ${{ github.repository }}/${{ github.ref }}
99102
uses: actions/checkout@v4

0 commit comments

Comments
 (0)