Make dist_files a triple, with the Python target version included,

so that bdist_wininst can specify 'any'.
This commit is contained in:
Martin v. Löwis 2005-03-23 18:54:36 +00:00
parent c8734a7257
commit 98da562600
6 changed files with 38 additions and 14 deletions

View file

@ -449,7 +449,7 @@ class sdist (Command):
for fmt in self.formats:
file = self.make_archive(base_name, fmt, base_dir=base_dir)
archive_files.append(file)
self.distribution.dist_files.append(('sdist',file))
self.distribution.dist_files.append(('sdist', '', file))
self.archive_files = archive_files