From d691cc7b1bbdc4c1a524595395e2184c76450904 Mon Sep 17 00:00:00 2001 From: David Miller Date: Fri, 16 Mar 2012 12:15:43 +0000 Subject: [PATCH] Update buildout.cfg to deal with the new, backwards incompatible Django Recipe --- buildout.cfg | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/buildout.cfg b/buildout.cfg index 160db4c..0527274 100644 --- a/buildout.cfg +++ b/buildout.cfg @@ -1,15 +1,20 @@ [buildout] +versions=versions parts = django find-links = http://bitbucket.org/ubernostrum/django-registration/downloads/django-registration-0.8-alpha-1.tar.gz unzip = true eggs = pkginfo django-registration==0.8-alpha-1 +[versions] +django = 1.1.1 + [django] recipe = djangorecipe -version = 1.1.1 settings = settings eggs = ${buildout:eggs} test = djangopypi project = chishop wsgi = true + +