Drop Python 3.8 support

This commit is contained in:
Veronica Berglyd Olsen
2024-04-25 23:30:26 +02:00
parent 4179d2e515
commit 383640cb7e
7 changed files with 10 additions and 12 deletions
+2 -2
View File
@@ -162,9 +162,9 @@ def main(sysArgs: list | None = None) -> GuiMain | None:
# Check Packages and Versions
errorData = []
errorCode = 0
if sys.hexversion < 0x030800f0:
if sys.hexversion < 0x030900f0:
errorData.append(
"At least Python 3.8 is required, found %s" % CONFIG.verPyString
"At least Python 3.9 is required, found %s" % CONFIG.verPyString
)
errorCode |= 0x04
if CONFIG.verQtValue < 0x050f00: