Skip to content

Commit 9a0e2d4

Browse files
fix(ci): normalize package names to underscores for PyPI compliance (#730)
PyPI rejects sdist uploads with hyphenated filenames (PEP 625). Changed all 37 pyproject.toml name fields from hyphens to underscores (e.g., agent-governance-toolkit -> agent_governance_toolkit). PyPI treats these as equivalent package names. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 1b367b7 commit 9a0e2d4

File tree

37 files changed

+37
-37
lines changed

37 files changed

+37
-37
lines changed

packages/agent-compliance/pyproject.toml

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

55
[project]
6-
name = "agent-governance-toolkit"
6+
name = "agent_governance_toolkit"
77
version = "3.0.2"
88
description = "Public Preview — Unified installer and runtime policy enforcement for the Agent Governance Toolkit"
99
readme = "README.md"

packages/agent-hypervisor/pyproject.toml

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

55
[project]
6-
name = "agent-hypervisor"
6+
name = "agent_hypervisor"
77
version = "3.0.2"
88
description = "Public Preview — Agent Hypervisor: Runtime supervisor for multi-agent Shared Sessions with Execution Rings, Joint Liability, Saga Orchestration, and hash-chained audit trails"
99
readme = "README.md"

packages/agent-lightning/pyproject.toml

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

55
[project]
6-
name = "agentmesh-lightning"
6+
name = "agentmesh_lightning"
77
version = "3.0.2"
88
description = "Public Preview — Agent-Lightning RL integration for the Agent Governance Toolkit: governed training with policy enforcement"
99
readme = "README.md"

packages/agent-marketplace/pyproject.toml

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

55
[project]
6-
name = "agentmesh-marketplace"
6+
name = "agentmesh_marketplace"
77
version = "3.0.2"
88
description = "Plugin marketplace for the Agent Governance Toolkit — discover, install, verify, and manage plugins"
99
readme = "README.md"

packages/agent-mesh/packages/langchain-agentmesh/pyproject.toml

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

55
[project]
6-
name = "langchain-agentmesh"
6+
name = "langchain_agentmesh"
77
version = "3.0.2"
88
description = "AgentMesh trust layer integration for LangChain - cryptographic identity and trust verification for AI agents"
99
readme = "README.md"

packages/agent-mesh/packages/mcp-trust-server/pyproject.toml

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

55
[project]
6-
name = "mcp-trust-server"
6+
name = "mcp_trust_server"
77
version = "3.0.2"
88
description = "MCP server exposing AgentMesh trust management tools for Claude, GPT, and other AI agents"
99
readme = "README.md"

packages/agent-mesh/pyproject.toml

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

55
[project]
6-
name = "agentmesh-platform"
6+
name = "agentmesh_platform"
77
version = "3.0.2"
88
description = "Public Preview — The Secure Nervous System for Cloud-Native Agent Ecosystems - Identity, Trust, Reward, Governance"
99
readme = "README.md"

packages/agent-os/examples/carbon-auditor/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[project]
2-
name = "carbon-auditor-swarm"
2+
name = "carbon_auditor_swarm"
33
version = "3.0.2"
44
description = "Autonomous auditing system for the Voluntary Carbon Market (VCM)"
55
readme = "README.md"

packages/agent-os/examples/defi-sentinel/pyproject.toml

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

55
[project]
6-
name = "defi-sentinel-demo"
6+
name = "defi_sentinel_demo"
77
version = "3.0.2"
88
description = "DeFi Risk Sentinel demo using Agent OS"
99
requires-python = ">=3.10"

packages/agent-os/examples/grid-balancing/pyproject.toml

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

55
[project]
6-
name = "grid-balancing-demo"
6+
name = "grid_balancing_demo"
77
version = "3.0.2"
88
description = "Autonomous energy trading demo using Agent OS"
99
requires-python = ">=3.10"

0 commit comments

Comments
 (0)