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.
Files changed (12) hide show
  1. {opentelemetry_instrumentation_aiopg-0.49b1 → opentelemetry_instrumentation_aiopg-0.50b0}/PKG-INFO +4 -5
  2. {opentelemetry_instrumentation_aiopg-0.49b1 → opentelemetry_instrumentation_aiopg-0.50b0}/pyproject.toml +2 -2
  3. {opentelemetry_instrumentation_aiopg-0.49b1 → opentelemetry_instrumentation_aiopg-0.50b0}/src/opentelemetry/instrumentation/aiopg/version.py +1 -1
  4. {opentelemetry_instrumentation_aiopg-0.49b1 → opentelemetry_instrumentation_aiopg-0.50b0}/tests/test_aiopg_integration.py +4 -4
  5. {opentelemetry_instrumentation_aiopg-0.49b1 → opentelemetry_instrumentation_aiopg-0.50b0}/.gitignore +0 -0
  6. {opentelemetry_instrumentation_aiopg-0.49b1 → opentelemetry_instrumentation_aiopg-0.50b0}/LICENSE +0 -0
  7. {opentelemetry_instrumentation_aiopg-0.49b1 → opentelemetry_instrumentation_aiopg-0.50b0}/README.rst +0 -0
  8. {opentelemetry_instrumentation_aiopg-0.49b1 → opentelemetry_instrumentation_aiopg-0.50b0}/src/opentelemetry/instrumentation/aiopg/__init__.py +0 -0
  9. {opentelemetry_instrumentation_aiopg-0.49b1 → opentelemetry_instrumentation_aiopg-0.50b0}/src/opentelemetry/instrumentation/aiopg/aiopg_integration.py +0 -0
  10. {opentelemetry_instrumentation_aiopg-0.49b1 → opentelemetry_instrumentation_aiopg-0.50b0}/src/opentelemetry/instrumentation/aiopg/package.py +0 -0
  11. {opentelemetry_instrumentation_aiopg-0.49b1 → opentelemetry_instrumentation_aiopg-0.50b0}/src/opentelemetry/instrumentation/aiopg/wrappers.py +0 -0
  12. {opentelemetry_instrumentation_aiopg-0.49b1 → opentelemetry_instrumentation_aiopg-0.50b0}/tests/__init__.py +0 -0
@@ -1,11 +1,10 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: opentelemetry-instrumentation-aiopg
3
- Version: 0.49b1
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-Expression: Apache-2.0
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.49b1
22
- Requires-Dist: opentelemetry-instrumentation==0.49b1
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.49b1",
30
- "opentelemetry-instrumentation-dbapi == 0.49b1",
29
+ "opentelemetry-instrumentation == 0.50b0",
30
+ "opentelemetry-instrumentation-dbapi == 0.50b0",
31
31
  "wrapt >= 1.0.0, < 2.0.0",
32
32
  ]
33
33
 
@@ -12,4 +12,4 @@
12
12
  # See the License for the specific language governing permissions and
13
13
  # limitations under the License.
14
14
 
15
- __version__ = "0.49b1"
15
+ __version__ = "0.50b0"
@@ -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.assertEqualSpanInstrumentationInfo(
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.assertEqualSpanInstrumentationInfo(
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.assertEqualSpanInstrumentationInfo(
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.assertEqualSpanInstrumentationInfo(
151
+ self.assertEqualSpanInstrumentationScope(
152
152
  span, opentelemetry.instrumentation.aiopg
153
153
  )
154
154