Skip to content

Commit c6b47f9

Browse files
committed
Fix License attribute on Toml Files
1 parent 41c5263 commit c6b47f9

File tree

17 files changed

+33
-24
lines changed

17 files changed

+33
-24
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
- id: check_python_sdk
6868
name: Check Python SDK changes
6969
run: |
70-
if git diff --name-only "${{ steps.git_refs.outputs.base }}" "${{ steps.git_refs.outputs.head }}" -- 'python/**' | grep -q .; then
70+
if git diff --name-only "${{ steps.git_refs.outputs.base }}" "${{ steps.git_refs.outputs.head }}" -- 'libraries/**' 'setup.py' 'pyproject.toml' 'versioning/**' | grep -q .; then
7171
echo "Python SDK changes detected"
7272
echo "changed=true" >> $GITHUB_OUTPUT
7373
else

libraries/microsoft-agents-a365-notifications/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ classifiers = [
2323
"Topic :: Communications",
2424
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
2525
]
26-
license = "MIT"
26+
license = {text = "MIT"}
2727
keywords = ["notifications", "messaging", "agents", "ai", "routing", "sdk"]
2828
dependencies = [
2929
"typing-extensions >= 4.0.0",

libraries/microsoft-agents-a365-observability-core/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ classifiers = [
2222
"Topic :: Scientific/Engineering :: Artificial Intelligence",
2323
"Topic :: System :: Monitoring",
2424
]
25-
license = "MIT"
25+
license = {text = "MIT"}
2626
keywords = ["observability", "telemetry", "tracing", "opentelemetry", "monitoring", "ai", "agents"]
2727
dependencies = [
2828
"opentelemetry-api >= 1.36.0",
2929
"opentelemetry-sdk >= 1.36.0",
3030
"opentelemetry-exporter-otlp >= 1.36.0",
3131
"pydantic >= 2.0.0",
3232
"typing-extensions >= 4.0.0",
33-
"microsoft-agents-a365-runtime >= 2025.10.16"
33+
"microsoft-agents-a365-runtime >= 0.1.0"
3434
]
3535

3636
[project.urls]

libraries/microsoft-agents-a365-observability-extensions-langchain/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ Check out these working examples:
125125

126126
- **Python**: 3.11+
127127
- **Dependencies**:
128-
- `microsoft-agents-a365-observability-core >= 2025.10.16`
128+
- `microsoft-agents-a365-observability-core >= 0.1.0`
129129
- `langchain >= 0.1.0`
130130
- `langchain-core >= 0.1.0`
131131
- `opentelemetry-api >= 1.20.0`

libraries/microsoft-agents-a365-observability-extensions-langchain/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ classifiers = [
2222
"Topic :: Scientific/Engineering :: Artificial Intelligence",
2323
"Topic :: System :: Monitoring",
2424
]
25-
license = "MIT"
25+
license = {text = "MIT"}
2626
keywords = ["observability", "telemetry", "tracing", "opentelemetry", "langchain", "agents", "ai"]
2727
dependencies = [
28-
"microsoft-agents-a365-observability-core >= 2025.10.16",
28+
"microsoft-agents-a365-observability-core >= 0.1.0",
2929
"langchain >= 0.1.0",
3030
"langchain-core >= 0.1.0",
3131
"opentelemetry-api >= 1.36.0",

libraries/microsoft-agents-a365-observability-extensions-openai/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ Check out these working examples:
127127

128128
- **Python**: 3.11+
129129
- **Dependencies**:
130-
- `microsoft-agents-a365-observability-core >= 2025.10.16`
130+
- `microsoft-agents-a365-observability-core >= 0.1.0`
131131
- `openai-agents >= 0.2.6`
132132
- `opentelemetry-api >= 1.20.0`
133133
- `opentelemetry-sdk >= 1.20.0`

libraries/microsoft-agents-a365-observability-extensions-openai/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ classifiers = [
2222
"Topic :: Scientific/Engineering :: Artificial Intelligence",
2323
"Topic :: System :: Monitoring",
2424
]
25-
license = "MIT"
25+
license = {text = "MIT"}
2626
keywords = ["observability", "telemetry", "tracing", "opentelemetry", "openai", "agents", "ai"]
2727
dependencies = [
28-
"microsoft-agents-a365-observability-core >= 2025.10.16",
28+
"microsoft-agents-a365-observability-core >= 0.1.0",
2929
"openai-agents >= 0.2.6",
3030
"opentelemetry-api >= 1.36.0",
3131
"opentelemetry-sdk >= 1.36.0",

libraries/microsoft-agents-a365-observability-extensions-semantickernel/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ Check out these working examples:
129129

130130
- **Python**: 3.11+
131131
- **Dependencies**:
132-
- `microsoft-agents-a365-observability-core >= 2025.10.16`
132+
- `microsoft-agents-a365-observability-core >= 0.1.0`
133133
- `semantic-kernel >= 1.0.0`
134134
- `opentelemetry-api >= 1.20.0`
135135
- `opentelemetry-sdk >= 1.20.0`

libraries/microsoft-agents-a365-observability-extensions-semantickernel/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ classifiers = [
2222
"Topic :: Scientific/Engineering :: Artificial Intelligence",
2323
"Topic :: System :: Monitoring",
2424
]
25-
license = "MIT"
25+
license = {text = "MIT"}
2626
keywords = ["observability", "telemetry", "tracing", "opentelemetry", "semantic-kernel", "agents", "ai"]
2727
dependencies = [
28-
"microsoft-agents-a365-observability-core >= 2025.10.16",
28+
"microsoft-agents-a365-observability-core >= 0.1.0",
2929
"semantic-kernel >= 1.0.0",
3030
"opentelemetry-api >= 1.36.0",
3131
"opentelemetry-sdk >= 1.36.0",

libraries/microsoft-agents-a365-runtime/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ classifiers = [
2222
"Topic :: Scientific/Engineering :: Artificial Intelligence",
2323
"Topic :: System :: Monitoring",
2424
]
25-
license = "MIT"
25+
license = {text = "MIT"}
2626
keywords = ["observability", "telemetry", "tracing", "opentelemetry", "monitoring", "ai", "agents"]
2727
dependencies = [
2828
]

0 commit comments

Comments
 (0)