Skip to content

Commit e1a4ca8

Browse files
fix: correct author email in agent-compliance and agent-sre pyproject.toml
agent-compliance had malformed email 'imran@github.com/microsoft/agent-governance-toolkit' which caused PyPI upload to reject with 400 Bad Request. agent-sre was missing email field. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 2bb2165 commit e1a4ca8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/agent-compliance/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ readme = "README.md"
1010
license = {text = "MIT"}
1111
requires-python = ">=3.9"
1212
authors = [
13-
{name = "Imran Siddique", email = "imran@github.com/microsoft/agent-governance-toolkit"}
13+
{name = "Imran Siddique", email = "agt@microsoft.com"}
1414
]
1515
keywords = [
1616
"ai-agents", "governance", "multi-agent", "trust", "security",

packages/agent-sre/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ readme = "README.md"
1010
license = "MIT"
1111
requires-python = ">=3.10"
1212
authors = [
13-
{ name = "Imran Siddique" },
13+
{ name = "Imran Siddique", email = "agt@microsoft.com" },
1414
]
1515
keywords = ["ai", "agents", "sre", "reliability", "observability", "slo"]
1616
classifiers = [

0 commit comments

Comments
 (0)