opentelemetry-instrumentation-requests 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.
@@ -1,11 +1,10 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: opentelemetry-instrumentation-requests
3
- Version: 0.49b1
3
+ Version: 0.50b0
4
4
  Summary: OpenTelemetry requests instrumentation
5
5
  Project-URL: Homepage, https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-requests
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,9 +17,9 @@ 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==0.49b1
22
- Requires-Dist: opentelemetry-semantic-conventions==0.49b1
23
- Requires-Dist: opentelemetry-util-http==0.49b1
20
+ Requires-Dist: opentelemetry-instrumentation==0.50b0
21
+ Requires-Dist: opentelemetry-semantic-conventions==0.50b0
22
+ Requires-Dist: opentelemetry-util-http==0.50b0
24
23
  Provides-Extra: instruments
25
24
  Requires-Dist: requests~=2.0; extra == 'instruments'
26
25
  Description-Content-Type: text/x-rst
@@ -26,9 +26,9 @@ classifiers = [
26
26
  ]
27
27
  dependencies = [
28
28
  "opentelemetry-api ~= 1.12",
29
- "opentelemetry-instrumentation == 0.49b1",
30
- "opentelemetry-semantic-conventions == 0.49b1",
31
- "opentelemetry-util-http == 0.49b1",
29
+ "opentelemetry-instrumentation == 0.50b0",
30
+ "opentelemetry-semantic-conventions == 0.50b0",
31
+ "opentelemetry-util-http == 0.50b0",
32
32
  ]
33
33
 
34
34
  [project.optional-dependencies]
@@ -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"
@@ -166,7 +166,7 @@ class RequestsIntegrationTestBase(abc.ABC):
166
166
 
167
167
  self.assertIs(span.status.status_code, trace.StatusCode.UNSET)
168
168
 
169
- self.assertEqualSpanInstrumentationInfo(
169
+ self.assertEqualSpanInstrumentationScope(
170
170
  span, opentelemetry.instrumentation.requests
171
171
  )
172
172