Skip to content

Commit 91ec496

Browse files
eddietejedaclaude
andauthored
fix: rename PyPI package from ibis-hotdata to hotdata-ibis (#7)
* fix: rename PyPI package from ibis-hotdata to hotdata-ibis 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> * fix: update README title/description and regenerate lockfile for rename - 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> --------- Co-authored-by: Eddie A Tejeda <669988+eddietejeda@users.noreply.github.com> Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 789c4f5 commit 91ec496

7 files changed

Lines changed: 50 additions & 50 deletions

File tree

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
runs-on: ubuntu-latest
5858
environment:
5959
name: pypi
60-
url: https://pypi.org/p/ibis-hotdata
60+
url: https://pypi.org/p/hotdata-ibis
6161
permissions:
6262
id-token: write
6363
steps:

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# ibis-hotdata
1+
# hotdata-ibis
22

33
Experimental [Ibis](https://ibis-project.org/) backend for [Hotdata](https://www.hotdata.dev/docs/api-reference): compile expressions with Ibis, run federated SQL over the Hotdata API. REST calls use the official **[hotdata](https://github.com/hotdata-dev/sdk-python)** Python SDK. Repo examples use **httpx** (listed under the **dev** dependency group).
44

@@ -7,8 +7,8 @@ Experimental [Ibis](https://ibis-project.org/) backend for [Hotdata](https://www
77
## Install
88

99
```bash
10-
uv pip install ibis-hotdata
11-
# or: python -m pip install ibis-hotdata
10+
uv pip install hotdata-ibis
11+
# or: python -m pip install hotdata-ibis
1212
```
1313

1414
## Features
@@ -58,7 +58,7 @@ con = ibis.connect(
5858

5959
## Ibis Support Overview
6060

61-
`ibis-hotdata` is a read-oriented SQL backend. It is useful for exploring Hotdata workspaces with Ibis expressions, running federated SQL, and materializing results locally, but it is not a full mutable database backend.
61+
`hotdata-ibis` is a read-oriented SQL backend. It is useful for exploring Hotdata workspaces with Ibis expressions, running federated SQL, and materializing results locally, but it is not a full mutable database backend.
6262

6363
Supported today:
6464

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ requires = ["setuptools>=61", "wheel"]
33
build-backend = "setuptools.build_meta"
44

55
[project]
6-
name = "ibis-hotdata"
6+
name = "hotdata-ibis"
77
version = "0.1.0"
88
description = "Ibis backend for Hotdata federated SQL API (depends on the hotdata SDK only; not hotdata-runtime)"
99
readme = "README.md"

src/ibis_hotdata/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from importlib.metadata import PackageNotFoundError, version
22

33
try:
4-
__version__ = version("ibis-hotdata")
4+
__version__ = version("hotdata-ibis")
55
except PackageNotFoundError:
66
__version__ = "0.0.0+unknown"
77

src/ibis_hotdata/backend.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -667,7 +667,7 @@ def _register_in_memory_table(self, _op: ops.InMemoryTable) -> None:
667667
@cached_property
668668
def version(self) -> str:
669669
try:
670-
v = pkg_version("ibis-hotdata")
670+
v = pkg_version("hotdata-ibis")
671671
except PackageNotFoundError:
672672
v = "0.0.0"
673-
return f"ibis-hotdata {v} (Hotdata /v1/query)"
673+
return f"hotdata-ibis {v} (Hotdata /v1/query)"

tests/test_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ def test_version_is_pep440_core():
1010

1111

1212
def test_version_matches_distribution_metadata():
13-
assert dist_version("ibis-hotdata") == ibis_hotdata.__version__
13+
assert dist_version("hotdata-ibis") == ibis_hotdata.__version__

uv.lock

Lines changed: 40 additions & 40 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)