Skip to content

Commit f1cbd6e

Browse files
committed
Fix CI
1 parent ed6e731 commit f1cbd6e

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

Diff for: .github/workflows/ci.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
name: Continuous Integration
33

44
env:
5-
PYSIDE6_VERSION: 6.6.2
65

76
on:
87
push:
@@ -21,10 +20,12 @@ jobs:
2120
# oldest version of pyhon / mypy which works
2221
- python-version: "3.9"
2322
mypy-version: "1.1.1"
23+
pyside6-version: "6.6.2"
2424

2525
# latest version of everything
2626
- python-version: "3.13"
27-
mypy-version: "1.4.1"
27+
mypy-version: "1.15"
28+
pyside6-version: "6.8.2.1"
2829

2930
steps:
3031
- uses: actions/checkout@v3
@@ -38,7 +39,7 @@ jobs:
3839
run: |
3940
python -m pip install --upgrade pip
4041
python -m pip install setuptools==75.8.0
41-
python -m pip install pyside6==${{ env.PYSIDE6_VERSION }} pytest mypy==${{ matrix.mypy-version }}
42+
python -m pip install pyside6==${{ matrix.pyside6-version }} pytest mypy==${{ matrix.mypy-version }}
4243
pip install -e . --config-settings editable_mode=compat
4344
pip list
4445

0 commit comments

Comments
 (0)