File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
src/opentelemetry/_logs/_internal Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -7,12 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## Unreleased
9
9
10
+ - Drop ` setuptools ` runtime requirement.
11
+ ([ #3372 ] ( https://github.com/open-telemetry/opentelemetry-python/pull/3372 ) )
10
12
- Update the body type in the log
11
13
([ $3343] ( https://github.com/open-telemetry/opentelemetry-python/pull/3343 ) )
12
14
- Add max_scale option to Exponential Bucket Histogram Aggregation
13
15
([ #3323 ] ( https://github.com/open-telemetry/opentelemetry-python/pull/3323 ) )
14
16
- Use BoundedAttributes instead of raw dict to extract attributes from LogRecord
15
- ([ #3310 ] ( https://github.com/open-telemetry/opentelemetry-python/pull/3310 ) )
17
+ ([ #3310 ] ( https://github.com/open-telemetry/opentelemetry-python/pull/3310 ) )
16
18
- Support dropped_attributes_count in LogRecord and exporters
17
19
([ #3351 ] ( https://github.com/open-telemetry/opentelemetry-python/pull/3351 ) )
18
20
- Add unit to view instrument selection criteria
Original file line number Diff line number Diff line change @@ -26,7 +26,6 @@ classifiers = [
26
26
]
27
27
dependencies = [
28
28
" Deprecated >= 1.2.6" ,
29
- " setuptools >= 16.0" ,
30
29
# FIXME This should be able to be removed after 3.12 is released if there is a reliable API
31
30
# in importlib.metadata.
32
31
" importlib-metadata ~= 6.0" ,
Original file line number Diff line number Diff line change @@ -143,7 +143,7 @@ def get_logger(
143
143
144
144
version: Optional. The version string of the
145
145
instrumenting library. Usually this should be the same as
146
- ``pkg_resources.get_distribution (instrumenting_library_name).version ``.
146
+ ``importlib.metadata.version (instrumenting_library_name)``.
147
147
148
148
schema_url: Optional. Specifies the Schema URL of the emitted telemetry.
149
149
"""
Original file line number Diff line number Diff line change @@ -28,7 +28,6 @@ classifiers = [
28
28
dependencies = [
29
29
" opentelemetry-api == 1.19.0.dev" ,
30
30
" opentelemetry-semantic-conventions == 0.40b0.dev" ,
31
- " setuptools >= 16.0" ,
32
31
" typing-extensions >= 3.7.4" ,
33
32
]
34
33
You can’t perform that action at this time.
0 commit comments