Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion agent_assembly/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import sys
from typing import TYPE_CHECKING, Any

__version__ = "0.0.0"
__version__ = "0.0.1a1"

# AAASM-1696: top-level exports are resolved lazily so that lightweight
# submodules (e.g. `agent_assembly.runtime`, which is stdlib-only) can be
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "agent-assembly"
version = "0.0.0"
version = "0.0.1a1"
description = "Python SDK for AI Agent Assembly - A governance-native runtime for AI agents"
authors = [{ name = "Agent Assembly Team", email = "team@agent-assembly.dev" }]
requires-python = ">=3.12,<4.0"
Expand Down
7 changes: 6 additions & 1 deletion test/unit/test_runtime_import_isolation.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,11 @@ def test_runtime_import_does_not_pull_in_httpx() -> None:


def test_top_level_package_import_does_not_pull_in_httpx() -> None:
# Import once in the test process so we know what `__version__` the
# subprocess should print. Avoids hard-coding the literal β€” pre-release
# bumps (e.g. AAASM-1933 β†’ `0.0.1a1`) used to break this test by drift.
import agent_assembly as _aa # noqa: PLC0415 β€” test-local import on purpose

result = _run_python_with_blocked_imports(
["httpx", "pydantic"],
"import agent_assembly\nprint(agent_assembly.__version__)\n",
Expand All @@ -66,7 +71,7 @@ def test_top_level_package_import_does_not_pull_in_httpx() -> None:
f"`import agent_assembly` must not eagerly import httpx/pydantic.\n"
f"stdout: {result.stdout}\nstderr: {result.stderr}"
)
assert result.stdout.strip() == "0.0.0"
assert result.stdout.strip() == _aa.__version__


def test_eager_attribute_access_still_resolves_through_lazy_loader() -> None:
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.