]> granicus.if.org Git - python/commitdiff
Reintroduce versionchanged tags, but with correct version.
authorGeorg Brandl <georg@python.org>
Mon, 27 Apr 2009 08:58:15 +0000 (08:58 +0000)
committerGeorg Brandl <georg@python.org>
Mon, 27 Apr 2009 08:58:15 +0000 (08:58 +0000)
Doc/distutils/setupscript.rst

index bbc349897d449a6fccf125c4bb324b8378d00bc9..13c42b6b411054ae17bac930acb03645e55a62d5 100644 (file)
@@ -454,6 +454,10 @@ way.  From the PyXML setup script::
           scripts=['scripts/xmlproc_parse', 'scripts/xmlproc_val']
           )
 
+.. versionchanged:: 3.1
+   All the scripts will also be added to the ``MANIFEST`` file if no template is
+   provided.  See :ref:`manifest`.
+
 
 .. _distutils-installing-package-data:
 
@@ -498,6 +502,11 @@ The corresponding call to :func:`setup` might be::
           )
 
 
+.. versionchanged:: 3.1
+   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:
 
 Installing Additional Files
@@ -534,6 +543,10 @@ without specifying a target directory, but this is not recommended, and the
 files directly in the target directory, an empty string should be given as the
 directory.
 
+.. versionchanged:: 3.1
+   All the files that match ``data_files`` will be added to the ``MANIFEST``
+   file if no template is provided.  See :ref:`manifest`.
+
 
 .. _meta-data: