Skip to content

Commit 1284318

Browse files
committed
[psutil]: Bump psutil to 7.1.*
1 parent 7765087 commit 1284318

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

stubs/psutil/METADATA.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version = "7.0.*"
1+
version = "7.1.*"
22
upstream_repository = "https://github.com/giampaolo/psutil"
33

44
[tool.stubtest]

stubs/psutil/psutil/_pslinux.pyi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ HAS_PROC_IO_PRIORITY: Any
2424
HAS_CPU_AFFINITY: Any
2525
CLOCK_TICKS: Any
2626
PAGESIZE: Any
27-
BOOT_TIME: Any
2827
LITTLE_ENDIAN: Any
28+
UNSET: object
2929
DISK_SECTOR_SIZE: int
3030
AF_LINK: Any
3131
AddressFamily: Any
@@ -213,7 +213,7 @@ class Process:
213213
def cpu_times(self): ...
214214
def cpu_num(self): ...
215215
def wait(self, timeout: Incomplete | None = ...): ...
216-
def create_time(self): ...
216+
def create_time(self, monotonic: bool = False): ...
217217
def memory_info(self): ...
218218
def memory_full_info(self): ...
219219
def memory_maps(self): ...

stubs/psutil/psutil/_psutil_linux.pyi

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,3 @@ def proc_cpu_affinity_set(*args, **kwargs) -> Any: ...
1414
def proc_ioprio_get(*args, **kwargs) -> Any: ...
1515
def proc_ioprio_set(*args, **kwargs) -> Any: ...
1616
def set_debug(*args, **kwargs) -> Any: ...
17-
def users(*args, **kwargs) -> Any: ...

stubs/psutil/psutil/_psutil_posix.pyi

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,4 @@ if sys.platform == "darwin":
3232
def net_if_duplex_speed(*args, **kwargs): ...
3333

3434
def setpriority(*args, **kwargs) -> Any: ...
35+
def users(*args, **kwargs) -> Any: ...

0 commit comments

Comments
 (0)