Skip to content

Commit d7da920

Browse files
authored
Build(deps-dev): update pytest-benchmark requirement from >=5.1.0 to >=5.2.3 (#240)
Updates the requirements on [pytest-benchmark](https://github.com/ionelmc/pytest-benchmark) to permit the latest version. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/ionelmc/pytest-benchmark/blob/master/CHANGELOG.rst">pytest-benchmark's changelog</a>.</em></p> <blockquote> <h2>v5.2.3 (2025-11-09)</h2> <ul> <li>Add support for pytest 9.0.</li> <li>Moved the README.rst/CHANGELOG.rst concatenation from setup.py to pyproject.toml.</li> </ul> <h2>v5.2.2 (2025-11-07)</h2> <ul> <li>Fixed auto-disable to work with newer xdist (pytest-benchmark auto disables benchmarks if xdist is enabled by design). Contributed by Thomas B. Brunner in <code>[#294](ionelmc/pytest-benchmark#294) &lt;https://github.com/ionelmc/pytest-benchmark/pull/294&gt;</code>_.</li> </ul> <h2>v5.2.1 (2025-11-04)</h2> <ul> <li>Add markers so pytest doesn't try to assert-rewrite the plugin internals (fixes those <code>pytest.PytestAssertRewriteWarning: Module already imported so cannot be rewritten; pytest_benchmark</code> warnings).</li> </ul> <h2>v5.2.0 (2025-10-30)</h2> <ul> <li>Added support for a per-round <code>teardown</code> function to pedantic mode. Contributed Patrick Winter by <code>[#264](ionelmc/pytest-benchmark#264) &lt;https://github.com/ionelmc/pytest-benchmark/pull/264&gt;</code>_.</li> <li>Added <code>--benchmark-time-unit</code> option. Contributed by Tony Kuo in <code>[#281](ionelmc/pytest-benchmark#281) &lt;https://github.com/ionelmc/pytest-benchmark/pull/281&gt;</code>_.</li> <li>Fixed deprecated hook examples in docstrings. Contributed by Ali-Akber Saifee in <code>[#284](ionelmc/pytest-benchmark#284) &lt;https://github.com/ionelmc/pytest-benchmark/pull/284&gt;</code>_.</li> <li>Changed <code>--benchmark-compare-fail</code> to accept percentages higher than 100%. Contributed by Ben Avrahami in <code>[#280](ionelmc/pytest-benchmark#280) &lt;https://github.com/ionelmc/pytest-benchmark/pull/280&gt;</code>_.</li> <li>Added minimal typing support. Contributed by Sorin Sbarnea in <code>[#290](ionelmc/pytest-benchmark#290) &lt;https://github.com/ionelmc/pytest-benchmark/pull/290&gt;</code>_.</li> <li>Fixed support for Python 3.9. Contributed by Enno Gotthold in <code>[#291](ionelmc/pytest-benchmark#291) &lt;https://github.com/ionelmc/pytest-benchmark/pull/291&gt;</code>_.</li> <li>Replaced the complicated and broken code of <code>pytest_benchmark.utils.clonefunc</code> with a simple return of the input. That function was supposed to allow benchmarking with the cost of PyPy JIT included but it's a hassle to maintain.</li> <li>Moved the instrumentation pause outside the round loops (in addition to tracing, profiling is paused too). Pedantic mode will keep doing this per round (as the user manually controls the round count). This is necessary because in some scenarios setting and unsetting the tracer too much will overflow an internal counter (found to cause &quot;OverflowError: events set too many times&quot; at least on Python 3.13).</li> </ul> <h2>v5.1.0 (2024-10-30)</h2> <ul> <li>Fixed broken hooks handling on pytest 8.1 or later (the <code>TypeError: import_path() missing 1 required keyword-only argument: 'consider_namespace_packages'</code> issue). Unfortunately this sets the minimum supported pytest version to 8.1.</li> </ul> <h2>v5.0.1 (2024-10-30)</h2> <ul> <li>Fixed bad fixture check that broke down then <code>nbmake &lt;https://pypi.org/project/nbmake/&gt;</code>_ was enabled.</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/ionelmc/pytest-benchmark/commit/b857483dd8e8a875f3aa040bd0054847ad657291"><code>b857483</code></a> Bump version: 5.2.2 → 5.2.3</li> <li><a href="https://github.com/ionelmc/pytest-benchmark/commit/7f5abf98bb3212339d964e9a2621998c032a98f7"><code>7f5abf9</code></a> Add a note about the readme.</li> <li><a href="https://github.com/ionelmc/pytest-benchmark/commit/b8e5f5380f04a9ae26aa571c1c41a3671e2ac3bb"><code>b8e5f53</code></a> Fix bad wrap.</li> <li><a href="https://github.com/ionelmc/pytest-benchmark/commit/931d50ff1bb16c392f817801ad246eb27f55d4c5"><code>931d50f</code></a> Add back some escapes. Oops.</li> <li><a href="https://github.com/ionelmc/pytest-benchmark/commit/d5c2f7ef9d0bbd67d8bafac1e2a454c8aa95af10"><code>d5c2f7e</code></a> Add support for pytest 9.0. Fixes <a href="https://redirect.github.com/ionelmc/pytest-benchmark/issues/295">#295</a>.</li> <li><a href="https://github.com/ionelmc/pytest-benchmark/commit/9a3888ad0474c0bb0e56c86f87a27d24ecc6a55a"><code>9a3888a</code></a> Move readme+changelog extraction to static pyproject config.</li> <li><a href="https://github.com/ionelmc/pytest-benchmark/commit/d34bf73c6bab8c11c660291f62a20ff0c004e241"><code>d34bf73</code></a> Bump version: 5.2.1 → 5.2.2</li> <li><a href="https://github.com/ionelmc/pytest-benchmark/commit/cf2ac340f49518c6f89eb1de8fa9c68275ef6de6"><code>cf2ac34</code></a> Bump prek.</li> <li><a href="https://github.com/ionelmc/pytest-benchmark/commit/8bfc327c69997564eff09dfaa4a2fcf269545d36"><code>8bfc327</code></a> Improve formatting (docutils chokes on those arguments with colons and bracke...</li> <li><a href="https://github.com/ionelmc/pytest-benchmark/commit/190b487045c4994fd51b7b7e04b0e02b5b34a41c"><code>190b487</code></a> Prefix all headings with letters to allow docutils or whatever generate stabl...</li> <li>Additional commits viewable in <a href="https://github.com/ionelmc/pytest-benchmark/compare/v5.1.0...v5.2.3">compare view</a></li> </ul> </details> <br />
2 parents ce89f26 + 0e595e9 commit d7da920

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ dev = [
4646
"maturin>=1.8.3",
4747
"mypy>=1.15.0",
4848
"pytest>=9.0.3",
49-
"pytest-benchmark>=5.1.0",
49+
"pytest-benchmark>=5.2.3",
5050
"pytest-cov>=6.0.0",
5151
"pytest-xdist[psutil]>=3.6.1",
5252
"ruff>=0.11.0",

0 commit comments

Comments
 (0)