Skip to content

Commit

Permalink
Merge tag 'v3.8.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Mar 27, 2021
2 parents 236cea8 + d91dd25 commit 703a29b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ v3.9.0
config, resulting in a ~20% performance improvement when
loading entry points.

v3.8.1
======

* #293: Workaround for error in distribution search.

v3.8.0
======

Expand Down
2 changes: 1 addition & 1 deletion importlib_metadata/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -736,7 +736,7 @@ def search(self, prepared):
if prepared
else itertools.chain.from_iterable(self.eggs.values())
)
return itertools.chain(infos, eggs)
return list(itertools.chain(infos, eggs))


class Prepared:
Expand Down

0 comments on commit 703a29b

Please sign in to comment.