7777 pyside6-ver : ' !=6.5.1'
7878 extra-requirements : ' -r requirements/testing/extra.txt'
7979 - os : ubuntu-22.04
80- python-version : ' 3.12-dev '
80+ python-version : ' 3.12'
8181 pyside6-ver : ' !=6.5.1'
82- pre : true
8382 - os : macos-latest
8483 python-version : 3.9
8584 # https://bugreports.qt.io/projects/PYSIDE/issues/PYSIDE-2346
@@ -196,10 +195,8 @@ jobs:
196195 python -m pip install --upgrade pip setuptools wheel
197196
198197 # Install pre-release versions during our weekly upcoming dependency tests.
199- # Also install for 3.12 to get working NumPy (remove when 1.26 is released)
200- if [[ "${{ github.event_name == 'schedule' &&
201- matrix.name-suffix != '(Minimum Versions)' }}" = "true"
202- || "${{ matrix.pre }}" = "true" ]]; then
198+ if [[ "${{ github.event_name }}" == 'schedule'
199+ && "${{ matrix.name-suffix }}" != '(Minimum Versions)' ]]; then
203200 PRE="--pre"
204201 fi
205202
@@ -241,7 +238,7 @@ jobs:
241238 echo 'PyQt5 is available' ||
242239 echo 'PyQt5 is not available'
243240 if [[ "${{ runner.os }}" != 'macOS'
244- && "${{ matrix.python-version != '3.12-dev'}}" = "true" ]]; then
241+ && "${{ matrix.python-version }}" != '3.12' ]]; then
245242 python -mpip install --upgrade pyside2${{ matrix.pyside2-ver }} &&
246243 python -c 'import PySide2.QtCore' &&
247244 echo 'PySide2 is available' ||
@@ -254,14 +251,14 @@ jobs:
254251 echo 'PyQt6 is not available'
255252 fi
256253 if [[ "${{ runner.os }}" != 'macOS'
257- && "${{ matrix.python-version != '3.12-dev'}}" = "true" ]]; then
254+ && "${{ matrix.python-version }}" != '3.12' ]]; then
258255 python -mpip install --upgrade pyside6${{ matrix.pyside6-ver }} &&
259256 python -c 'import PySide6.QtCore' &&
260257 echo 'PySide6 is available' ||
261258 echo 'PySide6 is not available'
262259 fi
263260
264- if [[ "${{ matrix.python-version != '3.12-dev'}}" = "true" ]]; then
261+ if [[ "${{ matrix.python-version }}" != '3.12' ]]; then
265262 python -mpip install --upgrade \
266263 -f "https://extras.wxpython.org/wxPython4/extras/linux/gtk3/${{ matrix.os }}" \
267264 wxPython &&
0 commit comments