-
Notifications
You must be signed in to change notification settings - Fork 20
[Backport main] Pin PySide<6.11 in CI #371
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -6,9 +6,9 @@ name: Run Qt6 tests | |||||
|
|
||||||
| on: | ||||||
| push: | ||||||
| branches: [main] | ||||||
| branches: [dev, main] | ||||||
| pull_request: | ||||||
| branches: [main] | ||||||
| branches: [dev, main] | ||||||
|
|
||||||
| permissions: | ||||||
| contents: read | ||||||
|
|
@@ -20,7 +20,7 @@ jobs: | |||||
|
|
||||||
| strategy: | ||||||
| matrix: | ||||||
| python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] | ||||||
| python-version: ["3.11", "3.12", "3.13", "3.14"] | ||||||
|
|
||||||
| steps: | ||||||
| - name: Checkout repo | ||||||
|
|
@@ -66,14 +66,14 @@ jobs: | |||||
| - name: Install Python dependencies | ||||||
| run: | | ||||||
| python -m pip install --upgrade pip | ||||||
| pip install pyfakefs PySide6 vermin requests || true | ||||||
| pip install pyfakefs "PySide6<6.11" vermin requests || true | ||||||
|
||||||
| pip install pyfakefs "PySide6<6.11" vermin requests || true | |
| pip install pyfakefs "PySide6<6.11" vermin requests |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The PR title/description indicates this change is only about pinning PySide6, but this matrix change also drops Python 3.8–3.10 and adds 3.14. If that version/coverage change is intentional, it should be called out in the PR description; otherwise consider reverting the matrix to the prior set of Python versions.