Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions stubs/yt-dlp/@tests/stubtest_allowlist.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion stubs/yt-dlp/METADATA.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
version = "2025.11.12"
version = "2025.12.08"
upstream_repository = "https://github.com/yt-dlp/yt-dlp"
requires = ["websockets"]
1 change: 1 addition & 0 deletions stubs/yt-dlp/yt_dlp/extractor/common.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
2 changes: 1 addition & 1 deletion stubs/yt-dlp/yt_dlp/utils/_utils.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -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: ...
Expand Down