summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Sulfrian <alexander.sulfrian@fu-berlin.de>2017-08-16 10:01:21 +0200
committerAlexander Sulfrian <alexander.sulfrian@fu-berlin.de>2017-08-16 10:20:35 +0200
commit9c21072a9d10744ef39c3fdc4a5a6a0797401810 (patch)
tree38a73a6668fdc0670b18dcc514efb93971e7f844
parentadf2d9f060a629071abe325e3b4b882e5893e858 (diff)
downloadbcfg2-9c21072a9d10744ef39c3fdc4a5a6a0797401810.tar.gz
bcfg2-9c21072a9d10744ef39c3fdc4a5a6a0797401810.tar.bz2
bcfg2-9c21072a9d10744ef39c3fdc4a5a6a0797401810.zip
testsuite: Use older mercurial for python2.6
> Mercurial 4.2.2 is the last release to support Python 2.6. > Use this if you need to run Mercurial on old platforms and > you cannot update your Python installation. See also: https://www.mercurial-scm.org/wiki/SupportedPythonVersions
-rwxr-xr-xtestsuite/install.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/testsuite/install.sh b/testsuite/install.sh
index 076d91a4c..1bd214936 100755
--- a/testsuite/install.sh
+++ b/testsuite/install.sh
@@ -20,7 +20,7 @@ else
fi
if [[ "$WITH_OPTIONAL_DEPS" == "yes" ]]; then
- pip_wheel PyYAML pyinotify boto pylibacl Jinja2 mercurial guppy \
+ pip_wheel PyYAML pyinotify boto pylibacl Jinja2 guppy \
cherrypy python-augeas nose-show-skipped
if [[ ${PYVER:0:1} == "2" ]]; then
@@ -28,9 +28,9 @@ else
fi
if [[ $PYVER == "2.6" ]]; then
- pip_wheel 'django<1.7' 'South<0.8'
+ pip_wheel 'django<1.7' 'South<0.8' 'mercurial<4.3'
else
- pip_wheel django
+ pip_wheel django mercurial
fi
fi
fi