1
1
Fork 0
mirror of https://github.com/pypa/pip synced 2023-12-13 21:30:23 +01:00

Merge pull request #1321 from qwcode/skip_distribute

add 'distribute' to default skip list for installed dists
This commit is contained in:
Marcus Smith 2013-11-15 16:57:10 -08:00
commit 16ffa566ed

View file

@ -348,7 +348,7 @@ def dist_is_editable(dist):
return req.editable
def get_installed_distributions(local_only=True,
skip=('setuptools', 'pip', 'python'),
skip=('setuptools', 'pip', 'python', 'distribute'),
include_editables=True,
editables_only=False):
"""