chore: rename PyPI distribution to socialapis-sdk#3
Merged
Conversation
The bare `socialapis` name on PyPI was already taken / squatted — PyPI's name-similarity check refused the registration. `socialapis-sdk` is distinct enough to pass and follows the common Python SDK naming convention (`<brand>-sdk`). What changed: - pyproject.toml: name = "socialapis" → "socialapis-sdk" - release.yml: tag-vs-version check now expects socialapis_sdk-*.tar.gz (PEP 625 normalises hyphens to underscores in built distributions) - release.yml: environment.url points to the new project page - README.md: install commands + PyPI badges updated - CHANGELOG.md: callout for the rename + reminder that import path stays `socialapis` (independent of the PyPI distribution name) What did NOT change: - The Python import path. Users still write `from socialapis import ...` - The package directory layout (`socialapis/` on disk) - Any code, any test, any docstring inside the package - The Pending Trusted Publisher on PyPI is already configured for the new `socialapis-sdk` name pointing at this repo's release.yml Once this lands on main, the v0.1.0 tag can be pushed to trigger the first release.
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.
Why
The bare `socialapis` name on PyPI is already taken/squatted — PyPI's name-similarity check refused the registration. `socialapis-sdk` is distinct enough to pass and follows the standard Python SDK naming convention.
What changes
What does NOT change
So for downstream users, the only thing different is the install line: `pip install socialapis-sdk` instead of `pip install socialapis`. Code inside their app is identical.
Test plan
Local sanity check before push:
```
ruff check . → All checks passed!
pytest → 33 passed, coverage 77.56% (gate: 70%)
```
After merge, the path to first release: