diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2016-02-07 09:29:20 -0500 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2016-02-07 09:29:20 -0500 |
| commit | c30340f3c00c64ea131596537fb7c01fc9b9e643 (patch) | |
| tree | 467ee06f6f3ad33ca3c76248645d9a324b52659b | |
| parent | 8954900a7c88831cf96679f404c2e02e16cefda0 (diff) | |
| parent | 0e689bb35e8af9f079f6985a11c80268575f786e (diff) | |
| download | external_python_setuptools-c30340f3c00c64ea131596537fb7c01fc9b9e643.tar.gz external_python_setuptools-c30340f3c00c64ea131596537fb7c01fc9b9e643.tar.bz2 external_python_setuptools-c30340f3c00c64ea131596537fb7c01fc9b9e643.zip | |
Merge backout of 1ae2a75724bb; fixes #118.
| -rw-r--r-- | CHANGES.txt | 7 | ||||
| -rwxr-xr-x | setuptools/command/install_egg_info.py | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index 50f1f8f1..9089b4b8 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -2,6 +2,13 @@ CHANGES ======= +20.0 +---- + +* Issue #118: Once again omit the package metadata (egg-info) + from the list of outputs in ``--record``. This version of setuptools + can no longer be used to upgrade pip earlier than 6.0. + 19.7 ---- diff --git a/setuptools/command/install_egg_info.py b/setuptools/command/install_egg_info.py index f777538f..60b615d2 100755 --- a/setuptools/command/install_egg_info.py +++ b/setuptools/command/install_egg_info.py @@ -29,7 +29,7 @@ class install_egg_info(Command): ).egg_name() + '.egg-info' self.source = ei_cmd.egg_info self.target = os.path.join(self.install_dir, basename) - self.outputs = [self.target] + self.outputs = [] def run(self): self.run_command('egg_info') |
