This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ronaldoussoren
Recipients ronaldoussoren, tarek
Date 2010-05-11.12:32:45
SpamBayes Score 0.0051161754
Marked as misclassified No
Message-id <1273581168.94.0.337026684583.issue8688@psf.upfronthosting.co.za>
In-reply-to
Content
The sdist command in distutils calculates the MANIFEST file from a template (by default MANIFEST.in). 

The code in sdist assumes that the contents of MANIFEST only depends on MANIFEST.in and setup.py, which can cause files to be missed when building an sdist.

In particular: given a MANIFEST.in file that includes all documentation in a 'Doc' subdirectory, using"recursive-include Doc *.txt" in the template, the MANIFEST won't get regenerated when a new file is added to the documentation subdirectory and hence that new file is not included in sdist distributions.
History
Date User Action Args
2010-05-11 12:32:49ronaldoussorensetrecipients: + ronaldoussoren, tarek
2010-05-11 12:32:48ronaldoussorensetmessageid: <1273581168.94.0.337026684583.issue8688@psf.upfronthosting.co.za>
2010-05-11 12:32:46ronaldoussorenlinkissue8688 messages
2010-05-11 12:32:46ronaldoussorencreate