Enforce using local dateutil with buildout
authorSebastian Spaeth <Sebastian@SSpaeth.de>
Sun, 8 May 2011 23:08:46 +0000 (01:08 +0200)
committerChristopher Allan Webber <cwebber@dustycloud.org>
Wed, 11 May 2011 21:23:53 +0000 (16:23 -0500)
Natty has a too old system dateutil, but buildout will put the system
modules in the search path first. By adding the dateutil spec to the
'egg' requirement, we put the dateutil inclusion of the local egg first
and natty compiles (buildouts) fine.

Part of http://bugs.foocorp.net/issues/308

Signed-off-by: Sebastian Spaeth <Sebastian@SSpaeth.de>
buildout.cfg

index 520d5907f6dbe0ec893b9762de33f2bcfcbd75e1..a77bf93cc034ad32a451ecddb701c33c711b250f 100644 (file)
@@ -6,7 +6,9 @@ parts = mediagoblin make_user_dev_dirs
 recipe=zc.recipe.egg
 interpreter=python
 dependent-scripts = true
-eggs=mediagoblin
+eggs=
+    python-dateutil>=1.5.0,<2.0.0
+    mediagoblin
 entry-points = 
     nosetests=nose:run_exit
     paster=paste.script.command:run