opentelemetry-instrumentation-aiopg 0.49b1__tar.gz → 0.50b0__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.
- {opentelemetry_instrumentation_aiopg-0.49b1 → opentelemetry_instrumentation_aiopg-0.50b0}/PKG-INFO +4 -5
- {opentelemetry_instrumentation_aiopg-0.49b1 → opentelemetry_instrumentation_aiopg-0.50b0}/pyproject.toml +2 -2
- {opentelemetry_instrumentation_aiopg-0.49b1 → opentelemetry_instrumentation_aiopg-0.50b0}/src/opentelemetry/instrumentation/aiopg/version.py +1 -1
- {opentelemetry_instrumentation_aiopg-0.49b1 → opentelemetry_instrumentation_aiopg-0.50b0}/tests/test_aiopg_integration.py +4 -4
- {opentelemetry_instrumentation_aiopg-0.49b1 → opentelemetry_instrumentation_aiopg-0.50b0}/.gitignore +0 -0
- {opentelemetry_instrumentation_aiopg-0.49b1 → opentelemetry_instrumentation_aiopg-0.50b0}/LICENSE +0 -0
- {opentelemetry_instrumentation_aiopg-0.49b1 → opentelemetry_instrumentation_aiopg-0.50b0}/README.rst +0 -0
- {opentelemetry_instrumentation_aiopg-0.49b1 → opentelemetry_instrumentation_aiopg-0.50b0}/src/opentelemetry/instrumentation/aiopg/__init__.py +0 -0
- {opentelemetry_instrumentation_aiopg-0.49b1 → opentelemetry_instrumentation_aiopg-0.50b0}/src/opentelemetry/instrumentation/aiopg/aiopg_integration.py +0 -0
- {opentelemetry_instrumentation_aiopg-0.49b1 → opentelemetry_instrumentation_aiopg-0.50b0}/src/opentelemetry/instrumentation/aiopg/package.py +0 -0
- {opentelemetry_instrumentation_aiopg-0.49b1 → opentelemetry_instrumentation_aiopg-0.50b0}/src/opentelemetry/instrumentation/aiopg/wrappers.py +0 -0
- {opentelemetry_instrumentation_aiopg-0.49b1 → opentelemetry_instrumentation_aiopg-0.50b0}/tests/__init__.py +0 -0
{opentelemetry_instrumentation_aiopg-0.49b1 → opentelemetry_instrumentation_aiopg-0.50b0}/PKG-INFO
RENAMED
@@ -1,11 +1,10 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: opentelemetry-instrumentation-aiopg
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.50b0
|
4
4
|
Summary: OpenTelemetry aiopg instrumentation
|
5
5
|
Project-URL: Homepage, https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-aiopg
|
6
6
|
Author-email: OpenTelemetry Authors <cncf-opentelemetry-contributors@lists.cncf.io>
|
7
|
-
License
|
8
|
-
License-File: LICENSE
|
7
|
+
License: Apache-2.0
|
9
8
|
Classifier: Development Status :: 4 - Beta
|
10
9
|
Classifier: Intended Audience :: Developers
|
11
10
|
Classifier: License :: OSI Approved :: Apache Software License
|
@@ -18,8 +17,8 @@ Classifier: Programming Language :: Python :: 3.11
|
|
18
17
|
Classifier: Programming Language :: Python :: 3.12
|
19
18
|
Requires-Python: >=3.8
|
20
19
|
Requires-Dist: opentelemetry-api~=1.12
|
21
|
-
Requires-Dist: opentelemetry-instrumentation-dbapi==0.
|
22
|
-
Requires-Dist: opentelemetry-instrumentation==0.
|
20
|
+
Requires-Dist: opentelemetry-instrumentation-dbapi==0.50b0
|
21
|
+
Requires-Dist: opentelemetry-instrumentation==0.50b0
|
23
22
|
Requires-Dist: wrapt<2.0.0,>=1.0.0
|
24
23
|
Provides-Extra: instruments
|
25
24
|
Requires-Dist: aiopg<2.0.0,>=0.13.0; extra == 'instruments'
|
@@ -26,8 +26,8 @@ classifiers = [
|
|
26
26
|
]
|
27
27
|
dependencies = [
|
28
28
|
"opentelemetry-api ~= 1.12",
|
29
|
-
"opentelemetry-instrumentation == 0.
|
30
|
-
"opentelemetry-instrumentation-dbapi == 0.
|
29
|
+
"opentelemetry-instrumentation == 0.50b0",
|
30
|
+
"opentelemetry-instrumentation-dbapi == 0.50b0",
|
31
31
|
"wrapt >= 1.0.0, < 2.0.0",
|
32
32
|
]
|
33
33
|
|
@@ -67,7 +67,7 @@ class TestAiopgInstrumentor(TestBase):
|
|
67
67
|
span = spans_list[0]
|
68
68
|
|
69
69
|
# Check version and name in span's instrumentation info
|
70
|
-
self.
|
70
|
+
self.assertEqualSpanInstrumentationScope(
|
71
71
|
span, opentelemetry.instrumentation.aiopg
|
72
72
|
)
|
73
73
|
|
@@ -96,7 +96,7 @@ class TestAiopgInstrumentor(TestBase):
|
|
96
96
|
span = spans_list[0]
|
97
97
|
|
98
98
|
# Check version and name in span's instrumentation info
|
99
|
-
self.
|
99
|
+
self.assertEqualSpanInstrumentationScope(
|
100
100
|
span, opentelemetry.instrumentation.aiopg
|
101
101
|
)
|
102
102
|
|
@@ -117,7 +117,7 @@ class TestAiopgInstrumentor(TestBase):
|
|
117
117
|
span = spans_list[0]
|
118
118
|
|
119
119
|
# Check version and name in span's instrumentation info
|
120
|
-
self.
|
120
|
+
self.assertEqualSpanInstrumentationScope(
|
121
121
|
span, opentelemetry.instrumentation.aiopg
|
122
122
|
)
|
123
123
|
|
@@ -148,7 +148,7 @@ class TestAiopgInstrumentor(TestBase):
|
|
148
148
|
span = spans_list[0]
|
149
149
|
|
150
150
|
# Check version and name in span's instrumentation info
|
151
|
-
self.
|
151
|
+
self.assertEqualSpanInstrumentationScope(
|
152
152
|
span, opentelemetry.instrumentation.aiopg
|
153
153
|
)
|
154
154
|
|
{opentelemetry_instrumentation_aiopg-0.49b1 → opentelemetry_instrumentation_aiopg-0.50b0}/.gitignore
RENAMED
File without changes
|
{opentelemetry_instrumentation_aiopg-0.49b1 → opentelemetry_instrumentation_aiopg-0.50b0}/LICENSE
RENAMED
File without changes
|
{opentelemetry_instrumentation_aiopg-0.49b1 → opentelemetry_instrumentation_aiopg-0.50b0}/README.rst
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|