fix: rename PyPI package from ibis-hotdata to hotdata-ibis#7
Merged
Conversation
The distribution was publishing to pypi.org/p/ibis-hotdata but the intended project is pypi.org/project/hotdata-ibis. Update all references to the distribution name: - pyproject.toml: name = "hotdata-ibis" - publish.yml: environment URL → pypi.org/p/hotdata-ibis - __init__.py / backend.py: importlib.metadata lookup uses "hotdata-ibis" - test_version.py: dist_version lookup uses "hotdata-ibis" - README.md: install instructions use hotdata-ibis The Python import name (ibis_hotdata) and the Ibis entry-point backend key (hotdata) are unchanged. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
There was a problem hiding this comment.
Review
Blocking Issues
uv.lockwas not regenerated. The workspace package entry atuv.lock:147still hasname = "ibis-hotdata", which no longer matchespyproject.toml.uv sync --locked(the lockfile CI flow documented in README) will fail with a name mismatch.
Action Required
- Run
uv lockand include the updateduv.lockin this PR. - Non-blocking: also consider updating the two remaining
ibis-hotdatamentions inREADME.md(title on line 1, and the sentence on line 61) for consistency with the new install name.
- README: update H1 title and Ibis Support Overview heading from ibis-hotdata to hotdata-ibis (missed in the original rename commit) - uv.lock: regenerate so uv sync --locked works with the new package name Co-Authored-By: Claude Sonnet 4.6 <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.
Summary
ibis-hotdata→hotdata-ibis)pyproject.tomlnamecorrected tohotdata-ibispublish.ymlenvironment URL updated topypi.org/p/hotdata-ibisimportlib.metadatalookups in__init__.pyandbackend.pyupdatedtest_version.pydist name updateduv.lockregenerated souv sync --lockedpassesThe Python import name (
ibis_hotdata) and Ibis backend entry-point key (hotdata) are unchanged.Test plan
pyproject.tomlnameishotdata-ibispypi.org/p/hotdata-ibis🤖 Generated with Claude Code