diff options
| author | Paul Ganssle <paul@ganssle.io> | 2018-03-18 11:43:00 -0400 |
|---|---|---|
| committer | Paul Ganssle <paul@ganssle.io> | 2018-03-18 11:43:00 -0400 |
| commit | a0723a66bf7950ee470971ac9931d751a7dd76f3 (patch) | |
| tree | 5efe17e9d162c56f47dd24febff88f67880e157d /setuptools/dist.py | |
| parent | 76f1da96edb2a9252c4aa7f4eacdac4312209d1c (diff) | |
| download | python-setuptools-git-a0723a66bf7950ee470971ac9931d751a7dd76f3.tar.gz | |
Stop patching write_pkg_info
Diffstat (limited to 'setuptools/dist.py')
| -rw-r--r-- | setuptools/dist.py | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/setuptools/dist.py b/setuptools/dist.py index 284d922d..321ab6b7 100644 --- a/setuptools/dist.py +++ b/setuptools/dist.py @@ -123,15 +123,6 @@ def write_pkg_file(self, file): file.write('Provides-Extra: %s\n' % extra) -# from Python 3.4 -def write_pkg_info(self, base_dir): - """Write the PKG-INFO file into the release tree. - """ - with open(os.path.join(base_dir, 'PKG-INFO'), 'w', - encoding='UTF-8') as pkg_info: - self.write_pkg_file(pkg_info) - - sequence = tuple, list |
