From aaba827108daede76bcb0968f0e094cc041d95d3 Mon Sep 17 00:00:00 2001 From: "Chris St. Pierre" Date: Thu, 26 Sep 2013 14:40:06 -0400 Subject: testsuite: install boto with optional dependencies --- testsuite/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'testsuite/install.sh') diff --git a/testsuite/install.sh b/testsuite/install.sh index 1ca89f40f..c4a1bb192 100755 --- a/testsuite/install.sh +++ b/testsuite/install.sh @@ -7,7 +7,7 @@ pip install -r testsuite/requirements.txt --use-mirrors PYVER=$(python -c 'import sys;print(".".join(str(v) for v in sys.version_info[0:2]))') if [[ "$WITH_OPTIONAL_DEPS" == "yes" ]]; then - pip install --use-mirrors genshi PyYAML pyinotify + pip install --use-mirrors genshi PyYAML pyinotify boto if [[ $PYVER == "2.5" ]]; then # markdown 2.2+ doesn't work on py2.5 pip install --use-mirrors simplejson 'markdown<2.2' -- cgit v1.2.3-1-g7c22 From 1d27fdadac37eb95d56f98cf7bdd1721a339df81 Mon Sep 17 00:00:00 2001 From: "Chris St. Pierre" Date: Mon, 28 Oct 2013 09:11:36 -0400 Subject: testsuite: install django 1.4.8 when testing py 2.5 --- testsuite/install.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'testsuite/install.sh') diff --git a/testsuite/install.sh b/testsuite/install.sh index c4a1bb192..8eecd71d7 100755 --- a/testsuite/install.sh +++ b/testsuite/install.sh @@ -10,7 +10,9 @@ if [[ "$WITH_OPTIONAL_DEPS" == "yes" ]]; then pip install --use-mirrors genshi PyYAML pyinotify boto if [[ $PYVER == "2.5" ]]; then # markdown 2.2+ doesn't work on py2.5 - pip install --use-mirrors simplejson 'markdown<2.2' + pip install --use-mirrors simplejson 'markdown<2.2' 'django<1.4.9' + else + pip install 'django<1.5' fi if [[ ${PYVER:0:1} == "2" ]]; then # django supports py3k, but South doesn't, and the django bits -- cgit v1.2.3-1-g7c22