Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Simplify CI script following Qt 5.15.6 feedstock update #397

Merged
merged 1 commit into from
Jan 13, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 1 addition & 6 deletions .github/workflows/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,7 @@ conda activate test-env
if [ "$USE_CONDA" = "Yes" ]; then

if [ "${1}" = "pyqt5" ]; then
if [ "${PYQT5_VERSION:0:4}" = "5.15" ]; then
# Must specify versions individually with PyQt 5.15 to avoid compat issues with Python 3.11
conda install -q qt-main=${PYQT5_QT_VERSION} qt-webengine=${PYQT5_QT_VERSION} pyqt=${PYQT5_VERSION}
else
conda install -q qt=${PYQT5_QT_VERSION} pyqt=${PYQT5_VERSION}
fi
conda install -q qt=${PYQT5_QT_VERSION} pyqt=${PYQT5_VERSION}
dalthviz marked this conversation as resolved.
Show resolved Hide resolved
elif [ "${1}" = "pyside2" ]; then
conda install -q qt=${PYSIDE2_QT_VERSION} pyside2=${PYSIDE2_VERSION}
dalthviz marked this conversation as resolved.
Show resolved Hide resolved
elif [ "${1}" = "pyside6" ]; then
Expand Down