mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-05 22:50:18 +00:00
Fix for inclusion of setuptools in the lock and install phase + other BAD_PACKAGES.
This commit is contained in:
+1
-1
@@ -730,7 +730,7 @@ def batch_install(
|
||||
deps_to_install = deps_list[:]
|
||||
deps_to_install.extend(sequential_deps)
|
||||
deps_to_install = [
|
||||
dep for dep in deps_to_install if not project.environment.is_satisfied(dep)
|
||||
dep for dep in deps_to_install if not project.environment.is_satisfied(dep) and dep.name not in BAD_PACKAGES
|
||||
]
|
||||
sequential_dep_names = [d.name for d in sequential_deps]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user