Skip to content

Commit 828e6da

Browse files
committed
chore: bump tangle-cli version to 0.1.0
Assisted-By: devx/f5505a8e-b863-4860-8951-135c4c748c11
1 parent a862721 commit 828e6da

5 files changed

Lines changed: 7 additions & 6 deletions

File tree

packages/tangle-api/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ authors = [
1010
requires-python = ">=3.10"
1111
dependencies = [
1212
"pydantic>=2.0",
13-
"tangle-cli==0.0.1",
13+
"tangle-cli==0.1.0",
1414
]
1515

1616
[build-system]

packages/tangle-cli/src/tangle_cli/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@
1414
try:
1515
__version__ = metadata_version("tangle-cli")
1616
except PackageNotFoundError:
17-
__version__ = "0.0.1"
17+
__version__ = "0.1.0"
1818

1919
__all__ = ["TangleDynamicDiscoveryClient", "__version__"]

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "tangle-cli"
3-
version = "0.0.1"
3+
version = "0.1.0"
44
description = "CLI for Tangle, the open-source ML pipeline orchestration platform"
55
readme = "README.md"
66
authors = [

tests/test_packaging.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,8 @@ def test_tangle_cli_wheel_imports_without_native_tangle_api(tmp_path) -> None:
105105

106106
with zipfile.ZipFile(wheel) as archive:
107107
names = archive.namelist()
108-
metadata = archive.read("tangle_cli-0.0.1.dist-info/METADATA").decode()
108+
metadata_name = next(name for name in names if name.endswith(".dist-info/METADATA"))
109+
metadata = archive.read(metadata_name).decode()
109110

110111
requires_dist = [line for line in metadata.splitlines() if line.startswith("Requires-Dist: ")]
111112
assert not any(name.startswith("tangle_api/") for name in names)

uv.lock

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

0 commit comments

Comments
 (0)