From cf56cbe45e2fd7e17e3bf4e6739da7379e579641 Mon Sep 17 00:00:00 2001 From: Alex Hochheiden Date: Fri, 9 May 2025 18:08:18 +0000 Subject: [PATCH] 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 --- mach | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mach b/mach index 141fc246fc64..ac6d987cc4fe 100755 --- a/mach +++ b/mach @@ -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):