From 39659289cd079e8a62445855b472b38cf6d0a6ea Mon Sep 17 00:00:00 2001 From: Marco Castelluccio Date: Tue, 7 Jan 2020 12:12:19 +0100 Subject: [PATCH] bot: Update Mercurial to 5.2 and version-control-tools to its latest revision --- bot/ci/bootstrap.sh | 4 ++-- bot/tests/test__system.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bot/ci/bootstrap.sh b/bot/ci/bootstrap.sh index f37dd9fc0..c3d28e163 100755 --- a/bot/ci/bootstrap.sh +++ b/bot/ci/bootstrap.sh @@ -1,7 +1,7 @@ #!/bin/bash -ex GRCOV_VERSION="v0.5.8" -MERCURIAL_VERSION="5.1" -VERSION_CONTROL_TOOLS_REV="709c897f2444" +MERCURIAL_VERSION="5.2" +VERSION_CONTROL_TOOLS_REV="102106f53cb2" apt-get update apt-get install --no-install-recommends -y gcc curl bzip2 python2-minimal python-bz2file python-dev diff --git a/bot/tests/test__system.py b/bot/tests/test__system.py index 1c1d62681..2c8792a48 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.1") + assert output.decode("utf-8").startswith("5.2") # Check needed extensions output = run_check(["hg", "version", "-T", "{extensions}"])