relax hard-pinned dependencies to minimum versions#486
Open
niradler wants to merge 1 commit intoresemble-ai:masterfrom
Open
relax hard-pinned dependencies to minimum versions#486niradler wants to merge 1 commit intoresemble-ai:masterfrom
niradler wants to merge 1 commit intoresemble-ai:masterfrom
Conversation
Made-with: Cursor
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.
All current dependencies use exact version pins (==). This makes chatterbox incompatible with any environment that needs a different version of the same package.
Most impactful: \ orch==2.6.0\ and \ orchaudio==2.6.0\ conflict with packages that require torch >=2.7 (e.g. whisperx requires \ orch>=2.7.1). An exact pin forces downstream users to maintain separate environments or apply override hacks in their build tooling.
Changes:
umpy>=1.24.0,<1.26.0\ →
umpy>=1.24.0\ (numpy 2.x is ABI-compatible for the APIs chatterbox uses)
The model weights and inference code are not version-sensitive to these exact pins. Switching to lower-bound constraints lets the resolver pick the best compatible version for the full environment.
Made with Cursor