chore: rename repo/package tts-service-api → tts-api#2
Open
YASoftwareDev wants to merge 8 commits intomainfrom
Open
chore: rename repo/package tts-service-api → tts-api#2YASoftwareDev wants to merge 8 commits intomainfrom
YASoftwareDev wants to merge 8 commits intomainfrom
Conversation
…shim - pyproject.toml: name changed from tts-service-api to tts-api - VERSION.py: bumped to 3.2.1 to mark the rename release - shim/: new minimal tts-service-api@999.0.0 shim that depends on tts-api and emits a DeprecationWarning on import; to be published separately To publish: cd tts-api-python && uv build && uv publish cd tts-api-python/shim && uv build && uv publish
- shim/: removed broken tts_service_api_shim package (warning never fired because nobody imports tts_service_api_shim; real module comes from tts-api) Shim is now metadata-only: depends on tts-api, ships no Python code. - CHANGELOG.md: added 3.2.1 entry documenting the PyPI rename
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
Follow-up to #1 (revert). Merge #1 first, then this.
.gitmodules: submodule URL updatedtts-service-api→tts-api(GitHub repo was renamed)pyproject.toml: repository URL updated totts-api-python; packagenamechanged fromtts-service-apitotts-apiVERSION.py: bumped3.2.0→3.2.1to mark the rename releaseCHANGELOG.md: added3.2.1entryshim/: metadata-onlytts-service-api==999.0.0shim that depends ontts-api(backwards-compatibility redirect for existingpip install tts-service-apiusers)Test plan
uv buildproducestts_api-3.2.1-*.whl(nottts_service_api)pip install dist/tts_api-3.2.1-*.whl && python -c "import tts_service_api"workscd shim && uv buildproducestts_service_api-999.0.0-*.whl