Remove references to Python 3.9

This commit is contained in:
Veronica Berglyd Olsen
2025-01-11 18:53:28 +01:00
parent 859211fb6d
commit 31c58c29d5
7 changed files with 10 additions and 12 deletions
+2 -2
View File
@@ -201,9 +201,9 @@ def main(sysArgs: list | None = None) -> GuiMain | None:
# Check Packages and Versions
errorData = []
errorCode = 0
if sys.hexversion < 0x030900f0:
if sys.hexversion < 0x030a00f0:
errorData.append(
"At least Python 3.9 is required, found %s" % CONFIG.verPyString
"At least Python 3.10 is required, found %s" % CONFIG.verPyString
)
errorCode |= 0x04
if CONFIG.verQtValue < 0x050f00: