Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
setuptools
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jérome Perrin
setuptools
Commits
c30340f3
Commit
c30340f3
authored
Feb 07, 2016
by
Jason R. Coombs
Browse files
Options
Browse Files
Download
Plain Diff
Merge backout of 1ae2a75724bb; fixes #118.
parents
8954900a
0e689bb3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletion
+8
-1
CHANGES.txt
CHANGES.txt
+7
-0
setuptools/command/install_egg_info.py
setuptools/command/install_egg_info.py
+1
-1
No files found.
CHANGES.txt
View file @
c30340f3
...
...
@@ -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
----
...
...
setuptools/command/install_egg_info.py
View file @
c30340f3
...
...
@@ -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'
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment