File tree 3 files changed +4
-2
lines changed
instrumentation/opentelemetry-instrumentation-system-metrics
3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9
9
10
10
- ` opentelemetry-instrumentation-aws-lambda ` Bugfix: AWS Lambda event source key incorrect for SNS in instrumentation library.
11
11
([ #2612 ] ( https://github.com/open-telemetry/opentelemetry-python-contrib/pull/2612 ) )
12
+ - ` opentelemetry-instrumentation-system-metrics ` Permit to use psutil 6.0+.
13
+ ([ #2630 ] ( https://github.com/open-telemetry/opentelemetry-python-contrib/pull/2630 ) )
12
14
13
15
### Added
14
16
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ classifiers = [
27
27
dependencies = [
28
28
" opentelemetry-instrumentation == 0.47b0.dev" ,
29
29
" opentelemetry-api ~= 1.11" ,
30
- " psutil ~ = 5.9" ,
30
+ " psutil > = 5.9.0, < 7 " ,
31
31
]
32
32
33
33
[project .optional-dependencies ]
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ importlib-metadata==6.11.0
4
4
iniconfig==2.0.0
5
5
packaging==24.0
6
6
pluggy==1.5.0
7
- psutil==5.9.8
7
+ psutil==6.0.0
8
8
py-cpuinfo==9.0.0
9
9
pytest==7.4.4
10
10
pytest-benchmark==4.0.0
You can’t perform that action at this time.
0 commit comments