diff options
author | Rob Austein <sra@hactrn.net> | 2013-02-26 01:20:37 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2013-02-26 01:20:37 +0000 |
commit | 80f2485f8a1f4764ee9a8f1167172d4e9fee54c9 (patch) | |
tree | c1be50a3e731bb1e793bdf0cf3e870e4ba2ca150 /buildtools/debian-package-skeleton.py | |
parent | 7947cc100f43df25655828bce629cf2602747449 (diff) |
Make Django requirement consistent in doc and scripts: we now want 1.3.7 or later.
svn path=/trunk/; revision=5073
Diffstat (limited to 'buildtools/debian-package-skeleton.py')
-rw-r--r-- | buildtools/debian-package-skeleton.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/buildtools/debian-package-skeleton.py b/buildtools/debian-package-skeleton.py index e169fd2c..12c4454b 100644 --- a/buildtools/debian-package-skeleton.py +++ b/buildtools/debian-package-skeleton.py @@ -519,7 +519,7 @@ maybe_install_django() { fi if ! python -c 'import django' 2>/dev/null && - ! pip install django==1.3.7 + ! pip install django>=1.3.7 then echo 1>&2 "Unable to install usable version of Django, sorry" exit 1 @@ -534,7 +534,7 @@ maybe_install_south() { fi if ! python -c 'import south' 2>/dev/null && - ! pip install South==0.7.6 + ! pip install South>=0.7.6 then echo 1>&2 "Unable to install usable version of Django, sorry" exit 1 |