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