Reapply "gh-132947: Apply changes from importlib_metadata 8.7 (#137885)" (#137924) (#137930)

* Reapply "gh-132947: Apply changes from importlib_metadata 8.7 (#137885)" (#137924)

This reverts commit 3706ef66ef.

* Skip the triggering test on buildbots only.
This commit is contained in:
Jason R. Coombs 2025-09-01 11:27:01 -04:00 committed by GitHub
parent 2a54acf3c3
commit 9b38c6698a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
13 changed files with 311 additions and 122 deletions

View file

@ -1,9 +1,8 @@
import importlib
import re
import textwrap
import unittest
import importlib
from . import fixtures
from importlib.metadata import (
Distribution,
PackageNotFoundError,
@ -15,6 +14,8 @@
version,
)
from . import fixtures
class APITests(
fixtures.EggInfoPkg,