File tree 3 files changed +13
-2
lines changed
3 files changed +13
-2
lines changed Original file line number Diff line number Diff line change 1
1
Changelog
2
2
=========
3
3
4
+ Version 2.8.1 (2024-11-13)
5
+ --------------------------
6
+
7
+ * Bugfix: Hooks now work correctly in subprocess benchmarks (`bench.run_command `).
8
+ Patch by Michael Droettboom
9
+ * Python 3.8 is now unsupported.
10
+ Patch by Hugo van Kemenade
11
+
12
+ Version 2.8.0 (2024-09-30)
13
+ --------------------------
14
+
4
15
* Benchmarks now have a timeout.
5
16
Patch by Diego Russo.
6
17
* The example code in bench_time_func.py uses the more modern `time.perf_counter() `.
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.8.0 '
53
+ version = release = '2.8.1 '
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 , 8 , 0 )
3
+ VERSION = (2 , 8 , 1 )
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