77
77
pyside6-ver : ' !=6.5.1'
78
78
extra-requirements : ' -r requirements/testing/extra.txt'
79
79
- os : ubuntu-22.04
80
- python-version : ' 3.12-dev '
80
+ python-version : ' 3.12'
81
81
pyside6-ver : ' !=6.5.1'
82
- pre : true
83
82
- os : macos-latest
84
83
python-version : 3.9
85
84
# https://bugreports.qt.io/projects/PYSIDE/issues/PYSIDE-2346
@@ -196,10 +195,8 @@ jobs:
196
195
python -m pip install --upgrade pip setuptools wheel
197
196
198
197
# 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
203
200
PRE="--pre"
204
201
fi
205
202
@@ -241,7 +238,7 @@ jobs:
241
238
echo 'PyQt5 is available' ||
242
239
echo 'PyQt5 is not available'
243
240
if [[ "${{ runner.os }}" != 'macOS'
244
- && "${{ matrix.python-version != '3.12-dev'}}" = "true" ]]; then
241
+ && "${{ matrix.python-version }}" != '3.12' ]]; then
245
242
python -mpip install --upgrade pyside2${{ matrix.pyside2-ver }} &&
246
243
python -c 'import PySide2.QtCore' &&
247
244
echo 'PySide2 is available' ||
@@ -254,14 +251,14 @@ jobs:
254
251
echo 'PyQt6 is not available'
255
252
fi
256
253
if [[ "${{ runner.os }}" != 'macOS'
257
- && "${{ matrix.python-version != '3.12-dev'}}" = "true" ]]; then
254
+ && "${{ matrix.python-version }}" != '3.12' ]]; then
258
255
python -mpip install --upgrade pyside6${{ matrix.pyside6-ver }} &&
259
256
python -c 'import PySide6.QtCore' &&
260
257
echo 'PySide6 is available' ||
261
258
echo 'PySide6 is not available'
262
259
fi
263
260
264
- if [[ "${{ matrix.python-version != '3.12-dev'}}" = "true" ]]; then
261
+ if [[ "${{ matrix.python-version }}" != '3.12' ]]; then
265
262
python -mpip install --upgrade \
266
263
-f "https://extras.wxpython.org/wxPython4/extras/linux/gtk3/${{ matrix.os }}" \
267
264
wxPython &&
0 commit comments