Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit ddbff45

Browse files
committed
Set default value to check PyQt extra packages to 'No'. Change QScintilla testing for PyQt6
1 parent f6b4eed commit ddbff45

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,14 +49,15 @@ jobs:
4949
qt5-version-default: ['5.12']
5050
qt6-version-default: ['6.3']
5151
qscintilla-version-default: ['2.13']
52-
pyqt-extras-default: ['Yes']
52+
pyqt-extras-default: ['No']
5353
include:
5454
- os: ubuntu-latest
5555
special-invocation: 'xvfb-run --auto-servernum ' # Needed for GUI tests to work
5656
- python-version: '3.11'
5757
pyqt5-version: '5.15' # Python 3.11 needs 5.15+
5858
pyside2-version: '5.15' # Python 3.11 needs 5.15+
59-
pyside6-version: '6.4' # Python 3.11 needs 6.4+
59+
pyside6-version: '6.5' # Python 3.11 needs 6.4+. Test upper bound
60+
pyqt-extras: 'Yes' # Check PyQt extras
6061
- use-conda: 'Yes'
6162
skip-pyqt6: true # No PyQt6 conda packages yet
6263
pyside6-version: '6.4' # Conda only has 6.4+ for Python <3.8
@@ -87,6 +88,7 @@ jobs:
8788
- os: macos-latest
8889
python-version: '3.7'
8990
use-conda: 'No'
91+
pyqt-extras: 'Yes' # Check PyQt extras
9092
pyqt6-version: 6.5 # Test upper bound
9193
pyside2-version: 5.15 # Test upper bound
9294
steps:

.github/workflows/test.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@ if [ "$USE_CONDA" = "No" ]; then
4444
elif [ "${1}" = "pyqt6" ]; then
4545

4646
if [ "$PYQT_EXTRAS" = "Yes" ]; then
47-
pip install pyqt6==${PYQT6_VERSION}.* PyQt6-WebEngine==${PYQT6_VERSION}.* PyQt6-Qt6==${PYQT6_QT_VERSION}.* PyQt6-QScintilla==${QSCINTILLA_VERSION}.* PyQt6-3D==${PYQT6_VERSION}.* PyQt6-Charts==${PYQT6_VERSION}.* PyQt6-DataVisualization==${PYQT6_VERSION}.* PyQt6-NetworkAuth==${PYQT6_VERSION}.*
47+
pip install pyqt6==${PYQT6_VERSION}.* PyQt6-WebEngine==${PYQT6_VERSION}.* PyQt6-Qt6==${PYQT6_QT_VERSION}.* PyQt6-QScintilla PyQt6-3D==${PYQT6_VERSION}.* PyQt6-Charts==${PYQT6_VERSION}.* PyQt6-DataVisualization==${PYQT6_VERSION}.* PyQt6-NetworkAuth==${PYQT6_VERSION}.*
4848
else
49-
pip install pyqt6==${PYQT6_VERSION}.* PyQt6-WebEngine==${PYQT6_VERSION}.* PyQt6-Qt6==${PYQT6_QT_VERSION}.* PyQt6-QScintilla==${QSCINTILLA_VERSION}.*
49+
pip install pyqt6==${PYQT6_VERSION}.* PyQt6-WebEngine==${PYQT6_VERSION}.* PyQt6-Qt6==${PYQT6_QT_VERSION}.*
5050
fi
5151

5252
elif [ "${1}" = "pyside2" ]; then

0 commit comments

Comments
 (0)