summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-04-27 08:58:15 (GMT)
committerGeorg Brandl <georg@python.org>2009-04-27 08:58:15 (GMT)
commit56a59048ee42769542e9f15ae6c9e5f547d9c4e6 (patch)
tree3b1f17e81471b6e60aae70c479f7b1e4f91e8450 /Doc
parentb70ccc348bc4ea166f7538dd21b598dd5f545abe (diff)
downloadcpython-56a59048ee42769542e9f15ae6c9e5f547d9c4e6.zip
cpython-56a59048ee42769542e9f15ae6c9e5f547d9c4e6.tar.gz
cpython-56a59048ee42769542e9f15ae6c9e5f547d9c4e6.tar.bz2
Reintroduce versionchanged tags, but with correct version.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/distutils/setupscript.rst13
1 files changed, 13 insertions, 0 deletions
diff --git a/Doc/distutils/setupscript.rst b/Doc/distutils/setupscript.rst
index bbc3498..13c42b6 100644
--- a/Doc/distutils/setupscript.rst
+++ b/Doc/distutils/setupscript.rst
@@ -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: