diff options
-rw-r--r-- | CHANGES.txt | 6 | ||||
-rw-r--r-- | setuptools/dist.py | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index 1ced30f8..83081957 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -3,6 +3,12 @@ CHANGES ======= ----- +2.0.3 +----- + +* Issue #131: Fix RuntimeError when constructing an egg fetcher. + +----- 2.0.2 ----- diff --git a/setuptools/dist.py b/setuptools/dist.py index c5b02f99..3126cb96 100644 --- a/setuptools/dist.py +++ b/setuptools/dist.py @@ -295,7 +295,7 @@ class Distribution(_Distribution): 'find_links', 'site_dirs', 'index_url', 'optimize', 'site_dirs', 'allow_hosts' ) - for key in opts.keys(): + for key in list(opts): if key not in keep: del opts[key] # don't use any other settings if self.dependency_links: |