[Python-checkins] r73235 - peps/branches/jim-update-345/pep-0345.txt

tarek.ziade python-checkins at python.org
Thu Jun 4 22:00:27 CEST 2009


Author: tarek.ziade
Date: Thu Jun  4 22:00:27 2009
New Revision: 73235

Log:
applying Tres patch (PEP 386 references)

Modified:
   peps/branches/jim-update-345/pep-0345.txt

Modified: peps/branches/jim-update-345/pep-0345.txt
==============================================================================
--- peps/branches/jim-update-345/pep-0345.txt	(original)
+++ peps/branches/jim-update-345/pep-0345.txt	Thu Jun  4 22:00:27 2009
@@ -61,7 +61,7 @@
 
 Version
     A string containing the package's version number.  This
-    field  must be in the format specified in `Version Specifiers`_.
+    field  must be in the format specified in `PEP 386`_.
 
     Example::
 
@@ -294,7 +294,7 @@
     A version declaration is a series of conditional operators and
     version numbers, separated by commas.  Conditional operators
     must be one of "<", ">", "<=", ">=", "==", and "!=".  Version
-    numbers must be in the format specified in `Version Specifiers`_.
+    numbers must be in the format specified in `PEP 386`_.
 
     Any number of conditional operators can be specified, e.g.
     the string ">1.0, !=1.3.4, <2.0" is a legal version declaration.
@@ -328,7 +328,7 @@
     A version declaration may be supplied (without a comparison
     operator); the distribution's version number will be implied if none
     is specified.  Version numbers must be in the format specified in
-    `Version Specifiers`_.
+    `PEP 386`_.
 
     Examples::
 
@@ -342,7 +342,7 @@
     should not be installed at the same time.
     
     Version declarations can be supplied.  Version numbers must be in the
-    format specified in `Version Specifiers`_.
+    format specified in `PEP 386`_.
 
     The most common use of this field will be in case a project name
     changes, e.g. Gorgon 2.3 gets subsumed into Torqued Python 1.0.
@@ -361,7 +361,7 @@
     by commas.  Conditional operators must be one of "<", ">", "<=",
     ">=", "==", and "!=".
 
-    Version numbers must be in the format specified in `Version Specifiers`_.
+    Version numbers must be in the format specified in `PEP 386`_.
 
     Any number of conditional operators can be specified, e.g.
     the string ">1.0, !=1.3.4, <2.0" is a legal version declaration.
@@ -387,7 +387,7 @@
     must be one of "<", ">", "<=", ">=", "==", and "!=".  Because they
     refer to non-Python software releases, version numbers for
     this field are **not** required to conform to the format
-    specified in `Version Specifiers`_:  they should correspond to the
+    specified in `PEP 386`_:  they should correspond to the
     version scheme used by the external dependency.
 
     Any number of conditional operators can be specified, e.g.
@@ -420,7 +420,9 @@
 Version Specifiers
 ==================
 
-(TODO: fill in the ``verlib.py`` specification here).
+The specification for distribution version specifiers has been moved to
+`PEP 386`_.
+
 
 External References Registry
 ============================
@@ -476,6 +478,9 @@
 
 .. _`Python Package Index`: http://pypi.python.org/pypi/
 
+.. _`PEP 386`: http://svn.python.org/projects/peps/trunk/pep-0386.txt
+   
+
 
 Copyright
 =========


More information about the Python-checkins mailing list