File tree 3 files changed +18
-2
lines changed
3 files changed +18
-2
lines changed Original file line number Diff line number Diff line change 1
1
Changelog
2
2
=========
3
3
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
+
4
20
Version 2.7.0 (2024-05-18)
5
21
---------------------------
6
22
Original file line number Diff line number Diff line change 50
50
# built documents.
51
51
#
52
52
# The short X.Y version.
53
- version = release = '2.7 .0'
53
+ version = release = '2.8 .0'
54
54
55
55
# The language for content autogenerated by Sphinx. Refer to documentation
56
56
# for a list of supported languages.
Original file line number Diff line number Diff line change 1
1
from time import perf_counter
2
2
3
- VERSION = (2 , 7 , 0 )
3
+ VERSION = (2 , 8 , 0 )
4
4
__version__ = '.' .join (map (str , VERSION ))
5
5
6
6
# Export pyperf.perf_counter for backward compatibility with pyperf 1.7
You can’t perform that action at this time.
0 commit comments