Skip to content

Commit ede205f

Browse files
author
DB Lee
committed
Rename PyPI distribution to agentops-accelerator
Atomic two-line change coupling pyproject.toml [project].name with the importlib.metadata.version() lookup that reads it. Decoupling these would silently fall back to __version__ = '0.0.0-dev' (PackageNotFoundError -> fallback in src/agentops/__init__.py lines 5-8). Commit 1 of PR-2 in the 3-PR rebrand strategy for #181. Target release: v0.3.0 (minor bump signals user-visible migration). Subsequent commits in this PR will sweep install hints, workflows, scripts, plugin manifests, templates, README (PyPI long description), CHANGELOG, and targeted tests. PR-3 will publish tombstone packages pinning agentops-accelerator>=0.3.0. Note for existing developers: after pulling, run rm -rf src/agentops_toolkit.egg-info && uv pip install -e . to refresh editable-install metadata. CI is unaffected (fresh installs). Refs #181.
1 parent 711b0a0 commit ede205f

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

pyproject.toml

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

55
[project]
6-
name = "agentops-toolkit"
6+
name = "agentops-accelerator"
77
dynamic = ["version"]
88
description = "Release readiness gates and evidence for Microsoft Foundry agents"
99
readme = "README.md"

src/agentops/__init__.py

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

55
try:
6-
__version__ = version("agentops-toolkit")
6+
__version__ = version("agentops-accelerator")
77
except PackageNotFoundError:
88
__version__ = "0.0.0-dev"
99

0 commit comments

Comments
 (0)