diff options
author | Chris St. Pierre <chris.a.st.pierre@gmail.com> | 2013-03-26 12:22:59 -0400 |
---|---|---|
committer | Chris St. Pierre <chris.a.st.pierre@gmail.com> | 2013-03-26 12:22:59 -0400 |
commit | d557da2330e1e6749e0fdd5464d49902ec26f1df (patch) | |
tree | 7dcd84df5ee73d2955da49490be48e855a4244ee /testsuite | |
parent | 7477be321de8b0653b75fc424d2fc4c6a943cd29 (diff) | |
download | bcfg2-d557da2330e1e6749e0fdd5464d49902ec26f1df.tar.gz bcfg2-d557da2330e1e6749e0fdd5464d49902ec26f1df.tar.bz2 bcfg2-d557da2330e1e6749e0fdd5464d49902ec26f1df.zip |
travis-ci: install django < 1.5 for tests
Diffstat (limited to 'testsuite')
-rwxr-xr-x | testsuite/install.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/install.sh b/testsuite/install.sh index 599b24ac7..c6249002d 100755 --- a/testsuite/install.sh +++ b/testsuite/install.sh @@ -14,7 +14,7 @@ if [[ "$WITH_OPTIONAL_DEPS" == "yes" ]]; then if [[ ${PYVER:0:1} == "2" ]]; then # django supports py3k, but South doesn't, and the django bits # in bcfg2 require South - pip install cheetah django South M2Crypto + pip install cheetah 'django<1.5' South M2Crypto fi else # python < 2.6 requires M2Crypto for SSL communication, not just |