diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2017-04-15 10:42:30 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-15 10:42:30 -0400 |
commit | 3ac5bbe706db603da38dd0bc0c6028bc33c30e4f (patch) | |
tree | 9fa1d5f0a7ad0928a23ecd6b1aa3cdcf8cdea41d | |
parent | bce190daa0c9842dd5a44ac6b931066b1a3cc714 (diff) | |
parent | 1955e5b0df67cc1aa389b8c655199958a6fcc6a0 (diff) | |
download | external_python_setuptools-3ac5bbe706db603da38dd0bc0c6028bc33c30e4f.tar.gz external_python_setuptools-3ac5bbe706db603da38dd0bc0c6028bc33c30e4f.tar.bz2 external_python_setuptools-3ac5bbe706db603da38dd0bc0c6028bc33c30e4f.zip |
Merge pull request #1014 from miccoli/issue-436
addresses #436: Updating MANIFEST.in does not correctly update the package sdist creates
-rwxr-xr-x | setuptools/command/egg_info.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/setuptools/command/egg_info.py b/setuptools/command/egg_info.py index 1a6ea9cb..21bbfb72 100755 --- a/setuptools/command/egg_info.py +++ b/setuptools/command/egg_info.py @@ -564,8 +564,6 @@ class manifest_maker(sdist): rcfiles = list(walk_revctrl()) if rcfiles: self.filelist.extend(rcfiles) - elif os.path.exists(self.manifest): - self.read_manifest() ei_cmd = self.get_finalized_command('egg_info') self.filelist.graft(ei_cmd.egg_info) |