Skip to content

Commit

Permalink
Merge pull request #4284 from janezd/pin-qt-below-5.14
Browse files Browse the repository at this point in the history
Pin Qt version below 5.14
  • Loading branch information
janezd authored Dec 20, 2019
2 parents b648573 + 4794e96 commit ccee167
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
3 changes: 0 additions & 3 deletions .travis/install_orange.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@ if [[ $TRAVIS_PYTHON_VERSION == 3.4 ]]; then pip install pandas==0.20.3; fi

pip install numba==0.41.0 llvmlite==0.26.0

# PyQt >= 5.12 distributes WebEngine separately
pip install pyqtwebengine

# Install dependencies sequentially
cat requirements-core.txt \
requirements-gui.txt \
Expand Down
5 changes: 4 additions & 1 deletion .travis/install_pyqt.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
if [ ! "$PYQT4" ]; then
foldable pip install sip 'pyqt5!=5.10' # 5.10 exhibits QTBUG-65235
foldable pip install sip 'pyqt5!=5.10,<5.14' # 5.10 exhibits QTBUG-65235
# PyQt >= 5.12 distributes WebEngine separately
foldable pip install 'pyqtwebengine<5.14'
return $?;
fi


PYQT=$TRAVIS_BUILD_DIR/pyqt

SIP_VERSION=4.16.9
Expand Down

0 comments on commit ccee167

Please sign in to comment.