summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/distutils2/depgraph.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/distutils2/depgraph.py b/src/distutils2/depgraph.py
index 67a32dc..8ab4690 100644
--- a/src/distutils2/depgraph.py
+++ b/src/distutils2/depgraph.py
@@ -107,11 +107,8 @@ def generate_graph(dists):
"""
graph = DependencyGraph()
provided = {} # maps names to lists of (version, dist) tuples
-
dists = list(dists) # maybe use generator_tools in future
- missing = [] # a list of (instance, requirement) tuples
-
# first, build the graph and find out the provides
for dist in dists:
graph.add_distribution(dist)