summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Sulfrian <alexander.sulfrian@fu-berlin.de>2019-05-07 17:35:07 +0200
committerAlexander Sulfrian <alexander.sulfrian@fu-berlin.de>2019-05-07 17:35:07 +0200
commitb9fe3b5906991be5bbcde368e50c35fade12caca (patch)
tree18da088f27fe57743da377ccea30aaeabf244a34
parent61988ded4c22aa1850f7e22ae12b93040de3b5d4 (diff)
downloadbcfg2-b9fe3b5906991be5bbcde368e50c35fade12caca.tar.gz
bcfg2-b9fe3b5906991be5bbcde368e50c35fade12caca.tar.bz2
bcfg2-b9fe3b5906991be5bbcde368e50c35fade12caca.zip
testsuite: PyYAML-5.1 removed support for Python 2.6
-rwxr-xr-xtestsuite/install.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/testsuite/install.sh b/testsuite/install.sh
index ce3ed22b1..41ed1f6e6 100755
--- a/testsuite/install.sh
+++ b/testsuite/install.sh
@@ -27,8 +27,7 @@ else
fi
if [[ "$WITH_OPTIONAL_DEPS" == "yes" ]]; then
- pip_wheel PyYAML pyinotify boto pylibacl Jinja2 \
- cherrypy nose-show-skipped
+ pip_wheel pyinotify boto pylibacl Jinja2 cherrypy nose-show-skipped
if [[ $PYVER == "2.6" ]]; then
pip install \
@@ -36,13 +35,14 @@ 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 'pycparser<2.19' python-augeas
+ pip_wheel 'django<1.7' 'South<0.8' 'mercurial<4.3' cheetah guppy \
+ 'pycparser<2.19' python-augeas 'PyYAML<5.1'
else
if [[ $PYVER == "2.7" ]]; then
pip_wheel m2crypto guppy
fi
- pip_wheel django mercurial cheetah3 python-augeas
+ pip_wheel django mercurial cheetah3 python-augeas PyYAML
fi
fi
fi