We are using pyinstaller to build a Qt5 application for both Linux and Windows. The installer for Windows uses WineHQ to run the Windows version of Python inside a Linux docker container.
Our current build process requires calls lrelease. This worked up to version 5.15.1.1.7.5 but no longer afterwards.
We are using pyinstaller to build a Qt5 application for both Linux and Windows. The installer for Windows uses WineHQ to run the Windows version of Python inside a Linux docker container. Our current build process requires calls
lrelease
. This worked up to version5.15.1.1.7.5
but no longer afterwards.Any later version no longer contains the files in
/wine/drive_c/Python37/Scripts/
andlrelease
is no longer found by default.I tried to understand the difference between
but their exact purposes is still unclear to me, so I might have missed the right package to add which would give me back
lrelease
.I also found https://github.com/altendky/qt-applications/pull/22 , but the latest version of qt-applications still did no solve my issue.
Can you help?