summaryrefslogtreecommitdiffstats
path: root/testsuite
diff options
context:
space:
mode:
authorAlexander Sulfrian <alexander.sulfrian@fu-berlin.de>2016-08-17 17:30:11 +0200
committerAlexander Sulfrian <alexander.sulfrian@fu-berlin.de>2016-08-17 21:00:26 +0200
commitc34c5e1c990b3f4221832e7b78a9f1c6be08656f (patch)
tree40461d323e5d9a0df6ecc117aefdc396be334e6c /testsuite
parentb6f12b860a1d6754458a5e4bc58414b19523d3b3 (diff)
downloadbcfg2-c34c5e1c990b3f4221832e7b78a9f1c6be08656f.tar.gz
bcfg2-c34c5e1c990b3f4221832e7b78a9f1c6be08656f.tar.bz2
bcfg2-c34c5e1c990b3f4221832e7b78a9f1c6be08656f.zip
testsuite: Use django<1.10
We currently have a problem with django 1.10 because url.patterns is removed and we need to change the format of the url mappings: https://docs.djangoproject.com/en/1.9/ref/urls/#patterns
Diffstat (limited to 'testsuite')
-rwxr-xr-xtestsuite/install.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/install.sh b/testsuite/install.sh
index 9769d22ea..eba870465 100755
--- a/testsuite/install.sh
+++ b/testsuite/install.sh
@@ -25,7 +25,7 @@ if [[ "$WITH_OPTIONAL_DEPS" == "yes" ]]; then
if [[ $PYVER != "2.7" ]]; then
pip install 'django<1.7' 'South<0.8'
else
- pip install django
+ pip install 'django<1.10'
fi
fi
fi