Bug 1899622 - Bump MAX_PYTHON_VERSION_TO_CONSIDER to Python 3.12 r=firefox-build-system-reviewers,glandium

We've resolved all known Python `3.12` bugs, and the upcoming release
of MozillaBuild ships with Python `3.12.10`. As such, we should no
longer show a warning on exception if Python `3.12` being used.

Differential Revision: https://phabricator.services.mozilla.com/D248462
This commit is contained in:
Alex Hochheiden
2025-05-09 18:08:18 +00:00
committed by ahochheiden@mozilla.com
parent 5a6f848c38
commit cf56cbe45e

2
mach
View File

@@ -11,7 +11,7 @@ import traceback
from textwrap import dedent, fill
MIN_PYTHON_VERSION = (3, 8)
MAX_PYTHON_VERSION_TO_CONSIDER = (3, 11)
MAX_PYTHON_VERSION_TO_CONSIDER = (3, 12)
def load_mach(dir_path, mach_path, args):