From 9b27d0130f47aba6711e6419cc7b0b14b407fb02 Mon Sep 17 00:00:00 2001 From: Gregory Szorc Date: Wed, 10 Jun 2015 15:38:46 -0700 Subject: [PATCH] Bug 1168466 - Bump minimum Mercurial version in bootstrapper; r=me This should have been done in 4c757e339f81. DONTBUILD (NPOTB) --- python/mozboot/mozboot/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/mozboot/mozboot/base.py b/python/mozboot/mozboot/base.py index ab2dc2cbed2..388f35a556b 100644 --- a/python/mozboot/mozboot/base.py +++ b/python/mozboot/mozboot/base.py @@ -74,7 +74,7 @@ We recommend the following tools for installing Python: # Upgrade Mercurial older than this. -MODERN_MERCURIAL_VERSION = StrictVersion('3.0') +MODERN_MERCURIAL_VERSION = StrictVersion('3.2.4') # Upgrade Python older than this. MODERN_PYTHON_VERSION = LooseVersion('2.7.3')