Skip to content

Commit

Permalink
Upgrade psutil to fix performance (#18688)
Browse files Browse the repository at this point in the history
* Upgrade psutil to fix performance

* Add changelog
  • Loading branch information
Kyle-Neale authored Sep 27, 2024
1 parent d9cc06e commit c14b128
Show file tree
Hide file tree
Showing 19 changed files with 19 additions and 10 deletions.
2 changes: 1 addition & 1 deletion agent_requirements.in
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ paramiko==3.4.1
ply==3.11
prometheus-client==0.20.0
protobuf==5.27.3
psutil==5.9.6
psutil==6.0.0
psycopg2-binary==2.9.9
pyasn1==0.4.8
pycryptodomex==3.20.0
Expand Down
1 change: 1 addition & 0 deletions btrfs/changelog.d/18688.added
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Upgrade psutil to 6.0.0 to fix performance issues addressed
2 changes: 1 addition & 1 deletion btrfs/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ license = "BSD-3-Clause"

[project.optional-dependencies]
deps = [
"psutil==5.9.6",
"psutil==6.0.0",
]

[project.urls]
Expand Down
1 change: 1 addition & 0 deletions disk/changelog.d/18688.added
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Upgrade psutil to 6.0.0 to fix performance issues addressed
2 changes: 1 addition & 1 deletion disk/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ license = "BSD-3-Clause"

[project.optional-dependencies]
deps = [
"psutil==5.9.6",
"psutil==6.0.0",
]

[project.urls]
Expand Down
1 change: 1 addition & 0 deletions gunicorn/changelog.d/18688.added
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Upgrade psutil to 6.0.0 to fix performance issues addressed
2 changes: 1 addition & 1 deletion gunicorn/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ license = "BSD-3-Clause"

[project.optional-dependencies]
deps = [
"psutil==5.9.6",
"psutil==6.0.0",
]

[project.urls]
Expand Down
1 change: 1 addition & 0 deletions ibm_mq/changelog.d/18688.added
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Upgrade psutil to 6.0.0 to fix performance issues addressed
2 changes: 1 addition & 1 deletion ibm_mq/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ requires-python = ">=3.9"

[project.optional-dependencies]
deps = [
"psutil==5.9.6",
"psutil==6.0.0",
"pymqi==1.12.10; (sys_platform != 'darwin' or platform_machine != 'arm64')",
]

Expand Down
1 change: 1 addition & 0 deletions mongo/changelog.d/18688.added
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Upgrade psutil to 6.0.0 to fix performance issues addressed
2 changes: 1 addition & 1 deletion mongo/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ license = "BSD-3-Clause"
[project.optional-dependencies]
deps = [
"cachetools==5.5.0",
"psutil==5.9.6",
"psutil==6.0.0",
"pymongo[srv]==4.8.0; python_version >= '3.9'",
]

Expand Down
1 change: 1 addition & 0 deletions network/changelog.d/18688.added
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Upgrade psutil to 6.0.0 to fix performance issues addressed
2 changes: 1 addition & 1 deletion network/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ license = "BSD-3-Clause"

[project.optional-dependencies]
deps = [
"psutil==5.9.6",
"psutil==6.0.0",
]

[project.urls]
Expand Down
1 change: 1 addition & 0 deletions process/changelog.d/18688.added
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Upgrade psutil to 6.0.0 to fix performance issues addressed
2 changes: 1 addition & 1 deletion process/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ license = "BSD-3-Clause"

[project.optional-dependencies]
deps = [
"psutil==5.9.6",
"psutil==6.0.0",
]

[project.urls]
Expand Down
1 change: 1 addition & 0 deletions system_core/changelog.d/18688.added
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Upgrade psutil to 6.0.0 to fix performance issues addressed
2 changes: 1 addition & 1 deletion system_core/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ license = "BSD-3-Clause"

[project.optional-dependencies]
deps = [
"psutil==5.9.6",
"psutil==6.0.0",
]

[project.urls]
Expand Down
1 change: 1 addition & 0 deletions system_swap/changelog.d/18688.added
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Upgrade psutil to 6.0.0 to fix performance issues addressed
2 changes: 1 addition & 1 deletion system_swap/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ license = "BSD-3-Clause"

[project.optional-dependencies]
deps = [
"psutil==5.9.6",
"psutil==6.0.0",
]

[project.urls]
Expand Down

0 comments on commit c14b128

Please sign in to comment.