[Python-checkins] cpython (2.7): Commit current version of the doc "dailybuild" script.

georg.brandl python-checkins at python.org
Sun Sep 30 09:03:16 CEST 2012


http://hg.python.org/cpython/rev/15fd0b4496e0
changeset:   79302:15fd0b4496e0
branch:      2.7
parent:      79300:11943e8ac032
user:        Georg Brandl <georg at python.org>
date:        Sun Sep 30 09:03:09 2012 +0200
summary:
  Commit current version of the doc "dailybuild" script.

files:
  Doc/tools/dailybuild.py |  8 ++++----
  1 files changed, 4 insertions(+), 4 deletions(-)


diff --git a/Doc/tools/dailybuild.py b/Doc/tools/dailybuild.py
--- a/Doc/tools/dailybuild.py
+++ b/Doc/tools/dailybuild.py
@@ -33,17 +33,17 @@
 
 BRANCHES = [
     # checkout, target, isdev
-    (BUILDROOT + '/python33', WWWROOT + '/dev', True),
+    (BUILDROOT + '/python33', WWWROOT + '/py3k', False),
+    (BUILDROOT + '/python34', WWWROOT + '/dev', True),
     (BUILDROOT + '/python27', WWWROOT, False),
-    (BUILDROOT + '/python32', WWWROOT + '/py3k', False),
 ]
 
 
 def build_one(checkout, target, isdev):
     print 'Doc autobuild started in %s' % checkout
     os.chdir(checkout)
-    print 'Running svn update'
-    os.system('svn update')
+    print 'Running hg pull --update'
+    os.system('/usr/local/bin/hg pull --update')
     print 'Running make autobuild'
     if os.WEXITSTATUS(os.system(
         'cd Doc; make autobuild-%s' % (isdev and 'dev' or 'stable'))) == 2:

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list