Set PySimpleGUI version

As PySimpleGUI will be licensed starting at version 5.0.0, I am capping the version to prevent this. Alternate UI libraries will need to be implemented.
This commit is contained in:
jpattWPC 2024-02-12 18:22:24 -06:00
parent e9a653ae98
commit f714f794b9
3 changed files with 2 additions and 19 deletions

View file

@ -2,23 +2,6 @@
pyinstaller --noconsole --noconfirm --hidden-import proxmoxer.backends --hidden-import proxmoxer.backends.https --hidden-import proxmoxer.backends.https.AuthenticationError --hidden-import proxmoxer.core --hidden-import proxmoxer.core.ResourceException --hidden-import subprocess.TimeoutExpired --hidden-import subprocess.CalledProcessError --hidden-import requests.exceptions --hidden-import requests.exceptions.ReadTimeout --hidden-import requests.exceptions.ConnectTimeout --hidden-import requests.exceptions.ConnectionError --noupx -i vdiicon.ico vdiclient.py
copy vdiclient.png dist\vdiclient
copy vdiicon.ico dist\vdiclient
REM del dist\vdiclient\opengl32sw.dll
REM del dist\vdiclient\libGLESv2.dll
REM del dist\vdiclient\d3dcompiler_47.dll
REM del dist\vdiclient\Qt5Pdf.dll
REM del dist\vdiclient\Qt5VirtualKeyboard.dll
REM del dist\vdiclient\Qt5WebSockets.dll
REM del dist\vdiclient\Qt5Quick.dll
REM del dist\vdiclient\PySide2\plugins\imageformats\qgif.dll
REM del dist\vdiclient\PySide2\plugins\imageformats\qjpeg.dll
REM del dist\vdiclient\PySide2\plugins\imageformats\qpdf.dll
REM del dist\vdiclient\PySide2\plugins\imageformats\qsvg.dll
REM del dist\vdiclient\PySide2\plugins\imageformats\qtga.dll
REM del dist\vdiclient\PySide2\plugins\imageformats\qtiff.dll
REM del dist\vdiclient\PySide2\plugins\imageformats\qwbmp.dll
REM del dist\vdiclient\PySide2\plugins\imageformats\qwebp.dll
REM del dist\vdiclient\PySide2\plugins\platforminputcontexts\qtvirtualkeyboardplugin.dll
REM del /Q dist\vdiclient\PySide2\translations\*
cd dist
python createmsi.py vdiclient.json
cd ..

View file

@ -1,6 +1,6 @@
@echo off
pip install pyinstaller
pip install proxmoxer
pip install PySimpleGUI
pip install "PySimpleGUI<5.0.0"
pip install requests
pip install pywin32

View file

@ -1,4 +1,4 @@
#!/bin/bash
pip3 install proxmoxer
pip3 install PySimpleGUI
pip3 install "PySimpleGUI<5.0.0"
pip3 install requests