1
0
mirror of https://github.com/jopohl/urh.git synced 2021-05-12 19:42:18 +03:00

requirements: restrict pyqt5 version due to PyInstaller issue (#862)

This commit is contained in:
Dr. Johannes Pohl
2021-04-22 00:42:23 +02:00
committed by GitHub
parent 115b35739b
commit a9cb440011
2 changed files with 2 additions and 2 deletions

View File

@@ -61,6 +61,7 @@ if __name__ == '__main__':
with open("pyinstaller/urh.app/Contents/Info.plist", "rb") as f:
p = plistlib.load(f)
p["NSHighResolutionCapable"] = True
p["NSRequiresAquaSystemAppearance"] = True
with open("pyinstaller/urh.app/Contents/Info.plist", "wb") as f:
plistlib.dump(p, f)

View File

@@ -1,6 +1,5 @@
numpy>=1.9; sys_platform != 'win32'
numpy>=1.9,!=1.16.0,!=1.19.4; sys_platform == 'win32'
pyqt5; sys_platform != 'win32'
pyqt5!=5.14.2; sys_platform == 'win32'
pyqt5<5.15.4 # https://github.com/pyinstaller/pyinstaller/issues/5631
psutil
cython!=0.29.18