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:
committed by
GitHub
parent
115b35739b
commit
a9cb440011
@@ -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)
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user