Skip to content

Commit

Permalink
instrumentation/system-metrics: permit to use psutil 6.0 (#2630)
Browse files Browse the repository at this point in the history
  • Loading branch information
xrmx authored Jun 24, 2024
1 parent 919b2c2 commit 3d758a9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 3d758a9

Please sign in to comment.