summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Sulfrian <alexander.sulfrian@fu-berlin.de>2018-10-12 18:08:29 +0200
committerAlexander Sulfrian <alexander.sulfrian@fu-berlin.de>2018-10-12 18:08:29 +0200
commite31e084a3020f91b5db6cab8352f0e0032c1b6bb (patch)
treed80354cbe17d5a23b9adcf208c31bbc87db3893d
parent020b8cfd398de6730f5767abbc1f587c899138f5 (diff)
downloadbcfg2-e31e084a3020f91b5db6cab8352f0e0032c1b6bb.tar.gz
bcfg2-e31e084a3020f91b5db6cab8352f0e0032c1b6bb.tar.bz2
bcfg2-e31e084a3020f91b5db6cab8352f0e0032c1b6bb.zip
testsuite: Fix build for python2.6
pycparser-2.19 requires python2.7.
-rwxr-xr-xtestsuite/install.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/testsuite/install.sh b/testsuite/install.sh
index 1185f8981..ce3ed22b1 100755
--- a/testsuite/install.sh
+++ b/testsuite/install.sh
@@ -28,7 +28,7 @@ else
if [[ "$WITH_OPTIONAL_DEPS" == "yes" ]]; then
pip_wheel PyYAML pyinotify boto pylibacl Jinja2 \
- cherrypy python-augeas nose-show-skipped
+ cherrypy nose-show-skipped
if [[ $PYVER == "2.6" ]]; then
pip install \
@@ -36,13 +36,13 @@ else
--global-option='--include-dirs=/usr/include/x86_64-linux-gnu' \
m2crypto
- pip_wheel 'django<1.7' 'South<0.8' 'mercurial<4.3' cheetah guppy
+ pip_wheel 'django<1.7' 'South<0.8' 'mercurial<4.3' cheetah guppy 'pycparser<2.19' python-augeas
else
if [[ $PYVER == "2.7" ]]; then
pip_wheel m2crypto guppy
fi
- pip_wheel django mercurial cheetah3
+ pip_wheel django mercurial cheetah3 python-augeas
fi
fi
fi