Skip to content

Commit

Permalink
Merge branch '2.10' into yunkim/backport-9759-to-210
Browse files Browse the repository at this point in the history
  • Loading branch information
Yun-Kim committed Jul 23, 2024
2 parents 0452393 + 378d5b7 commit 2372b8f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/internal/test_packages.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,10 @@ def test_get_distributions():
importlib_pkgs.add("importlib-metadata")
elif pkg.name == "importlib-metadata" and "importlib_metadata" in pkg_resources_ws:
importlib_pkgs.add("importlib_metadata")
elif pkg.name == "importlib-resources" and "importlib_resources" in pkg_resources_ws:
importlib_pkgs.add("importlib_resources")
elif pkg.name == "importlib_resources" and "importlib-resources" in pkg_resources_ws:
importlib_pkgs.add("importlib-resources")
else:
importlib_pkgs.add(pkg.name)

Expand Down

0 comments on commit 2372b8f

Please sign in to comment.