[Python-checkins] distutils2: Remove compatibility information

tarek.ziade python-checkins at python.org
Thu Aug 19 08:34:12 CEST 2010


tarek.ziade pushed f9864fae9f58 to distutils2:

http://hg.python.org/distutils2/rev/f9864fae9f58
changeset:   532:f9864fae9f58
user:        ?ric Araujo <merwok at netwok.org>
date:        Mon Aug 09 08:54:21 2010 +0200
summary:     Remove compatibility information
files:       docs/source/setupscript.rst, docs/source/uploading.rst

diff --git a/docs/source/setupscript.rst b/docs/source/setupscript.rst
--- a/docs/source/setupscript.rst
+++ b/docs/source/setupscript.rst
@@ -455,9 +455,8 @@
           scripts=['scripts/xmlproc_parse', 'scripts/xmlproc_val']
           )
 
-.. versionchanged:: 2.7
-    All the scripts will also be added to the ``MANIFEST``
-    file if no template is provided. See :ref:`manifest`.
+All the scripts will also be added to the ``MANIFEST`` file if no template is
+provided. See :ref:`manifest`.
 
 .. _distutils-installing-package-data:
 
@@ -501,12 +500,6 @@
           package_data={'mypkg': ['data/*.dat']},
           )
 
-.. versionadded:: 2.4
-
-.. versionchanged:: 2.7
-    All the files that match ``package_data`` will be added to the ``MANIFEST``
-    file if no template is provided. See :ref:`manifest`.
-
 
 .. _distutils-additional-files:
 
@@ -544,9 +537,8 @@
 files directly in the target directory, an empty string should be given as the
 directory.
 
-.. versionchanged:: 2.7
-    All the files that match ``data_files`` will be added to the ``MANIFEST``
-    file if no template is provided. See :ref:`manifest`.
+All the files that match ``data_files`` will be added to the ``MANIFEST`` file
+if no template is provided. See :ref:`manifest`.
 
 
 
@@ -606,8 +598,7 @@
     Either the author or the maintainer must be identified.
 
 (4)
-    These fields should not be used if your package is to be compatible with Python
-    versions prior to 2.2.3 or 2.3.  The list is available from the `PyPI website
+    The list of fields is available from the `PyPI website
     <http://pypi.python.org/pypi>`_.
 
 (5)
@@ -631,8 +622,6 @@
 'list of strings'
     See below.
 
-None of the string values may be Unicode.
-
 Encoding the version information is an art in itself. Python packages generally
 adhere to the version format *major.minor[.patch][sub]*. The major number is 0
 for initial, experimental releases of software. It is incremented for releases
diff --git a/docs/source/uploading.rst b/docs/source/uploading.rst
--- a/docs/source/uploading.rst
+++ b/docs/source/uploading.rst
@@ -4,8 +4,6 @@
 Uploading Packages to the Package Index
 ***************************************
 
-.. versionadded:: 2.5
-
 The Python Package Index (PyPI) not only stores the package info, but also  the
 package data if the author of the package wishes to. The distutils command
 :command:`upload` pushes the distribution files to PyPI.

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


More information about the Python-checkins mailing list