Path to this page:
Subject: CVS commit: pkgsrc/sysutils/py-psutil
From: Adam Ciarcinski
Date: 2025-03-04 07:03:04
Message id: 20250304060304.6C196FBE1@cvs.NetBSD.org
Log Message:
py-psutil: updated to 7.0.0
7.0.0
2025-02-13
**Enhancements**
- 669_, [Windows]: `net_if_addrs()`_ also returns the ``broadcast`` address
instead of ``None``.
- 2480_: Python 2.7 is no longer supported. Latest version supporting Python
2.7 is psutil 6.1.X. Install it with: ``pip2 install psutil==6.1.*``.
- 2490_: removed long deprecated ``Process.memory_info_ex()`` method. It was
deprecated in psutil 4.0.0, released 8 years ago. Substitute is
``Process.memory_full_info()``.
**Bug fixes**
- 2496_, [Linux]: Avoid segfault (a cPython bug) on ``Process.memory_maps()``
for processes that use hundreds of GBs of memory.
- 2502_, [macOS]: `virtual_memory()`_ now relies on ``host_statistics64``
instead of ``host_statistics``. This is the same approach used by ``vm_stat``
CLI tool, and should grant more accurate results.
**Compatibility notes**
- 2480_: Python 2.7 is no longer supported.
- 2490_: removed long deprecated ``Process.memory_info_ex()`` method.
Files: