Skip to content

Commit 06d93d2

Browse files
committed
fix: Update pyproject.toml for instrumentation-loongsuite packages
Change-Id: If6c5fe8b0c0a1e508cec96e6254c5143db69b323 Co-developed-by: Cursor <[email protected]>
1 parent f2f79a2 commit 06d93d2

File tree

5 files changed

+20
-23
lines changed

5 files changed

+20
-23
lines changed

instrumentation-loongsuite/loongsuite-instrumentation-agentscope/pyproject.toml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,29 +8,26 @@ dynamic = ["version"]
88
description = "OpenTelemetry AgentScope Instrumentation"
99
readme = "README.md"
1010
license = "Apache-2.0"
11-
requires-python = ">=3.8, <3.13"
11+
requires-python = ">=3.9"
1212
authors = [
13-
{ name = "LoongSuite Python Agent Authros", email = "[email protected]" },
13+
{ name = "LoongSuite Python Agent Authors", email = "[email protected]" },
1414
]
1515
classifiers = [
1616
"Development Status :: 5 - Production/Stable",
1717
"Intended Audience :: Developers",
1818
"License :: OSI Approved :: Apache Software License",
1919
"Programming Language :: Python",
2020
"Programming Language :: Python :: 3",
21-
"Programming Language :: Python :: 3.8",
2221
"Programming Language :: Python :: 3.9",
2322
"Programming Language :: Python :: 3.10",
2423
"Programming Language :: Python :: 3.11",
2524
"Programming Language :: Python :: 3.12",
2625
"Programming Language :: Python :: 3.13",
2726
]
2827
dependencies = [
29-
"opentelemetry-api>=1.37.0",
30-
"opentelemetry-instrumentation>=0.57b0",
31-
"opentelemetry-sdk>=1.37.0",
32-
"opentelemetry-semantic-conventions>=0.58b0",
33-
"wrapt",
28+
"opentelemetry-api ~= 1.37",
29+
"opentelemetry-instrumentation ~= 0.58b0",
30+
"opentelemetry-semantic-conventions ~= 0.58b0",
3431
]
3532

3633
[project.optional-dependencies]

instrumentation-loongsuite/loongsuite-instrumentation-agno/pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ dynamic = ["version"]
88
description = "OpenTelemetry Agno Instrumentation"
99
readme = "README.md"
1010
license = "Apache-2.0"
11-
requires-python = ">=3.8, <3.13"
11+
requires-python = ">=3.9"
1212
authors = [
1313
{ name = "LoongSuite Python Agent Authors", email = "[email protected]" },
1414
]
@@ -18,16 +18,16 @@ classifiers = [
1818
"License :: OSI Approved :: Apache Software License",
1919
"Programming Language :: Python",
2020
"Programming Language :: Python :: 3",
21-
"Programming Language :: Python :: 3.8",
2221
"Programming Language :: Python :: 3.9",
2322
"Programming Language :: Python :: 3.10",
2423
"Programming Language :: Python :: 3.11",
2524
"Programming Language :: Python :: 3.12",
2625
"Programming Language :: Python :: 3.13",
2726
]
2827
dependencies = [
29-
"opentelemetry-instrumentation>=0.57b0",
30-
"wrapt",
28+
"opentelemetry-api ~= 1.37",
29+
"opentelemetry-instrumentation ~= 0.58b0",
30+
"opentelemetry-semantic-conventions ~= 0.58b0",
3131
]
3232

3333
[project.optional-dependencies]

instrumentation-loongsuite/loongsuite-instrumentation-dify/pyproject.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ dynamic = ["version"]
88
description = "OpenTelemetry Dify Instrumentation"
99
readme = "README.md"
1010
license = "Apache-2.0"
11-
requires-python = ">=3.8, <3.13"
11+
requires-python = ">=3.9"
1212
authors = [
1313
{ name = "LoongSuite Python Agent Authors", email = "" },
1414
]
@@ -18,15 +18,16 @@ classifiers = [
1818
"License :: OSI Approved :: Apache Software License",
1919
"Programming Language :: Python",
2020
"Programming Language :: Python :: 3",
21-
"Programming Language :: Python :: 3.8",
2221
"Programming Language :: Python :: 3.9",
2322
"Programming Language :: Python :: 3.10",
2423
"Programming Language :: Python :: 3.11",
2524
"Programming Language :: Python :: 3.12",
2625
"Programming Language :: Python :: 3.13",
2726
]
2827
dependencies = [
29-
"wrapt",
28+
"opentelemetry-api ~= 1.37",
29+
"opentelemetry-instrumentation ~= 0.58b0",
30+
"opentelemetry-semantic-conventions ~= 0.58b0",
3031
]
3132

3233
[project.optional-dependencies]

instrumentation-loongsuite/loongsuite-instrumentation-langchain/pyproject.toml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ dynamic = ["version"]
88
description = "OpenTelemetry LangChain Instrumentation"
99
readme = "README.md"
1010
license = "Apache-2.0"
11-
requires-python = ">=3.8, <3.13"
11+
requires-python = ">=3.9"
1212
authors = [
1313
{ name = "LoongSuite Python Agent Authors", email = "" },
1414
]
@@ -18,18 +18,16 @@ classifiers = [
1818
"License :: OSI Approved :: Apache Software License",
1919
"Programming Language :: Python",
2020
"Programming Language :: Python :: 3",
21-
"Programming Language :: Python :: 3.8",
2221
"Programming Language :: Python :: 3.9",
2322
"Programming Language :: Python :: 3.10",
2423
"Programming Language :: Python :: 3.11",
2524
"Programming Language :: Python :: 3.12",
2625
"Programming Language :: Python :: 3.13",
2726
]
2827
dependencies = [
29-
"wrapt",
30-
"opentelemetry-api",
31-
"opentelemetry-instrumentation",
32-
"opentelemetry-semantic-conventions",
28+
"opentelemetry-api ~= 1.37",
29+
"opentelemetry-instrumentation ~= 0.58b0",
30+
"opentelemetry-semantic-conventions ~= 0.58b0",
3331
]
3432

3533
[project.optional-dependencies]

instrumentation-loongsuite/loongsuite-instrumentation-mcp/pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,9 @@ classifiers = [
2424
"Programming Language :: Python :: 3.13",
2525
]
2626
dependencies = [
27-
# "opentelemetry-api <= 1.35.0",
28-
"wrapt",
27+
"opentelemetry-api ~= 1.37",
28+
"opentelemetry-instrumentation ~= 0.58b0",
29+
"opentelemetry-semantic-conventions ~= 0.58b0",
2930
]
3031

3132
[project.optional-dependencies]

0 commit comments

Comments
 (0)