Skip to content

Commit bdc322a

Browse files
committed
Stop using PyQt5 5.15.3, 5.15.4 that won't work with pyinstaller
1 parent 615d9df commit bdc322a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,8 @@ def get_install_requires():
7373
sys.exit(1)
7474
assert PY3
7575
# PyQt5 can be installed via pip for Python3
76-
install_requires.append("PyQt5")
76+
# 5.15.3, 5.15.4 won't work with PyInstaller
77+
install_requires.append("PyQt5!=5.15.3,!=5.15.4")
7778
QT_BINDING = "pyqt5"
7879
del QT_BINDING
7980

0 commit comments

Comments
 (0)