File tree Expand file tree Collapse file tree 3 files changed +18
-2
lines changed
Expand file tree Collapse file tree 3 files changed +18
-2
lines changed Original file line number Diff line number Diff line change 11Changelog
22=========
33
4+ * Benchmarks now have a timeout.
5+ Patch by Diego Russo.
6+ * The example code in bench_time_func.py uses the more modern `time.perf_counter() `.
7+ Patch by Hajime Senuma.
8+ * pystats are now correctly collected in subprocesses.
9+ Patch by Michael Droettboom.
10+ * pyperf now supports "hooks" to add custom functionality around each benchmarking call.
11+ pystats are no longer collected automatically, and you must pass `--hook pystats `.
12+ Patch by Michael Droettboom.
13+ * Memory units are now correctly stated in KiB and MiB.
14+ Patch by Ungve Mardal Moe.
15+ * max_mem_rss is now correctly measured on macOS.
16+ Patch by Michael Droettboom.
17+ * `pyperf system tune ` now works correctly on aarch64.
18+ Patch by Diego Russo.
19+
420Version 2.7.0 (2024-05-18)
521---------------------------
622
Original file line number Diff line number Diff line change 5050# built documents.
5151#
5252# The short X.Y version.
53- version = release = '2.7 .0'
53+ version = release = '2.8 .0'
5454
5555# The language for content autogenerated by Sphinx. Refer to documentation
5656# for a list of supported languages.
Original file line number Diff line number Diff line change 11from time import perf_counter
22
3- VERSION = (2 , 7 , 0 )
3+ VERSION = (2 , 8 , 0 )
44__version__ = '.' .join (map (str , VERSION ))
55
66# Export pyperf.perf_counter for backward compatibility with pyperf 1.7
You can’t perform that action at this time.
0 commit comments