mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-14 09:12:58 -07:00
Bump importlib-metadata from 5.0.0 to 5.2.0 (#1932)
* Bump importlib-metadata from 5.0.0 to 5.2.0 Bumps [importlib-metadata](https://github.com/python/importlib_metadata) from 5.0.0 to 5.2.0. - [Release notes](https://github.com/python/importlib_metadata/releases) - [Changelog](https://github.com/python/importlib_metadata/blob/main/CHANGES.rst) - [Commits](https://github.com/python/importlib_metadata/compare/v5.0.0...v5.2.0) --- updated-dependencies: - dependency-name: importlib-metadata dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Update importlib-metadata==5.2.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:
parent
56780677fb
commit
8159bf456c
6 changed files with 35 additions and 25 deletions
|
@ -139,6 +139,7 @@ class DeprecatedTuple:
|
||||||
1
|
1
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
# Do not remove prior to 2023-05-01 or Python 3.13
|
||||||
_warn = functools.partial(
|
_warn = functools.partial(
|
||||||
warnings.warn,
|
warnings.warn,
|
||||||
"EntryPoint tuple interface is deprecated. Access members by name.",
|
"EntryPoint tuple interface is deprecated. Access members by name.",
|
||||||
|
@ -293,8 +294,7 @@ class EntryPoints(tuple):
|
||||||
Select entry points from self that match the
|
Select entry points from self that match the
|
||||||
given parameters (typically group and/or name).
|
given parameters (typically group and/or name).
|
||||||
"""
|
"""
|
||||||
candidates = (_py39compat.ep_matches(ep, **params) for ep in self)
|
return EntryPoints(ep for ep in self if _py39compat.ep_matches(ep, **params))
|
||||||
return EntryPoints(ep for ep, predicate in candidates if predicate)
|
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def names(self):
|
def names(self):
|
||||||
|
|
|
@ -1,8 +1,20 @@
|
||||||
|
import functools
|
||||||
|
import warnings
|
||||||
import re
|
import re
|
||||||
import textwrap
|
import textwrap
|
||||||
import email.message
|
import email.message
|
||||||
|
|
||||||
from ._text import FoldedCase
|
from ._text import FoldedCase
|
||||||
|
from ._compat import pypy_partial
|
||||||
|
|
||||||
|
|
||||||
|
# Do not remove prior to 2024-01-01 or Python 3.14
|
||||||
|
_warn = functools.partial(
|
||||||
|
warnings.warn,
|
||||||
|
"Implicit None on return values is deprecated and will raise KeyErrors.",
|
||||||
|
DeprecationWarning,
|
||||||
|
stacklevel=pypy_partial(2),
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
class Message(email.message.Message):
|
class Message(email.message.Message):
|
||||||
|
@ -39,6 +51,16 @@ class Message(email.message.Message):
|
||||||
def __iter__(self):
|
def __iter__(self):
|
||||||
return super().__iter__()
|
return super().__iter__()
|
||||||
|
|
||||||
|
def __getitem__(self, item):
|
||||||
|
"""
|
||||||
|
Warn users that a ``KeyError`` can be expected when a
|
||||||
|
mising key is supplied. Ref python/importlib_metadata#371.
|
||||||
|
"""
|
||||||
|
res = super().__getitem__(item)
|
||||||
|
if res is None:
|
||||||
|
_warn()
|
||||||
|
return res
|
||||||
|
|
||||||
def _repair_headers(self):
|
def _repair_headers(self):
|
||||||
def redent(value):
|
def redent(value):
|
||||||
"Correct for RFC822 indentation"
|
"Correct for RFC822 indentation"
|
||||||
|
|
|
@ -30,18 +30,19 @@ class PackageMetadata(Protocol):
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
|
||||||
class SimplePath(Protocol):
|
class SimplePath(Protocol[_T]):
|
||||||
"""
|
"""
|
||||||
A minimal subset of pathlib.Path required by PathDistribution.
|
A minimal subset of pathlib.Path required by PathDistribution.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def joinpath(self) -> 'SimplePath':
|
def joinpath(self) -> _T:
|
||||||
... # pragma: no cover
|
... # pragma: no cover
|
||||||
|
|
||||||
def __truediv__(self) -> 'SimplePath':
|
def __truediv__(self, other: Union[str, _T]) -> _T:
|
||||||
... # pragma: no cover
|
... # pragma: no cover
|
||||||
|
|
||||||
def parent(self) -> 'SimplePath':
|
@property
|
||||||
|
def parent(self) -> _T:
|
||||||
... # pragma: no cover
|
... # pragma: no cover
|
||||||
|
|
||||||
def read_text(self) -> str:
|
def read_text(self) -> str:
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
"""
|
"""
|
||||||
Compatibility layer with Python 3.8/3.9
|
Compatibility layer with Python 3.8/3.9
|
||||||
"""
|
"""
|
||||||
from typing import TYPE_CHECKING, Any, Optional, Tuple
|
from typing import TYPE_CHECKING, Any, Optional
|
||||||
|
|
||||||
if TYPE_CHECKING: # pragma: no cover
|
if TYPE_CHECKING: # pragma: no cover
|
||||||
# Prevent circular imports on runtime.
|
# Prevent circular imports on runtime.
|
||||||
|
@ -22,27 +22,14 @@ def normalized_name(dist: Distribution) -> Optional[str]:
|
||||||
return Prepared.normalize(getattr(dist, "name", None) or dist.metadata['Name'])
|
return Prepared.normalize(getattr(dist, "name", None) or dist.metadata['Name'])
|
||||||
|
|
||||||
|
|
||||||
def ep_matches(ep: EntryPoint, **params) -> Tuple[EntryPoint, bool]:
|
def ep_matches(ep: EntryPoint, **params) -> bool:
|
||||||
"""
|
"""
|
||||||
Workaround for ``EntryPoint`` objects without the ``matches`` method.
|
Workaround for ``EntryPoint`` objects without the ``matches`` method.
|
||||||
For the sake of convenience, a tuple is returned containing not only the
|
|
||||||
boolean value corresponding to the predicate evalutation, but also a compatible
|
|
||||||
``EntryPoint`` object that can be safely used at a later stage.
|
|
||||||
|
|
||||||
For example, the following sequences of expressions should be compatible:
|
|
||||||
|
|
||||||
# Sequence 1: using the compatibility layer
|
|
||||||
candidates = (_py39compat.ep_matches(ep, **params) for ep in entry_points)
|
|
||||||
[ep for ep, predicate in candidates if predicate]
|
|
||||||
|
|
||||||
# Sequence 2: using Python 3.9+
|
|
||||||
[ep for ep in entry_points if ep.matches(**params)]
|
|
||||||
"""
|
"""
|
||||||
try:
|
try:
|
||||||
return ep, ep.matches(**params)
|
return ep.matches(**params)
|
||||||
except AttributeError:
|
except AttributeError:
|
||||||
from . import EntryPoint # -> delay to prevent circular imports.
|
from . import EntryPoint # -> delay to prevent circular imports.
|
||||||
|
|
||||||
# Reconstruct the EntryPoint object to make sure it is compatible.
|
# Reconstruct the EntryPoint object to make sure it is compatible.
|
||||||
_ep = EntryPoint(ep.name, ep.value, ep.group)
|
return EntryPoint(ep.name, ep.value, ep.group).matches(**params)
|
||||||
return _ep, _ep.matches(**params)
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
apscheduler==3.9.1.post1
|
apscheduler==3.9.1.post1
|
||||||
importlib-metadata==5.0.0
|
importlib-metadata==5.2.0
|
||||||
importlib-resources==5.10.1
|
importlib-resources==5.10.1
|
||||||
pyinstaller==5.6.2
|
pyinstaller==5.6.2
|
||||||
pyopenssl==22.1.0
|
pyopenssl==22.1.0
|
||||||
|
|
|
@ -18,7 +18,7 @@ gntp==1.0.3
|
||||||
html5lib==1.1
|
html5lib==1.1
|
||||||
httpagentparser==1.9.5
|
httpagentparser==1.9.5
|
||||||
idna==3.4
|
idna==3.4
|
||||||
importlib-metadata==5.0.0
|
importlib-metadata==5.2.0
|
||||||
importlib-resources==5.10.1
|
importlib-resources==5.10.1
|
||||||
git+https://github.com/Tautulli/ipwhois.git@master#egg=ipwhois
|
git+https://github.com/Tautulli/ipwhois.git@master#egg=ipwhois
|
||||||
IPy==1.01
|
IPy==1.01
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue