PICARD-1703: Upgrade to PyInstaller 3.6

Allows us to remove some Windows specific workarounds, fixes a CVE related to the portable onefile install.
This commit is contained in:
Philipp Wolfer
2020-01-10 08:24:29 +01:00
parent 18e1932294
commit 1636fcb310
3 changed files with 2 additions and 18 deletions

View File

@@ -37,12 +37,6 @@ Function FinalizePackage {
CodeSignBinary (Join-Path $Path fpcalc.exe)
CodeSignBinary (Join-Path $Path discid.dll)
# Workaround for https://github.com/pyinstaller/pyinstaller/issues/4429
$OldTRanslationsPath = (Join-Path $Path PyQt5\translations)
If (Test-Path $OldTRanslationsPath -PathType Container) {
Move-Item -Path $OldTRanslationsPath -Destination (Join-Path $Path PyQt5\Qt)
}
# Delete unused files
Remove-Item -Path (Join-Path $Path libcrypto-1_1.dll)
Remove-Item -Path (Join-Path $Path libssl-1_1.dll)