From c2c9edb1a42dd7aab17dc73b0786db6f5675a352 Mon Sep 17 00:00:00 2001 From: Marco Castelluccio Date: Tue, 25 Feb 2020 16:27:24 +0100 Subject: [PATCH 1/2] bot: Update Mercurial to 5.3 and version-control-tools to its latest revision --- bot/ci/bootstrap.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bot/ci/bootstrap.sh b/bot/ci/bootstrap.sh index 91bd99281..d7345e951 100755 --- a/bot/ci/bootstrap.sh +++ b/bot/ci/bootstrap.sh @@ -1,7 +1,7 @@ #!/bin/bash -ex GRCOV_VERSION="v0.5.9" -MERCURIAL_VERSION="5.2" -VERSION_CONTROL_TOOLS_REV="102106f53cb2" +MERCURIAL_VERSION="5.3" +VERSION_CONTROL_TOOLS_REV="2f7b4df4a928" apt-get update apt-get install --no-install-recommends -y gcc curl bzip2 python-dev From 20afba2fd485be9815295b3bbc9fd6e1fbe51690 Mon Sep 17 00:00:00 2001 From: Bastien Abadie Date: Wed, 26 Feb 2020 07:55:42 +0100 Subject: [PATCH 2/2] Update system check for mercurial 5.3 --- bot/tests/test__system.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot/tests/test__system.py b/bot/tests/test__system.py index 2c8792a48..46ec612ce 100644 --- a/bot/tests/test__system.py +++ b/bot/tests/test__system.py @@ -13,7 +13,7 @@ def test_mercurial(): # Check mercurial version output = run_check(["hg", "version", "-T", "{ver}"]) - assert output.decode("utf-8").startswith("5.2") + assert output.decode("utf-8").startswith("5.3") # Check needed extensions output = run_check(["hg", "version", "-T", "{extensions}"])