[yt-dlp] Update to 2025.12.08 (#15122)

This commit is contained in:
Semyon Moroz
2025-12-09 22:02:11 +00:00
committed by GitHub
parent 64beb030c0
commit 260be7f2c2
4 changed files with 3 additions and 4 deletions
@@ -26,5 +26,3 @@ yt_dlp.utils.(_utils.)?prepend_extension
yt_dlp.utils.(_utils.)?replace_extension
# Unsure why this is here.
yt_dlp.utils.jslib.devalue.TYPE_CHECKING
# internal API:
yt_dlp.utils._jsruntime.runtime_version_tuple
+1 -1
View File
@@ -1,3 +1,3 @@
version = "2025.11.12"
version = "2025.12.08"
upstream_repository = "https://github.com/yt-dlp/yt-dlp"
requires = ["websockets"]
+1
View File
@@ -32,6 +32,7 @@ class _InfoDict(TypedDict, total=False):
title: str | None
uploader: str | None
url: str | None
requested_formats: Iterable[_InfoDict]
_StrNoDefaultOrNone: TypeAlias = str | None | type[NO_DEFAULT]
_T = TypeVar("_T")
+1 -1
View File
@@ -467,7 +467,7 @@ STR_FORMAT_RE_TMPL: Final[str]
STR_FORMAT_TYPES: Final[str]
def limit_length(s: str, length: int) -> str: ...
def version_tuple(v: str) -> tuple[int, ...]: ...
def version_tuple(v: str, *, lenient: bool = False) -> tuple[int, ...]: ...
def is_outdated_version(version: str, limit: str, assume_new: bool = True) -> bool: ...
def ytdl_is_updateable() -> bool: ...
def args_to_str(args: str | Collection[str]) -> str: ...