mirror of
https://github.com/open-telemetry/opentelemetry-python-contrib.git
synced 2025-07-28 04:34:01 +08:00
instrumentation/system-metrics: permit to use psutil 6.0 (#2630)
This commit is contained in:

committed by
GitHub

parent
919b2c295f
commit
3d758a973c
@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
|
||||
- `opentelemetry-instrumentation-aws-lambda` Bugfix: AWS Lambda event source key incorrect for SNS in instrumentation library.
|
||||
([#2612](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/2612))
|
||||
- `opentelemetry-instrumentation-system-metrics` Permit to use psutil 6.0+.
|
||||
([#2630](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/2630))
|
||||
|
||||
### Added
|
||||
|
||||
|
@ -27,7 +27,7 @@ classifiers = [
|
||||
dependencies = [
|
||||
"opentelemetry-instrumentation == 0.47b0.dev",
|
||||
"opentelemetry-api ~= 1.11",
|
||||
"psutil ~= 5.9",
|
||||
"psutil >= 5.9.0, < 7",
|
||||
]
|
||||
|
||||
[project.optional-dependencies]
|
||||
|
@ -4,7 +4,7 @@ importlib-metadata==6.11.0
|
||||
iniconfig==2.0.0
|
||||
packaging==24.0
|
||||
pluggy==1.5.0
|
||||
psutil==5.9.8
|
||||
psutil==6.0.0
|
||||
py-cpuinfo==9.0.0
|
||||
pytest==7.4.4
|
||||
pytest-benchmark==4.0.0
|
||||
|
Reference in New Issue
Block a user