aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Spaeth <Sebastian@SSpaeth.de>2011-05-09 01:08:46 +0200
committerChristopher Allan Webber <cwebber@dustycloud.org>2011-05-11 16:23:53 -0500
commitd483b9b4734d271e2b37cd586e22fdad014c9386 (patch)
tree00380ffeda5b5f04673ee165e16bf1a81f24c8fc
parent7222955fbad9d21542e71dafa910973a9cb0e676 (diff)
downloadmediagoblin-d483b9b4734d271e2b37cd586e22fdad014c9386.tar.lz
mediagoblin-d483b9b4734d271e2b37cd586e22fdad014c9386.tar.xz
mediagoblin-d483b9b4734d271e2b37cd586e22fdad014c9386.zip
Enforce using local dateutil with buildout
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>
-rw-r--r--buildout.cfg4
1 files changed, 3 insertions, 1 deletions
diff --git a/buildout.cfg b/buildout.cfg
index 520d5907..a77bf93c 100644
--- a/buildout.cfg
+++ b/buildout.cfg
@@ -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