Files
gentoo/dev-python/pyqtgraph/files/pyqtgraph-0.10.0-qt5.patch
Andrey Grozin 63a5ea9bcb drop optional Qt4 dependence
Package-Manager: Portage-2.3.19, Repoman-2.3.6
2018-01-24 13:34:10 +07:00

11 lines
439 B
Diff

diff -r -U2 pyqtgraph-0.10.0.orig/pyqtgraph/Qt.py pyqtgraph-0.10.0/pyqtgraph/Qt.py
--- pyqtgraph-0.10.0.orig/pyqtgraph/Qt.py 2016-10-17 23:22:41.000000000 +0700
+++ pyqtgraph-0.10.0/pyqtgraph/Qt.py 2018-01-23 22:52:19.503525554 +0700
@@ -25,5 +25,5 @@
## is already imported. If not, then attempt to import PyQt4, then PySide.
if QT_LIB is None:
- libOrder = [PYQT4, PYSIDE, PYQT5]
+ libOrder = [PYQT5]
for lib in libOrder: