fix(deps): unpin youtube-transcript-api in [all] extra (broken on current PyPI)#2179
Open
vincentspereira wants to merge 1 commit into
Open
fix(deps): unpin youtube-transcript-api in [all] extra (broken on current PyPI)#2179vincentspereira wants to merge 1 commit into
vincentspereira wants to merge 1 commit into
Conversation
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 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
pip install "markitdown[all]"currently fails (or silently downgrades to ancientmarkitdown 0.0.2):Root cause
The
[all]extra pinsyoutube-transcript-api~=1.0.0(i.e.>=1.0.0,<1.1.0), but the1.0.xreleases have been removed from PyPI - the package now jumps from0.6.2straight to1.2.3. The pin is therefore unsatisfiable.Notably, the standalone
[youtube-transcription]extra is already unpinned and works fine:Fix
Align
[all]with the existing unpinned[youtube-transcription]extra - keep the original "require 1.x+" intent, drop the impossible upper bound:Verification
pip install "markitdown[all]"->ResolutionImpossible(or downgrade to 0.0.2).pip install "markitdown[all]"resolves cleanly and stays on the current release (verified on Python 3.14).One-line change; no runtime code affected.
🤖 Generated with Claude Code