diff options
Diffstat (limited to 'testsuite')
-rwxr-xr-x | testsuite/install.sh | 4 |
1 files changed, 3 insertions, 1 deletions
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 |