microsoft-agents-a365-runtime 0.2.1.dev9__tar.gz → 0.2.1.dev13__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {microsoft_agents_a365_runtime-0.2.1.dev9 → microsoft_agents_a365_runtime-0.2.1.dev13}/PKG-INFO +9 -9
- {microsoft_agents_a365_runtime-0.2.1.dev9 → microsoft_agents_a365_runtime-0.2.1.dev13}/microsoft_agents_a365_runtime.egg-info/PKG-INFO +9 -9
- microsoft_agents_a365_runtime-0.2.1.dev13/microsoft_agents_a365_runtime.egg-info/requires.txt +12 -0
- {microsoft_agents_a365_runtime-0.2.1.dev9 → microsoft_agents_a365_runtime-0.2.1.dev13}/pyproject.toml +8 -8
- {microsoft_agents_a365_runtime-0.2.1.dev9 → microsoft_agents_a365_runtime-0.2.1.dev13}/setup.py +5 -6
- microsoft_agents_a365_runtime-0.2.1.dev9/microsoft_agents_a365_runtime.egg-info/requires.txt +0 -12
- {microsoft_agents_a365_runtime-0.2.1.dev9 → microsoft_agents_a365_runtime-0.2.1.dev13}/README.md +0 -0
- {microsoft_agents_a365_runtime-0.2.1.dev9 → microsoft_agents_a365_runtime-0.2.1.dev13}/microsoft_agents_a365/runtime/__init__.py +0 -0
- {microsoft_agents_a365_runtime-0.2.1.dev9 → microsoft_agents_a365_runtime-0.2.1.dev13}/microsoft_agents_a365/runtime/environment_utils.py +0 -0
- {microsoft_agents_a365_runtime-0.2.1.dev9 → microsoft_agents_a365_runtime-0.2.1.dev13}/microsoft_agents_a365/runtime/operation_error.py +0 -0
- {microsoft_agents_a365_runtime-0.2.1.dev9 → microsoft_agents_a365_runtime-0.2.1.dev13}/microsoft_agents_a365/runtime/operation_result.py +0 -0
- {microsoft_agents_a365_runtime-0.2.1.dev9 → microsoft_agents_a365_runtime-0.2.1.dev13}/microsoft_agents_a365/runtime/power_platform_api_discovery.py +0 -0
- {microsoft_agents_a365_runtime-0.2.1.dev9 → microsoft_agents_a365_runtime-0.2.1.dev13}/microsoft_agents_a365/runtime/utility.py +0 -0
- {microsoft_agents_a365_runtime-0.2.1.dev9 → microsoft_agents_a365_runtime-0.2.1.dev13}/microsoft_agents_a365/runtime/version_utils.py +0 -0
- {microsoft_agents_a365_runtime-0.2.1.dev9 → microsoft_agents_a365_runtime-0.2.1.dev13}/microsoft_agents_a365_runtime.egg-info/SOURCES.txt +0 -0
- {microsoft_agents_a365_runtime-0.2.1.dev9 → microsoft_agents_a365_runtime-0.2.1.dev13}/microsoft_agents_a365_runtime.egg-info/dependency_links.txt +0 -0
- {microsoft_agents_a365_runtime-0.2.1.dev9 → microsoft_agents_a365_runtime-0.2.1.dev13}/microsoft_agents_a365_runtime.egg-info/top_level.txt +0 -0
- {microsoft_agents_a365_runtime-0.2.1.dev9 → microsoft_agents_a365_runtime-0.2.1.dev13}/setup.cfg +0 -0
{microsoft_agents_a365_runtime-0.2.1.dev9 → microsoft_agents_a365_runtime-0.2.1.dev13}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: microsoft-agents-a365-runtime
|
|
3
|
-
Version: 0.2.1.
|
|
3
|
+
Version: 0.2.1.dev13
|
|
4
4
|
Summary: Telemetry, tracing, and monitoring components for AI agents
|
|
5
5
|
Author-email: Microsoft <support@microsoft.com>
|
|
6
6
|
License: MIT
|
|
@@ -20,16 +20,16 @@ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
|
20
20
|
Classifier: Topic :: System :: Monitoring
|
|
21
21
|
Requires-Python: >=3.11
|
|
22
22
|
Description-Content-Type: text/markdown
|
|
23
|
-
Requires-Dist: PyJWT
|
|
23
|
+
Requires-Dist: PyJWT
|
|
24
24
|
Provides-Extra: dev
|
|
25
|
-
Requires-Dist: pytest
|
|
26
|
-
Requires-Dist: pytest-asyncio
|
|
27
|
-
Requires-Dist: ruff
|
|
28
|
-
Requires-Dist: black
|
|
29
|
-
Requires-Dist: mypy
|
|
25
|
+
Requires-Dist: pytest; extra == "dev"
|
|
26
|
+
Requires-Dist: pytest-asyncio; extra == "dev"
|
|
27
|
+
Requires-Dist: ruff; extra == "dev"
|
|
28
|
+
Requires-Dist: black; extra == "dev"
|
|
29
|
+
Requires-Dist: mypy; extra == "dev"
|
|
30
30
|
Provides-Extra: test
|
|
31
|
-
Requires-Dist: pytest
|
|
32
|
-
Requires-Dist: pytest-asyncio
|
|
31
|
+
Requires-Dist: pytest; extra == "test"
|
|
32
|
+
Requires-Dist: pytest-asyncio; extra == "test"
|
|
33
33
|
|
|
34
34
|
# microsoft-agents-a365-runtime
|
|
35
35
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: microsoft-agents-a365-runtime
|
|
3
|
-
Version: 0.2.1.
|
|
3
|
+
Version: 0.2.1.dev13
|
|
4
4
|
Summary: Telemetry, tracing, and monitoring components for AI agents
|
|
5
5
|
Author-email: Microsoft <support@microsoft.com>
|
|
6
6
|
License: MIT
|
|
@@ -20,16 +20,16 @@ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
|
20
20
|
Classifier: Topic :: System :: Monitoring
|
|
21
21
|
Requires-Python: >=3.11
|
|
22
22
|
Description-Content-Type: text/markdown
|
|
23
|
-
Requires-Dist: PyJWT
|
|
23
|
+
Requires-Dist: PyJWT
|
|
24
24
|
Provides-Extra: dev
|
|
25
|
-
Requires-Dist: pytest
|
|
26
|
-
Requires-Dist: pytest-asyncio
|
|
27
|
-
Requires-Dist: ruff
|
|
28
|
-
Requires-Dist: black
|
|
29
|
-
Requires-Dist: mypy
|
|
25
|
+
Requires-Dist: pytest; extra == "dev"
|
|
26
|
+
Requires-Dist: pytest-asyncio; extra == "dev"
|
|
27
|
+
Requires-Dist: ruff; extra == "dev"
|
|
28
|
+
Requires-Dist: black; extra == "dev"
|
|
29
|
+
Requires-Dist: mypy; extra == "dev"
|
|
30
30
|
Provides-Extra: test
|
|
31
|
-
Requires-Dist: pytest
|
|
32
|
-
Requires-Dist: pytest-asyncio
|
|
31
|
+
Requires-Dist: pytest; extra == "test"
|
|
32
|
+
Requires-Dist: pytest-asyncio; extra == "test"
|
|
33
33
|
|
|
34
34
|
# microsoft-agents-a365-runtime
|
|
35
35
|
|
|
@@ -25,7 +25,7 @@ classifiers = [
|
|
|
25
25
|
license = {text = "MIT"}
|
|
26
26
|
keywords = ["observability", "telemetry", "tracing", "opentelemetry", "monitoring", "ai", "agents"]
|
|
27
27
|
dependencies = [
|
|
28
|
-
"PyJWT
|
|
28
|
+
"PyJWT",
|
|
29
29
|
]
|
|
30
30
|
|
|
31
31
|
[project.urls]
|
|
@@ -36,15 +36,15 @@ Documentation = "https://github.com/microsoft/Agent365-python/tree/main/librarie
|
|
|
36
36
|
|
|
37
37
|
[project.optional-dependencies]
|
|
38
38
|
dev = [
|
|
39
|
-
"pytest
|
|
40
|
-
"pytest-asyncio
|
|
41
|
-
"ruff
|
|
42
|
-
"black
|
|
43
|
-
"mypy
|
|
39
|
+
"pytest",
|
|
40
|
+
"pytest-asyncio",
|
|
41
|
+
"ruff",
|
|
42
|
+
"black",
|
|
43
|
+
"mypy",
|
|
44
44
|
]
|
|
45
45
|
test = [
|
|
46
|
-
"pytest
|
|
47
|
-
"pytest-asyncio
|
|
46
|
+
"pytest",
|
|
47
|
+
"pytest-asyncio",
|
|
48
48
|
]
|
|
49
49
|
|
|
50
50
|
[tool.setuptools.packages.find]
|
{microsoft_agents_a365_runtime-0.2.1.dev9 → microsoft_agents_a365_runtime-0.2.1.dev13}/setup.py
RENAMED
|
@@ -15,14 +15,13 @@ sys.path.insert(0, str(helper_path))
|
|
|
15
15
|
|
|
16
16
|
from setup_utils import get_dynamic_dependencies # noqa: E402
|
|
17
17
|
|
|
18
|
-
# Use
|
|
19
|
-
# - Internal packages get:
|
|
20
|
-
# -
|
|
21
|
-
# -
|
|
18
|
+
# Use exact version matching for internal dependencies:
|
|
19
|
+
# - Internal packages get: == current_version (e.g., == 1.2.3)
|
|
20
|
+
# - Ensures all SDK packages must be at the same version
|
|
21
|
+
# - Prevents incompatibility issues from version mismatches
|
|
22
22
|
setup(
|
|
23
23
|
version=package_version,
|
|
24
24
|
install_requires=get_dynamic_dependencies(
|
|
25
|
-
|
|
26
|
-
use_exact_match=False, # Not exact match
|
|
25
|
+
use_exact_match=True,
|
|
27
26
|
),
|
|
28
27
|
)
|
{microsoft_agents_a365_runtime-0.2.1.dev9 → microsoft_agents_a365_runtime-0.2.1.dev13}/README.md
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{microsoft_agents_a365_runtime-0.2.1.dev9 → microsoft_agents_a365_runtime-0.2.1.dev13}/setup.cfg
RENAMED
|
File without changes
|