Skip to content

Commit 260be7f

Browse files
authored
[yt-dlp] Update to 2025.12.08 (#15122)
1 parent 64beb03 commit 260be7f

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

stubs/yt-dlp/@tests/stubtest_allowlist.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,3 @@ yt_dlp.utils.(_utils.)?prepend_extension
2626
yt_dlp.utils.(_utils.)?replace_extension
2727
# Unsure why this is here.
2828
yt_dlp.utils.jslib.devalue.TYPE_CHECKING
29-
# internal API:
30-
yt_dlp.utils._jsruntime.runtime_version_tuple

stubs/yt-dlp/METADATA.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
version = "2025.11.12"
1+
version = "2025.12.08"
22
upstream_repository = "https://github.com/yt-dlp/yt-dlp"
33
requires = ["websockets"]

stubs/yt-dlp/yt_dlp/extractor/common.pyi

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ class _InfoDict(TypedDict, total=False):
3232
title: str | None
3333
uploader: str | None
3434
url: str | None
35+
requested_formats: Iterable[_InfoDict]
3536

3637
_StrNoDefaultOrNone: TypeAlias = str | None | type[NO_DEFAULT]
3738
_T = TypeVar("_T")

stubs/yt-dlp/yt_dlp/utils/_utils.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,7 @@ STR_FORMAT_RE_TMPL: Final[str]
467467
STR_FORMAT_TYPES: Final[str]
468468

469469
def limit_length(s: str, length: int) -> str: ...
470-
def version_tuple(v: str) -> tuple[int, ...]: ...
470+
def version_tuple(v: str, *, lenient: bool = False) -> tuple[int, ...]: ...
471471
def is_outdated_version(version: str, limit: str, assume_new: bool = True) -> bool: ...
472472
def ytdl_is_updateable() -> bool: ...
473473
def args_to_str(args: str | Collection[str]) -> str: ...

0 commit comments

Comments
 (0)