[Checkins] SVN: zopetoolkit/doc/scripts/update-releaseinfo.py Give the release a number

Hanno Schlichting hannosch at hannosch.eu
Sat Jun 26 06:31:04 EDT 2010


Log message for revision 113877:
  Give the release a number
  

Changed:
  U   zopetoolkit/doc/scripts/update-releaseinfo.py

-=-
Modified: zopetoolkit/doc/scripts/update-releaseinfo.py
===================================================================
--- zopetoolkit/doc/scripts/update-releaseinfo.py	2010-06-26 10:26:36 UTC (rev 113876)
+++ zopetoolkit/doc/scripts/update-releaseinfo.py	2010-06-26 10:31:04 UTC (rev 113877)
@@ -45,6 +45,7 @@
 DOAP_NS = 'http://usefulinc.com/ns/doap#'
 TAGS_DIR = os.path.join(os.pardir, 'tags')
 
+
 def package_list(packages, config, out,
                  line=PACKAGE_LINE):
     print >>out, TABLE_HEADER
@@ -65,7 +66,7 @@
             # Wah.
             homepage = 'http://pypi.python.org'
         print >>output, line % dict(
-            name=package, homepage=homepage, 
+            name=package, homepage=homepage,
             description=description, version=version)
     print >>out
 
@@ -76,7 +77,9 @@
     return result
 
 
-releases = [('trunk', os.path.join(os.pardir, 'trunk'))]
+releases = [
+    ('1.0dev', os.path.join(os.pardir, 'trunk')),
+]
 
 for tag in os.listdir(TAGS_DIR):
     if tag.startswith('.'):



More information about the checkins mailing list