tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

commit 92d0d5a3ead9085605b48a348ef4567ca5ad9843
parent 61089020e3b01c6fae4e8fe5fedb729af827f889
Author: KS <kshampur@mozilla.com>
Date:   Thu, 23 Oct 2025 19:37:58 +0000

Bug 1995851 - Enable using python 3.13 with Talos r=perftest-reviewers,aglavic

This patch just bumps up the maximum python version with known
compatibility with Talos tests

Differential Revision: https://phabricator.services.mozilla.com/D269649

Diffstat:
Mtesting/talos/mach_commands.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/testing/talos/mach_commands.py b/testing/talos/mach_commands.py @@ -26,7 +26,7 @@ class TalosRunner(MozbuildObject): 3. Run mozharness """ # Validate that the user is using a supported python version before doing anything else - max_py_major, max_py_minor = 3, 12 + max_py_major, max_py_minor = 3, 13 sys_maj, sys_min = sys.version_info.major, sys.version_info.minor if sys_min > max_py_minor: raise PythonVersionException(