From d30eb4e9bda0b8f8deb7aea6889fdad75ace1b59 Mon Sep 17 00:00:00 2001 From: Lucy <335570+LucentW@users.noreply.github.com> Date: Sun, 14 Dec 2025 01:04:40 +0100 Subject: [PATCH] Update maximum supported Python version to 3.14 Works just fine with the current requirements --- library/pythoncheck.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/pythoncheck.py b/library/pythoncheck.py index 79b36701..954d812d 100644 --- a/library/pythoncheck.py +++ b/library/pythoncheck.py @@ -24,7 +24,7 @@ # Oldest / newest version supported MIN_PYTHON = (3, 9) -MAX_PYTHON = (3, 13) +MAX_PYTHON = (3, 14) def check_python_version():