Bump importlib-metadata from 6.8.0 to 7.1.0 (#2286)

* Bump importlib-metadata from 6.8.0 to 7.1.0

Bumps [importlib-metadata](https://github.com/python/importlib_metadata) from 6.8.0 to 7.1.0.
- [Release notes](https://github.com/python/importlib_metadata/releases)
- [Changelog](https://github.com/python/importlib_metadata/blob/main/NEWS.rst)
- [Commits](https://github.com/python/importlib_metadata/compare/v6.8.0...v7.1.0)

---
updated-dependencies:
- dependency-name: importlib-metadata
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* Update importlib-metadata==7.1.0

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com>

[skip ci]
This commit is contained in:
dependabot[bot] 2024-03-24 15:29:52 -07:00 committed by GitHub
parent b01b21ae05
commit e248c13c15
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 379 additions and 156 deletions

View file

@ -2,14 +2,7 @@ import sys
import platform
__all__ = ['install', 'NullFinder', 'Protocol']
try:
from typing import Protocol
except ImportError: # pragma: no cover
# Python 3.7 compatibility
from typing_extensions import Protocol # type: ignore
__all__ = ['install', 'NullFinder']
def install(cls):
@ -45,7 +38,7 @@ def disable_stdlib_finder():
class NullFinder:
"""
A "Finder" (aka "MetaClassFinder") that never finds any modules,
A "Finder" (aka "MetaPathFinder") that never finds any modules,
but may find distributions.
"""
@ -53,14 +46,6 @@ class NullFinder:
def find_spec(*args, **kwargs):
return None
# In Python 2, the import system requires finders
# to have a find_module() method, but this usage
# is deprecated in Python 3 in favor of find_spec().
# For the purposes of this finder (i.e. being present
# on sys.meta_path but having no other import
# system functionality), the two methods are identical.
find_module = find_spec
def pypy_partial(val):
"""