Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 6463594

Browse files
committed
CI: only try to install pyside2 on py311
1 parent c5ba854 commit 6463594

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -270,8 +270,8 @@ jobs:
270270
# Even though PySide2 wheels can be installed on Python 3.12+, they are broken and since PySide2 is
271271
# deprecated, they are unlikely to be fixed. For the same deprecation reason, there are no wheels
272272
# on M1 macOS, so don't bother there either.
273-
if [[ "${{ matrix.os }}" != 'macos-14'
274-
&& "${{ matrix.python-version }}" != '3.12' && "${{ matrix.python-version }}" != '3.13' ]]; then
273+
if [[ "${{ matrix.os }}" != 'macos-14' && "${{ matrix.python-version }}" == '3.11'
274+
]]; then
275275
python -mpip install --upgrade pyside2 &&
276276
python -c 'import PySide2.QtCore' &&
277277
echo 'PySide2 is available' ||

0 commit comments

Comments
 (0)