Drop support for Python 3.10

This commit is contained in:
Veronica Berglyd Olsen
2025-10-22 21:23:57 +02:00
parent 2d7a42d918
commit e676bdc322
4 changed files with 7 additions and 9 deletions
+2 -2
View File
@@ -206,9 +206,9 @@ def main(sysArgs: list | None = None) -> GuiMain | None:
# Check Packages and Versions
errorData = []
errorCode = 0
if sys.hexversion < 0x030a00f0:
if sys.hexversion < 0x030b00f0:
errorData.append(
f"At least Python 3.10 is required, found {CONFIG.verPyString}"
f"At least Python 3.11 is required, found {CONFIG.verPyString}"
)
errorCode |= 0x04
if CONFIG.verQtValue < 0x060400: