fix: raise grpcio lower bound to >=1.80.0 (3.9+); pin tts-api to v3.2.2#13
Merged
YASoftwareDev merged 3 commits intomainfrom Apr 1, 2026
Merged
fix: raise grpcio lower bound to >=1.80.0 (3.9+); pin tts-api to v3.2.2#13YASoftwareDev merged 3 commits intomainfrom
YASoftwareDev merged 3 commits intomainfrom
Conversation
grpcio skips 1.79.x (1.78.0 → 1.80.0). Environments using tts-client-python alongside livekit-agents>=1.5.1 fail at runtime with grpcio 1.78.x. Aligns with tts-api-python v3.2.2 which carries the same fix upstream (techmo-pl/tts-api-python#5).
…und notation - VERSION.py: 3.2.9 → 3.2.10 so the grpcio fix is traceable by version - test.yml: fix cache-dependency-glob from non-existent pyproject.toml to setup.py - CLAUDE.md: normalize <2.0 → <2.0.0 to match setup.py exactly
Contributor
Author
|
Re-triggering CI: v3.2.2 tag is now available in tts-api-python. |
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.
Summary
grpciolower bound from>=1.70.0to>=1.80.0for Python 3.9+ insetup.pytts-apidependency from@v3.2.1→@v3.2.2CLAUDE.mddependency constraint notesBackground
grpcioskips the1.79.xseries entirely (releases jump1.78.0→1.80.0). When this package is used alongsidelivekit-agents>=1.5.1, livekit's transitive gRPC stubs requiregrpcio>=1.80.0at runtime. The old lower bound (>=1.70.0) allowed pip to resolvegrpcio==1.78.x— satisfying the declared constraint but failing at import time.The upstream fix is in
tts-api-pythonv3.2.2 (techmo-pl/tts-api-python#5), which raises the same bound inpyproject.toml. This PR pins to that release and mirrors the constraint locally so pip enforces it regardless of whethertts-apiis installed directly.This PR pins
tts-api @ ...@v3.2.2. That tag will be created when techmo-pl/tts-api-python#5 is merged and tagged. Merge this PR afterv3.2.2is tagged intts-api-python.Test plan
pip install -e .in a Python 3.9+ environment resolvesgrpcio>=1.80.0pytestpasses (unit tests)