@@ -244,7 +244,7 @@ jobs:
244244
245245 # PyQt5 does not have any wheels for ARM on Linux.
246246 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 &&
248248 python -c 'import PyQt5.QtCore' &&
249249 echo 'PyQt5 is available' ||
250250 echo 'PyQt5 is not available'
@@ -254,16 +254,16 @@ jobs:
254254 # on M1 macOS, so don't bother there either.
255255 if [[ "${{ matrix.os }}" != 'macos-14'
256256 && "${{ 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 &&
258258 python -c 'import PySide2.QtCore' &&
259259 echo 'PySide2 is available' ||
260260 echo 'PySide2 is not available'
261261 fi
262- python -mpip install --upgrade --only-binary :all: pyqt6${{ matrix.pyqt6-ver }} &&
262+ python -mpip install --upgrade --only-binary :all: pyqt6 &&
263263 python -c 'import PyQt6.QtCore' &&
264264 echo 'PyQt6 is available' ||
265265 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 &&
267267 python -c 'import PySide6.QtCore' &&
268268 echo 'PySide6 is available' ||
269269 echo 'PySide6 is not available'
0 commit comments