From ff3c49e5b43f2eda6b026b8d5ad6e30f635df124 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20G=C3=B3mez=20Mart=C3=ADn?= Date: Mon, 16 Jul 2018 15:33:57 +0200 Subject: [PATCH] Add pkg-resources to the ignored packages list --- pipenv/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipenv/core.py b/pipenv/core.py index 8c21468c..337b7c72 100644 --- a/pipenv/core.py +++ b/pipenv/core.py @@ -64,7 +64,7 @@ from .environments import ( ) # Packages that should be ignored later. -BAD_PACKAGES = ("setuptools", "pip", "wheel", "packaging", "distribute") +BAD_PACKAGES = ("distribute", "packaging", "pip", "pkg-resources", "setuptools", "wheel") # Are we using the default Python? USING_DEFAULT_PYTHON = True if not PIPENV_HIDE_EMOJIS: