From 23e3c94b09bbe98721ff2e7fd5e42a938730419a Mon Sep 17 00:00:00 2001 From: "Vincent S. Pereira" Date: Wed, 1 Jul 2026 00:40:01 +0100 Subject: [PATCH] fix(deps): unpin youtube-transcript-api in [all] extra The [all] extra pins 'youtube-transcript-api~=1.0.0', but the 1.0.x releases were removed from PyPI (the package now jumps 0.6.x -> 1.2.x), so 'pip install markitdown[all]' fails with ResolutionImpossible or silently downgrades to markitdown 0.0.2. Align [all] with the existing unpinned [youtube-transcription] extra by using '>=1.0.0'. Co-Authored-By: Claude --- packages/markitdown/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/markitdown/pyproject.toml b/packages/markitdown/pyproject.toml index d4c20a402..874b71cab 100644 --- a/packages/markitdown/pyproject.toml +++ b/packages/markitdown/pyproject.toml @@ -45,7 +45,7 @@ all = [ "olefile", "pydub", "SpeechRecognition", - "youtube-transcript-api~=1.0.0", + "youtube-transcript-api>=1.0.0", "azure-ai-documentintelligence", "azure-ai-contentunderstanding>=1.2.0b1", "azure-identity",