You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@climate.apache.org by go...@apache.org on 2013/06/25 22:15:58 UTC

svn commit: r1496626 - /incubator/climate/trunk/easy-rcmet/buildout.cfg

Author: goodale
Date: Tue Jun 25 20:15:57 2013
New Revision: 1496626

URL: http://svn.apache.org/r1496626
Log:
CLIMATE-106: Fixing the Requests installation within easy-rcmet

Modified:
    incubator/climate/trunk/easy-rcmet/buildout.cfg

Modified: incubator/climate/trunk/easy-rcmet/buildout.cfg
URL: http://svn.apache.org/viewvc/incubator/climate/trunk/easy-rcmet/buildout.cfg?rev=1496626&r1=1496625&r2=1496626&view=diff
==============================================================================
--- incubator/climate/trunk/easy-rcmet/buildout.cfg (original)
+++ incubator/climate/trunk/easy-rcmet/buildout.cfg Tue Jun 25 20:15:57 2013
@@ -47,6 +47,7 @@ parts =
     pynio-bin
     pyngl-bin
     bottle
+    requests
 
 [zlib]
 recipe            = hexagonit.recipe.cmmi
@@ -366,3 +367,11 @@ on_install = true
 on_update  = true
 cmds       =
     pip install bottle
+
+# Simple pip installation of Requests
+[requests]
+recipe     = collective.recipe.cmd
+on_install = true
+on_update  = true
+cmds       =
+    pip install requests
\ No newline at end of file