@@ -244,7 +244,7 @@ jobs:
244
244
245
245
# PyQt5 does not have any wheels for ARM on Linux.
246
246
if [[ "${{ matrix.os }}" != 'ubuntu-22.04-arm' ]]; then
247
- python -mpip install --upgrade --only-binary :all: pyqt5${{ matrix.pyqt5-ver }} &&
247
+ python -mpip install --upgrade --only-binary :all: pyqt5 &&
248
248
python -c 'import PyQt5.QtCore' &&
249
249
echo 'PyQt5 is available' ||
250
250
echo 'PyQt5 is not available'
@@ -254,16 +254,16 @@ jobs:
254
254
# on M1 macOS, so don't bother there either.
255
255
if [[ "${{ matrix.os }}" != 'macos-14'
256
256
&& "${{ matrix.python-version }}" != '3.12' && "${{ matrix.python-version }}" != '3.13' ]]; then
257
- python -mpip install --upgrade pyside2${{ matrix.pyside2-ver }} &&
257
+ python -mpip install --upgrade pyside2 &&
258
258
python -c 'import PySide2.QtCore' &&
259
259
echo 'PySide2 is available' ||
260
260
echo 'PySide2 is not available'
261
261
fi
262
- python -mpip install --upgrade --only-binary :all: pyqt6${{ matrix.pyqt6-ver }} &&
262
+ python -mpip install --upgrade --only-binary :all: pyqt6 &&
263
263
python -c 'import PyQt6.QtCore' &&
264
264
echo 'PyQt6 is available' ||
265
265
echo 'PyQt6 is not available'
266
- python -mpip install --upgrade --only-binary :all: pyside6${{ matrix.pyside6-ver }} &&
266
+ python -mpip install --upgrade --only-binary :all: pyside6 &&
267
267
python -c 'import PySide6.QtCore' &&
268
268
echo 'PySide6 is available' ||
269
269
echo 'PySide6 is not available'
0 commit comments