Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c1a2657

Browse files
author
Tarek Ziadé
committed
Merged revisions 69861 via svnmerge from
svn+ssh://[email protected]/python/trunk ........ r69861 | tarek.ziade | 2009-02-22 01:07:45 +0100 (Sun, 22 Feb 2009) | 1 line using versionchanged instead of versionadded for distutils doc on sdist default files ........
1 parent ba86fa9 commit c1a2657

2 files changed

Lines changed: 9 additions & 15 deletions

File tree

Doc/distutils/setupscript.rst

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -450,10 +450,9 @@ way. From the PyXML setup script::
450450
scripts=['scripts/xmlproc_parse', 'scripts/xmlproc_val']
451451
)
452452

453-
All the scripts will also be added to the ``MANIFEST``
454-
file if no template is provided. See :ref:`manifest`.
455-
456-
.. versionadded:: 2.7
453+
.. versionchanged:: 2.7
454+
All the scripts will also be added to the ``MANIFEST``
455+
file if no template is provided. See :ref:`manifest`.
457456

458457
.. _distutils-installing-package-data:
459458

@@ -498,10 +497,10 @@ The corresponding call to :func:`setup` might be::
498497
)
499498

500499

501-
All the files that match ``package_data`` will be added to the ``MANIFEST``
502-
file if no template is provided. See :ref:`manifest`.
500+
.. versionchanged:: 2.7
501+
All the files that match ``package_data`` will be added to the ``MANIFEST``
502+
file if no template is provided. See :ref:`manifest`.
503503

504-
.. versionadded:: 2.7
505504

506505
.. _distutils-additional-files:
507506

@@ -539,10 +538,10 @@ without specifying a target directory, but this is not recommended, and the
539538
files directly in the target directory, an empty string should be given as the
540539
directory.
541540

542-
All the files that match ``data_files`` will be added to the ``MANIFEST``
543-
file if no template is provided. See :ref:`manifest`.
541+
.. versionchanged:: 2.7
542+
All the files that match ``data_files`` will be added to the ``MANIFEST``
543+
file if no template is provided. See :ref:`manifest`.
544544

545-
.. versionadded:: 2.7
546545

547546

548547
.. _meta-data:

Doc/distutils/sourcedist.rst

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -87,14 +87,9 @@ source distribution:
8787
* all files that matches the ``package_data`` metadata.
8888
See :ref:`distutils-installing-package-data`.
8989

90-
.. versionadded:: 2.7
91-
9290
* all files that matches the ``data_files`` metadata.
9391
See :ref:`distutils-additional-files`.
9492

95-
.. versionadded:: 2.7
96-
97-
9893
Sometimes this is enough, but usually you will want to specify additional files
9994
to distribute. The typical way to do this is to write a *manifest template*,
10095
called :file:`MANIFEST.in` by default. The manifest template is just a list of

0 commit comments

Comments
 (0)