Skip to content

Drop Python 3.8 support #556

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Dec 9, 2024
Merged

Drop Python 3.8 support #556

merged 2 commits into from
Dec 9, 2024

Conversation

nicoddemus
Copy link
Member

Also run pre-commit (with pyupgrade) on all files.

Copy link
Member

@Pierre-Sassoulas Pierre-Sassoulas left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I tried to relaunch the coverage, but it seems a genuine drop in coverage. Not sure what changed to have a 5% drop. Maybe code that is only runnable in python 3.8 that we could remove ?

@@ -608,7 +606,7 @@ class _SubsetHookCaller(HookCaller):
"_remove_plugins",
)

def __init__(self, orig: HookCaller, remove_plugins: AbstractSet[_Plugin]) -> None:
def __init__(self, orig: HookCaller, remove_plugins: Set[_Plugin]) -> None:
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This one seems incorrect at first glance

Copy link
Member Author

@nicoddemus nicoddemus Dec 7, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

mypy or ruff (I cannot recall which one) complained and suggested using Set from collections.abc instead of deprecated AbstractSet.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@nicoddemus
Copy link
Member Author

I tried to relaunch the coverage, but it seems a genuine drop in coverage. Not sure what changed to have a 5% drop. Maybe code that is only runnable in python 3.8 that we could remove ?

I can't figure out either... it might be just me, but I can't decipher the codecov report:

image

Blank lines are not covered? That does not make sense to me.

@nicoddemus
Copy link
Member Author

Anything else other than the codecov issue folks? Unfortunately I cannot really understand what is missing coverage from that report...

Copy link
Member

@Pierre-Sassoulas Pierre-Sassoulas left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

After examination, the coverage issue seems to be a bug from codecov (only blank lines or comment are not covered). I think we should merge with administrator privileges and bypass that. Everything else LGTM.

@nicoddemus nicoddemus merged commit 431be57 into pytest-dev:main Dec 9, 2024
15 of 17 checks passed
github-actions bot pushed a commit to evroon/bracket that referenced this pull request May 16, 2025
Updates the requirements on
[pluggy](https://github.com/pytest-dev/pluggy) to permit the latest
version.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/pytest-dev/pluggy/blob/main/CHANGELOG.rst">pluggy's
changelog</a>.</em></p>
<blockquote>
<h1>pluggy 1.6.0 (2025-05-15)</h1>
<h2>Deprecations and Removals</h2>
<ul>
<li><code>[#556](pytest-dev/pluggy#556)
&lt;https://github.com/pytest-dev/pluggy/issues/556&gt;</code>_: Python
3.8 is no longer supported.</li>
</ul>
<h2>Bug Fixes</h2>
<ul>
<li>
<p><code>[#504](pytest-dev/pluggy#504)
&lt;https://github.com/pytest-dev/pluggy/issues/504&gt;</code>_: Fix a
regression in pluggy 1.1.0 where using :func:<code>result.get_result()
&lt;pluggy.Result.get_result&gt;</code> on the same failed
:class:<code>~pluggy.Result</code> causes the exception's traceback to
get longer and longer.</p>
</li>
<li>
<p><code>[#544](pytest-dev/pluggy#544)
&lt;https://github.com/pytest-dev/pluggy/issues/544&gt;</code>_:
Correctly pass :class:<code>StopIteration</code> through hook
wrappers.</p>
<p>Raising a :class:<code>StopIteration</code> in a generator triggers a
:class:<code>RuntimeError</code>.</p>
<p>If the :class:<code>RuntimeError</code> of a generator has the passed
in :class:<code>StopIteration</code> as cause
resume with that :class:<code>StopIteration</code> as normal exception
instead of failing with the :class:<code>RuntimeError</code>.</p>
</li>
<li>
<p><code>[#573](pytest-dev/pluggy#573)
&lt;https://github.com/pytest-dev/pluggy/issues/573&gt;</code>_: Fix
python 3.14 SyntaxError by rearranging code.</p>
</li>
</ul>
<h1>pluggy 1.5.0 (2024-04-19)</h1>
<h2>Features</h2>
<ul>
<li>
<p><code>[#178](pytest-dev/pluggy#178)
&lt;https://github.com/pytest-dev/pluggy/issues/178&gt;</code>_: Add
support for deprecating specific hook parameters, or more generally, for
issuing a warning whenever a hook implementation requests certain
parameters.</p>
<p>See :ref:<code>warn_on_impl</code> for details.</p>
</li>
</ul>
<h2>Bug Fixes</h2>
<ul>
<li><code>[#481](pytest-dev/pluggy#481)
&lt;https://github.com/pytest-dev/pluggy/issues/481&gt;</code>_:
<code>PluginManager.get_plugins()</code> no longer returns
<code>None</code> for blocked plugins.</li>
</ul>
<h1>pluggy 1.4.0 (2024-01-24)</h1>
<h2>Features</h2>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/fd08ab5f811a9b2fa9124ae8cbbd393221151e2c"><code>fd08ab5</code></a>
Preparing release 1.6.0</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/c240362152d6f354a4056bfd6d28560e226fb70b"><code>c240362</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/pytest-dev/pluggy/issues/578">#578</a>)</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/0ceb558860b5e228b67adbe8c19a368802e7d324"><code>0ceb558</code></a>
Merge pull request <a
href="https://redirect.github.com/pytest-dev/pluggy/issues/546">#546</a>
from RonnyPfannschmidt/ronny/hookwrapper-wrap-legacy</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/1f4872e8cb2547dacea155a27f94f75e7e8f66ae"><code>1f4872e</code></a>
[pre-commit.ci] auto fixes from pre-commit.com hooks</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/4be0c554ea22ca01c7dc30ecccac413a412c1ea7"><code>4be0c55</code></a>
add changelog</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/615c6c57c2de62bd9652b59c7a89b3e1fcef08ae"><code>615c6c5</code></a>
Merge branch 'main' into hookwrapper-wrap-legacy</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/2acc644f2ead34ac3a154bff2566037480b5c310"><code>2acc644</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/pytest-dev/pluggy/issues/577">#577</a>)</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/ea5ada08d36d71bbd1f4e0c8472f8f9a4b210a2d"><code>ea5ada0</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/pytest-dev/pluggy/issues/576">#576</a>)</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/dfd250bcfc3d73f72693d4f14cf48bb737ded9f0"><code>dfd250b</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/pytest-dev/pluggy/issues/575">#575</a>)</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/1e1862fe458b663728b7523bee2c407455836931"><code>1e1862f</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/pytest-dev/pluggy/issues/574">#574</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/pytest-dev/pluggy/compare/1.5.0...1.6.0">compare
view</a></li>
</ul>
</details>
<br />


Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
github-actions bot pushed a commit to aio-libs/aiohttp that referenced this pull request May 16, 2025
Bumps [pluggy](https://github.com/pytest-dev/pluggy) from 1.5.0 to
1.6.0.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/pytest-dev/pluggy/blob/main/CHANGELOG.rst">pluggy's
changelog</a>.</em></p>
<blockquote>
<h1>pluggy 1.6.0 (2025-05-15)</h1>
<h2>Deprecations and Removals</h2>
<ul>
<li><code>[#556](pytest-dev/pluggy#556)
&lt;https://github.com/pytest-dev/pluggy/issues/556&gt;</code>_: Python
3.8 is no longer supported.</li>
</ul>
<h2>Bug Fixes</h2>
<ul>
<li>
<p><code>[#504](pytest-dev/pluggy#504)
&lt;https://github.com/pytest-dev/pluggy/issues/504&gt;</code>_: Fix a
regression in pluggy 1.1.0 where using :func:<code>result.get_result()
&lt;pluggy.Result.get_result&gt;</code> on the same failed
:class:<code>~pluggy.Result</code> causes the exception's traceback to
get longer and longer.</p>
</li>
<li>
<p><code>[#544](pytest-dev/pluggy#544)
&lt;https://github.com/pytest-dev/pluggy/issues/544&gt;</code>_:
Correctly pass :class:<code>StopIteration</code> through hook
wrappers.</p>
<p>Raising a :class:<code>StopIteration</code> in a generator triggers a
:class:<code>RuntimeError</code>.</p>
<p>If the :class:<code>RuntimeError</code> of a generator has the passed
in :class:<code>StopIteration</code> as cause
resume with that :class:<code>StopIteration</code> as normal exception
instead of failing with the :class:<code>RuntimeError</code>.</p>
</li>
<li>
<p><code>[#573](pytest-dev/pluggy#573)
&lt;https://github.com/pytest-dev/pluggy/issues/573&gt;</code>_: Fix
python 3.14 SyntaxError by rearranging code.</p>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/fd08ab5f811a9b2fa9124ae8cbbd393221151e2c"><code>fd08ab5</code></a>
Preparing release 1.6.0</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/c240362152d6f354a4056bfd6d28560e226fb70b"><code>c240362</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/pytest-dev/pluggy/issues/578">#578</a>)</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/0ceb558860b5e228b67adbe8c19a368802e7d324"><code>0ceb558</code></a>
Merge pull request <a
href="https://redirect.github.com/pytest-dev/pluggy/issues/546">#546</a>
from RonnyPfannschmidt/ronny/hookwrapper-wrap-legacy</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/1f4872e8cb2547dacea155a27f94f75e7e8f66ae"><code>1f4872e</code></a>
[pre-commit.ci] auto fixes from pre-commit.com hooks</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/4be0c554ea22ca01c7dc30ecccac413a412c1ea7"><code>4be0c55</code></a>
add changelog</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/615c6c57c2de62bd9652b59c7a89b3e1fcef08ae"><code>615c6c5</code></a>
Merge branch 'main' into hookwrapper-wrap-legacy</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/2acc644f2ead34ac3a154bff2566037480b5c310"><code>2acc644</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/pytest-dev/pluggy/issues/577">#577</a>)</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/ea5ada08d36d71bbd1f4e0c8472f8f9a4b210a2d"><code>ea5ada0</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/pytest-dev/pluggy/issues/576">#576</a>)</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/dfd250bcfc3d73f72693d4f14cf48bb737ded9f0"><code>dfd250b</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/pytest-dev/pluggy/issues/575">#575</a>)</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/1e1862fe458b663728b7523bee2c407455836931"><code>1e1862f</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/pytest-dev/pluggy/issues/574">#574</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/pytest-dev/pluggy/compare/1.5.0...1.6.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=pluggy&package-manager=pip&previous-version=1.5.0&new-version=1.6.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
github-actions bot pushed a commit to aio-libs/aiohttp that referenced this pull request May 16, 2025
Bumps [pluggy](https://github.com/pytest-dev/pluggy) from 1.5.0 to
1.6.0.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/pytest-dev/pluggy/blob/main/CHANGELOG.rst">pluggy's
changelog</a>.</em></p>
<blockquote>
<h1>pluggy 1.6.0 (2025-05-15)</h1>
<h2>Deprecations and Removals</h2>
<ul>
<li><code>[#556](pytest-dev/pluggy#556)
&lt;https://github.com/pytest-dev/pluggy/issues/556&gt;</code>_: Python
3.8 is no longer supported.</li>
</ul>
<h2>Bug Fixes</h2>
<ul>
<li>
<p><code>[#504](pytest-dev/pluggy#504)
&lt;https://github.com/pytest-dev/pluggy/issues/504&gt;</code>_: Fix a
regression in pluggy 1.1.0 where using :func:<code>result.get_result()
&lt;pluggy.Result.get_result&gt;</code> on the same failed
:class:<code>~pluggy.Result</code> causes the exception's traceback to
get longer and longer.</p>
</li>
<li>
<p><code>[#544](pytest-dev/pluggy#544)
&lt;https://github.com/pytest-dev/pluggy/issues/544&gt;</code>_:
Correctly pass :class:<code>StopIteration</code> through hook
wrappers.</p>
<p>Raising a :class:<code>StopIteration</code> in a generator triggers a
:class:<code>RuntimeError</code>.</p>
<p>If the :class:<code>RuntimeError</code> of a generator has the passed
in :class:<code>StopIteration</code> as cause
resume with that :class:<code>StopIteration</code> as normal exception
instead of failing with the :class:<code>RuntimeError</code>.</p>
</li>
<li>
<p><code>[#573](pytest-dev/pluggy#573)
&lt;https://github.com/pytest-dev/pluggy/issues/573&gt;</code>_: Fix
python 3.14 SyntaxError by rearranging code.</p>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/fd08ab5f811a9b2fa9124ae8cbbd393221151e2c"><code>fd08ab5</code></a>
Preparing release 1.6.0</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/c240362152d6f354a4056bfd6d28560e226fb70b"><code>c240362</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/pytest-dev/pluggy/issues/578">#578</a>)</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/0ceb558860b5e228b67adbe8c19a368802e7d324"><code>0ceb558</code></a>
Merge pull request <a
href="https://redirect.github.com/pytest-dev/pluggy/issues/546">#546</a>
from RonnyPfannschmidt/ronny/hookwrapper-wrap-legacy</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/1f4872e8cb2547dacea155a27f94f75e7e8f66ae"><code>1f4872e</code></a>
[pre-commit.ci] auto fixes from pre-commit.com hooks</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/4be0c554ea22ca01c7dc30ecccac413a412c1ea7"><code>4be0c55</code></a>
add changelog</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/615c6c57c2de62bd9652b59c7a89b3e1fcef08ae"><code>615c6c5</code></a>
Merge branch 'main' into hookwrapper-wrap-legacy</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/2acc644f2ead34ac3a154bff2566037480b5c310"><code>2acc644</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/pytest-dev/pluggy/issues/577">#577</a>)</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/ea5ada08d36d71bbd1f4e0c8472f8f9a4b210a2d"><code>ea5ada0</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/pytest-dev/pluggy/issues/576">#576</a>)</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/dfd250bcfc3d73f72693d4f14cf48bb737ded9f0"><code>dfd250b</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/pytest-dev/pluggy/issues/575">#575</a>)</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/1e1862fe458b663728b7523bee2c407455836931"><code>1e1862f</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/pytest-dev/pluggy/issues/574">#574</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/pytest-dev/pluggy/compare/1.5.0...1.6.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=pluggy&package-manager=pip&previous-version=1.5.0&new-version=1.6.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
kai687 pushed a commit to kai687/sphinxawesome-theme that referenced this pull request May 18, 2025
Bumps [pluggy](https://github.com/pytest-dev/pluggy) from 1.5.0 to
1.6.0.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/pytest-dev/pluggy/blob/main/CHANGELOG.rst">pluggy's
changelog</a>.</em></p>
<blockquote>
<h1>pluggy 1.6.0 (2025-05-15)</h1>
<h2>Deprecations and Removals</h2>
<ul>
<li><code>[#556](pytest-dev/pluggy#556)
&lt;https://github.com/pytest-dev/pluggy/issues/556&gt;</code>_: Python
3.8 is no longer supported.</li>
</ul>
<h2>Bug Fixes</h2>
<ul>
<li>
<p><code>[#504](pytest-dev/pluggy#504)
&lt;https://github.com/pytest-dev/pluggy/issues/504&gt;</code>_: Fix a
regression in pluggy 1.1.0 where using :func:<code>result.get_result()
&lt;pluggy.Result.get_result&gt;</code> on the same failed
:class:<code>~pluggy.Result</code> causes the exception's traceback to
get longer and longer.</p>
</li>
<li>
<p><code>[#544](pytest-dev/pluggy#544)
&lt;https://github.com/pytest-dev/pluggy/issues/544&gt;</code>_:
Correctly pass :class:<code>StopIteration</code> through hook
wrappers.</p>
<p>Raising a :class:<code>StopIteration</code> in a generator triggers a
:class:<code>RuntimeError</code>.</p>
<p>If the :class:<code>RuntimeError</code> of a generator has the passed
in :class:<code>StopIteration</code> as cause
resume with that :class:<code>StopIteration</code> as normal exception
instead of failing with the :class:<code>RuntimeError</code>.</p>
</li>
<li>
<p><code>[#573](pytest-dev/pluggy#573)
&lt;https://github.com/pytest-dev/pluggy/issues/573&gt;</code>_: Fix
python 3.14 SyntaxError by rearranging code.</p>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/fd08ab5f811a9b2fa9124ae8cbbd393221151e2c"><code>fd08ab5</code></a>
Preparing release 1.6.0</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/c240362152d6f354a4056bfd6d28560e226fb70b"><code>c240362</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/pytest-dev/pluggy/issues/578">#578</a>)</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/0ceb558860b5e228b67adbe8c19a368802e7d324"><code>0ceb558</code></a>
Merge pull request <a
href="https://redirect.github.com/pytest-dev/pluggy/issues/546">#546</a>
from RonnyPfannschmidt/ronny/hookwrapper-wrap-legacy</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/1f4872e8cb2547dacea155a27f94f75e7e8f66ae"><code>1f4872e</code></a>
[pre-commit.ci] auto fixes from pre-commit.com hooks</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/4be0c554ea22ca01c7dc30ecccac413a412c1ea7"><code>4be0c55</code></a>
add changelog</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/615c6c57c2de62bd9652b59c7a89b3e1fcef08ae"><code>615c6c5</code></a>
Merge branch 'main' into hookwrapper-wrap-legacy</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/2acc644f2ead34ac3a154bff2566037480b5c310"><code>2acc644</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/pytest-dev/pluggy/issues/577">#577</a>)</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/ea5ada08d36d71bbd1f4e0c8472f8f9a4b210a2d"><code>ea5ada0</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/pytest-dev/pluggy/issues/576">#576</a>)</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/dfd250bcfc3d73f72693d4f14cf48bb737ded9f0"><code>dfd250b</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/pytest-dev/pluggy/issues/575">#575</a>)</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/1e1862fe458b663728b7523bee2c407455836931"><code>1e1862f</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/pytest-dev/pluggy/issues/574">#574</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/pytest-dev/pluggy/compare/1.5.0...1.6.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=pluggy&package-manager=uv&previous-version=1.5.0&new-version=1.6.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
ansibuddy pushed a commit to ansible/molecule that referenced this pull request May 19, 2025
Bumps the dependencies group in /.config with 14 updates:

| Package | From | To |
| --- | --- | --- |
| [ruff](https://github.com/astral-sh/ruff) | `0.11.9` | `0.11.10` |
| [tox](https://github.com/tox-dev/tox) | `4.25.0` | `4.26.0` |
| [types-jsonschema](https://github.com/typeshed-internal/stub_uploader)
| `4.23.0.20241208` | `4.23.0.20250516` |
| [types-pexpect](https://github.com/typeshed-internal/stub_uploader) |
`4.9.0.20241208` | `4.9.0.20250516` |
| [types-pyyaml](https://github.com/typeshed-internal/stub_uploader) |
`6.0.12.20250402` | `6.0.12.20250516` |
| [ansible-compat](https://github.com/ansible/ansible-compat) | `25.1.5`
| `25.5.0` |
| [cairosvg](https://github.com/Kozea/CairoSVG) | `2.7.1` | `2.8.2` |
| [cryptography](https://github.com/pyca/cryptography) | `44.0.3` |
`45.0.2` |
| [mkdocs-ansible](https://github.com/ansible/mkdocs-ansible) | `25.2.0`
| `25.5.0` |
| [mkdocs-material](https://github.com/squidfunk/mkdocs-material) |
`9.6.13` | `9.6.14` |
| [pluggy](https://github.com/pytest-dev/pluggy) | `1.5.0` | `1.6.0` |
| [pyproject-api](https://github.com/tox-dev/pyproject-api) | `1.9.0` |
`1.9.1` |
| [pyyaml-env-tag](https://github.com/waylan/pyyaml-env-tag) | `1.0` |
`1.1` |
| [rpds-py](https://github.com/crate-py/rpds) | `0.24.0` | `0.25.0` |

Updates `ruff` from 0.11.9 to 0.11.10
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/astral-sh/ruff/releases">ruff's
releases</a>.</em></p>
<blockquote>
<h2>0.11.10</h2>
<h2>Release Notes</h2>
<h3>Preview features</h3>
<ul>
<li>[<code>ruff</code>] Implement a recursive check for
<code>RUF060</code> (<a
href="https://redirect.github.com/astral-sh/ruff/pull/17976">#17976</a>)</li>
<li>[<code>airflow</code>] Enable autofixes for <code>AIR301</code> and
<code>AIR311</code> (<a
href="https://redirect.github.com/astral-sh/ruff/pull/17941">#17941</a>)</li>
<li>[<code>airflow</code>] Apply try catch guard to all
<code>AIR3</code> rules (<a
href="https://redirect.github.com/astral-sh/ruff/pull/17887">#17887</a>)</li>
<li>[<code>airflow</code>] Extend <code>AIR311</code> rules (<a
href="https://redirect.github.com/astral-sh/ruff/pull/17913">#17913</a>)</li>
</ul>
<h3>Bug fixes</h3>
<ul>
<li>[<code>flake8-bugbear</code>] Ignore <code>B028</code> if
<code>skip_file_prefixes</code> is present (<a
href="https://redirect.github.com/astral-sh/ruff/pull/18047">#18047</a>)</li>
<li>[<code>flake8-pie</code>] Mark autofix for <code>PIE804</code> as
unsafe if the dictionary contains comments (<a
href="https://redirect.github.com/astral-sh/ruff/pull/18046">#18046</a>)</li>
<li>[<code>flake8-simplify</code>] Correct behavior for
<code>str.split</code>/<code>rsplit</code> with <code>maxsplit=0</code>
(<code>SIM905</code>) (<a
href="https://redirect.github.com/astral-sh/ruff/pull/18075">#18075</a>)</li>
<li>[<code>flake8-simplify</code>] Fix <code>SIM905</code> autofix for
<code>rsplit</code> creating a reversed list literal (<a
href="https://redirect.github.com/astral-sh/ruff/pull/18045">#18045</a>)</li>
<li>[<code>flake8-use-pathlib</code>] Suppress diagnostics for all
<code>os.*</code> functions that have the <code>dir_fd</code> parameter
(<code>PTH</code>) (<a
href="https://redirect.github.com/astral-sh/ruff/pull/17968">#17968</a>)</li>
<li>[<code>refurb</code>] Mark autofix as safe only for number literals
(<code>FURB116</code>) (<a
href="https://redirect.github.com/astral-sh/ruff/pull/17692">#17692</a>)</li>
</ul>
<h3>Rule changes</h3>
<ul>
<li>[<code>flake8-bandit</code>] Skip <code>S608</code> for
expressionless f-strings (<a
href="https://redirect.github.com/astral-sh/ruff/pull/17999">#17999</a>)</li>
<li>[<code>flake8-pytest-style</code>] Don't recommend
<code>usefixtures</code> for <code>parametrize</code> values
(<code>PT019</code>) (<a
href="https://redirect.github.com/astral-sh/ruff/pull/17650">#17650</a>)</li>
<li>[<code>pyupgrade</code>] Add <code>resource.error</code> as
deprecated alias of <code>OSError</code> (<code>UP024</code>) (<a
href="https://redirect.github.com/astral-sh/ruff/pull/17933">#17933</a>)</li>
</ul>
<h3>CLI</h3>
<ul>
<li>Disable jemalloc on Android (<a
href="https://redirect.github.com/astral-sh/ruff/pull/18033">#18033</a>)</li>
</ul>
<h3>Documentation</h3>
<ul>
<li>Update Neovim setup docs (<a
href="https://redirect.github.com/astral-sh/ruff/pull/18108">#18108</a>)</li>
<li>[<code>flake8-simplify</code>] Add fix safety section
(<code>SIM103</code>) (<a
href="https://redirect.github.com/astral-sh/ruff/pull/18086">#18086</a>)</li>
<li>[<code>flake8-simplify</code>] Add fix safety section
(<code>SIM112</code>) (<a
href="https://redirect.github.com/astral-sh/ruff/pull/18099">#18099</a>)</li>
<li>[<code>pylint</code>] Add fix safety section (<code>PLC0414</code>)
(<a
href="https://redirect.github.com/astral-sh/ruff/pull/17802">#17802</a>)</li>
<li>[<code>pylint</code>] Add fix safety section (<code>PLE4703</code>)
(<a
href="https://redirect.github.com/astral-sh/ruff/pull/17824">#17824</a>)</li>
<li>[<code>pylint</code>] Add fix safety section (<code>PLW1514</code>)
(<a
href="https://redirect.github.com/astral-sh/ruff/pull/17932">#17932</a>)</li>
<li>[<code>pylint</code>] Add fix safety section (<code>PLW3301</code>)
(<a
href="https://redirect.github.com/astral-sh/ruff/pull/17878">#17878</a>)</li>
<li>[<code>ruff</code>] Add fix safety section (<code>RUF007</code>) (<a
href="https://redirect.github.com/astral-sh/ruff/pull/17755">#17755</a>)</li>
<li>[<code>ruff</code>] Add fix safety section (<code>RUF033</code>) (<a
href="https://redirect.github.com/astral-sh/ruff/pull/17760">#17760</a>)</li>
</ul>
<h2>Contributors</h2>
<ul>
<li><a
href="https://github.com/AlexWaygood"><code>@​AlexWaygood</code></a></li>
<li><a
href="https://github.com/BurntSushi"><code>@​BurntSushi</code></a></li>
<li><a
href="https://github.com/DimitriPapadopoulos"><code>@​DimitriPapadopoulos</code></a></li>
<li><a
href="https://github.com/InSyncWithFoo"><code>@​InSyncWithFoo</code></a></li>
<li><a
href="https://github.com/LaBatata101"><code>@​LaBatata101</code></a></li>
<li><a href="https://github.com/Lee-W"><code>@​Lee-W</code></a></li>
<li><a
href="https://github.com/MichaReiser"><code>@​MichaReiser</code></a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md">ruff's
changelog</a>.</em></p>
<blockquote>
<h2>0.11.10</h2>
<h3>Preview features</h3>
<ul>
<li>[<code>ruff</code>] Implement a recursive check for
<code>RUF060</code> (<a
href="https://redirect.github.com/astral-sh/ruff/pull/17976">#17976</a>)</li>
<li>[<code>airflow</code>] Enable autofixes for <code>AIR301</code> and
<code>AIR311</code> (<a
href="https://redirect.github.com/astral-sh/ruff/pull/17941">#17941</a>)</li>
<li>[<code>airflow</code>] Apply try catch guard to all
<code>AIR3</code> rules (<a
href="https://redirect.github.com/astral-sh/ruff/pull/17887">#17887</a>)</li>
<li>[<code>airflow</code>] Extend <code>AIR311</code> rules (<a
href="https://redirect.github.com/astral-sh/ruff/pull/17913">#17913</a>)</li>
</ul>
<h3>Bug fixes</h3>
<ul>
<li>[<code>flake8-bugbear</code>] Ignore <code>B028</code> if
<code>skip_file_prefixes</code> is present (<a
href="https://redirect.github.com/astral-sh/ruff/pull/18047">#18047</a>)</li>
<li>[<code>flake8-pie</code>] Mark autofix for <code>PIE804</code> as
unsafe if the dictionary contains comments (<a
href="https://redirect.github.com/astral-sh/ruff/pull/18046">#18046</a>)</li>
<li>[<code>flake8-simplify</code>] Correct behavior for
<code>str.split</code>/<code>rsplit</code> with <code>maxsplit=0</code>
(<code>SIM905</code>) (<a
href="https://redirect.github.com/astral-sh/ruff/pull/18075">#18075</a>)</li>
<li>[<code>flake8-simplify</code>] Fix <code>SIM905</code> autofix for
<code>rsplit</code> creating a reversed list literal (<a
href="https://redirect.github.com/astral-sh/ruff/pull/18045">#18045</a>)</li>
<li>[<code>flake8-use-pathlib</code>] Suppress diagnostics for all
<code>os.*</code> functions that have the <code>dir_fd</code> parameter
(<code>PTH</code>) (<a
href="https://redirect.github.com/astral-sh/ruff/pull/17968">#17968</a>)</li>
<li>[<code>refurb</code>] Mark autofix as safe only for number literals
(<code>FURB116</code>) (<a
href="https://redirect.github.com/astral-sh/ruff/pull/17692">#17692</a>)</li>
</ul>
<h3>Rule changes</h3>
<ul>
<li>[<code>flake8-bandit</code>] Skip <code>S608</code> for
expressionless f-strings (<a
href="https://redirect.github.com/astral-sh/ruff/pull/17999">#17999</a>)</li>
<li>[<code>flake8-pytest-style</code>] Don't recommend
<code>usefixtures</code> for <code>parametrize</code> values
(<code>PT019</code>) (<a
href="https://redirect.github.com/astral-sh/ruff/pull/17650">#17650</a>)</li>
<li>[<code>pyupgrade</code>] Add <code>resource.error</code> as
deprecated alias of <code>OSError</code> (<code>UP024</code>) (<a
href="https://redirect.github.com/astral-sh/ruff/pull/17933">#17933</a>)</li>
</ul>
<h3>CLI</h3>
<ul>
<li>Disable jemalloc on Android (<a
href="https://redirect.github.com/astral-sh/ruff/pull/18033">#18033</a>)</li>
</ul>
<h3>Documentation</h3>
<ul>
<li>Update Neovim setup docs (<a
href="https://redirect.github.com/astral-sh/ruff/pull/18108">#18108</a>)</li>
<li>[<code>flake8-simplify</code>] Add fix safety section
(<code>SIM103</code>) (<a
href="https://redirect.github.com/astral-sh/ruff/pull/18086">#18086</a>)</li>
<li>[<code>flake8-simplify</code>] Add fix safety section
(<code>SIM112</code>) (<a
href="https://redirect.github.com/astral-sh/ruff/pull/18099">#18099</a>)</li>
<li>[<code>pylint</code>] Add fix safety section (<code>PLC0414</code>)
(<a
href="https://redirect.github.com/astral-sh/ruff/pull/17802">#17802</a>)</li>
<li>[<code>pylint</code>] Add fix safety section (<code>PLE4703</code>)
(<a
href="https://redirect.github.com/astral-sh/ruff/pull/17824">#17824</a>)</li>
<li>[<code>pylint</code>] Add fix safety section (<code>PLW1514</code>)
(<a
href="https://redirect.github.com/astral-sh/ruff/pull/17932">#17932</a>)</li>
<li>[<code>pylint</code>] Add fix safety section (<code>PLW3301</code>)
(<a
href="https://redirect.github.com/astral-sh/ruff/pull/17878">#17878</a>)</li>
<li>[<code>ruff</code>] Add fix safety section (<code>RUF007</code>) (<a
href="https://redirect.github.com/astral-sh/ruff/pull/17755">#17755</a>)</li>
<li>[<code>ruff</code>] Add fix safety section (<code>RUF033</code>) (<a
href="https://redirect.github.com/astral-sh/ruff/pull/17760">#17760</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/astral-sh/ruff/commit/b35bf8ae073a47e12a98eea3eb4818d3695ff302"><code>b35bf8a</code></a>
Bump 0.11.10 (<a
href="https://redirect.github.com/astral-sh/ruff/issues/18120">#18120</a>)</li>
<li><a
href="https://github.com/astral-sh/ruff/commit/279dac1c0e3b4625c328ec60272a0b6605d8a3e3"><code>279dac1</code></a>
[ty] Make dataclass instances adhere to DataclassInstance (<a
href="https://redirect.github.com/astral-sh/ruff/issues/18115">#18115</a>)</li>
<li><a
href="https://github.com/astral-sh/ruff/commit/57617031de659f0f080d0abbea466b0765f5bab8"><code>5761703</code></a>
[ty] Enable optimizations for salsa in debug profile (<a
href="https://redirect.github.com/astral-sh/ruff/issues/18117">#18117</a>)</li>
<li><a
href="https://github.com/astral-sh/ruff/commit/28b5a868d34048103ddbd5af4ba9bce6223fe263"><code>28b5a86</code></a>
[ty] Enable 'ansi' feature to fix compile error (<a
href="https://redirect.github.com/astral-sh/ruff/issues/18116">#18116</a>)</li>
<li><a
href="https://github.com/astral-sh/ruff/commit/b6b7caa0238b2f8fc455a3a6769f6ca9ae65c2af"><code>b6b7caa</code></a>
[ty] Change layout of extra verbose output and respect
<code>--color</code> for verbose ...</li>
<li><a
href="https://github.com/astral-sh/ruff/commit/46be305ad243a5286d4269b1f8e5fd67623d38c2"><code>46be305</code></a>
[ty] Include synthesized arguments in displayed counts for
`too-many-position...</li>
<li><a
href="https://github.com/astral-sh/ruff/commit/c3a4992ae9792d65137a5f1d47db63a0eb154e1f"><code>c3a4992</code></a>
[ty] Fix normalization of unions containing instances parameterized with
unio...</li>
<li><a
href="https://github.com/astral-sh/ruff/commit/9aa6330bb1433e4d7cd12a07a975a906c3f5b001"><code>9aa6330</code></a>
[ty] Fix <code>redundant-cast</code> false positives when casting to
<code>Unknown</code> (<a
href="https://redirect.github.com/astral-sh/ruff/issues/18111">#18111</a>)</li>
<li><a
href="https://github.com/astral-sh/ruff/commit/b600ff106abf235ab701847e66f406b623b9881f"><code>b600ff1</code></a>
Sync vendored typeshed stubs (<a
href="https://redirect.github.com/astral-sh/ruff/issues/18110">#18110</a>)</li>
<li><a
href="https://github.com/astral-sh/ruff/commit/466021d5e1793ca30e0d860cb1cd27e32f5233aa"><code>466021d</code></a>
[<code>flake8-simplify</code>] add fix safety section
(<code>SIM112</code>) (<a
href="https://redirect.github.com/astral-sh/ruff/issues/18099">#18099</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/astral-sh/ruff/compare/0.11.9...0.11.10">compare
view</a></li>
</ul>
</details>
<br />

Updates `tox` from 4.25.0 to 4.26.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/tox-dev/tox/releases">tox's
releases</a>.</em></p>
<blockquote>
<h2>4.26.0</h2>
<!-- raw HTML omitted -->
<h2>What's Changed</h2>
<ul>
<li>Add a missing quote in a TOML example @ <code>config.rst</code> by
<a href="https://github.com/webknjaz"><code>@​webknjaz</code></a> in <a
href="https://redirect.github.com/tox-dev/tox/pull/3509">tox-dev/tox#3509</a></li>
<li>Add colour to GitHub Actions CI logs by <a
href="https://github.com/hugovk"><code>@​hugovk</code></a> in <a
href="https://redirect.github.com/tox-dev/tox/pull/3525">tox-dev/tox#3525</a></li>
<li>Fix using deprecated virtualenv option <code>--wheel</code> by <a
href="https://github.com/robsdedude"><code>@​robsdedude</code></a> in <a
href="https://redirect.github.com/tox-dev/tox/pull/3528">tox-dev/tox#3528</a></li>
<li>Fix custom HelpFormatter for Python 3.14 by <a
href="https://github.com/The-Compiler"><code>@​The-Compiler</code></a>
in <a
href="https://redirect.github.com/tox-dev/tox/pull/3524">tox-dev/tox#3524</a></li>
<li>Drop support for EOL Python 3.8 by <a
href="https://github.com/hugovk"><code>@​hugovk</code></a> in <a
href="https://redirect.github.com/tox-dev/tox/pull/3527">tox-dev/tox#3527</a></li>
<li>Test with Python 3.14 by <a
href="https://github.com/edgarrmondragon"><code>@​edgarrmondragon</code></a>
in <a
href="https://redirect.github.com/tox-dev/tox/pull/3533">tox-dev/tox#3533</a></li>
<li>Fix for tox4 regression issue with setenv file and substitutions (<a
href="https://redirect.github.com/tox-dev/tox/issues/2435">#2435</a>) by
<a
href="https://github.com/realitycheck"><code>@​realitycheck</code></a>
in <a
href="https://redirect.github.com/tox-dev/tox/pull/3521">tox-dev/tox#3521</a></li>
<li>Feat: free-threaded python support by <a
href="https://github.com/robsdedude"><code>@​robsdedude</code></a> in <a
href="https://redirect.github.com/tox-dev/tox/pull/3526">tox-dev/tox#3526</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a
href="https://github.com/edgarrmondragon"><code>@​edgarrmondragon</code></a>
made their first contribution in <a
href="https://redirect.github.com/tox-dev/tox/pull/3533">tox-dev/tox#3533</a></li>
<li><a
href="https://github.com/realitycheck"><code>@​realitycheck</code></a>
made their first contribution in <a
href="https://redirect.github.com/tox-dev/tox/pull/3521">tox-dev/tox#3521</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/tox-dev/tox/compare/4.25.0...4.26.0">https://github.com/tox-dev/tox/compare/4.25.0...4.26.0</a></p>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/tox-dev/tox/blob/main/docs/changelog.rst">tox's
changelog</a>.</em></p>
<blockquote>
<h2>v4.26.0 (2025-05-13)</h2>
<p>Features - 4.26.0</p>
<pre><code>- Add support for free-threaded python builds.
Factors like ``py313t`` will only pick builds with the GIL disabled
while factors without trailing ``t`` will only pick
  builds without no-GIL support. (:issue:`3391`)
- Drop support for EOL Python 3.8. (:issue:`3527`)
<p>Bugfixes - 4.26.0
</code></pre></p>
<ul>
<li>Fix a regression issue related to inability to use
<code>file|</code> substitution option in nested <code>set_env</code>
sections of <code>ini</code> configurations since tox4 update.
(:issue:<code>2435</code>)</li>
<li>Fix <code>TypeError</code> for <code>HelpFormatter</code> with
Python 3.14 (:issue:<code>3523</code>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/tox-dev/tox/commit/7c3fae80cf4a68e126a3ae222ceebdc82cc44b68"><code>7c3fae8</code></a>
release 4.26.0</li>
<li><a
href="https://github.com/tox-dev/tox/commit/92d4ed35c7dd4ae3bd1dc5cc7479a43850ff50b9"><code>92d4ed3</code></a>
Feat: free-threaded python support (<a
href="https://redirect.github.com/tox-dev/tox/issues/3526">#3526</a>)</li>
<li><a
href="https://github.com/tox-dev/tox/commit/957f2f8a35f9519a3b01327888fac2e01f45d066"><code>957f2f8</code></a>
Fix for tox4 regression issue with setenv file and substitutions (<a
href="https://redirect.github.com/tox-dev/tox/issues/2435">#2435</a>)
(<a
href="https://redirect.github.com/tox-dev/tox/issues/3521">#3521</a>)</li>
<li><a
href="https://github.com/tox-dev/tox/commit/5f07ba85828cca7967c934f2ad50c6a0410406dc"><code>5f07ba8</code></a>
Test with Python 3.14 (<a
href="https://redirect.github.com/tox-dev/tox/issues/3533">#3533</a>)</li>
<li><a
href="https://github.com/tox-dev/tox/commit/50e51eb8f17352f4ccbb0c2752157afdb622c3ed"><code>50e51eb</code></a>
Drop support for EOL Python 3.8 (<a
href="https://redirect.github.com/tox-dev/tox/issues/3527">#3527</a>)</li>
<li><a
href="https://github.com/tox-dev/tox/commit/19126daf113a05a10e53a93887b3a0d990a82df6"><code>19126da</code></a>
Fix custom HelpFormatter for Python 3.14 (<a
href="https://redirect.github.com/tox-dev/tox/issues/3524">#3524</a>)</li>
<li><a
href="https://github.com/tox-dev/tox/commit/f082f80fc80411c052c2cf0e27e953568eac2ce9"><code>f082f80</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/tox-dev/tox/issues/3522">#3522</a>)</li>
<li><a
href="https://github.com/tox-dev/tox/commit/51aac32e79261f2cbdb0251fb7932bc270e3f023"><code>51aac32</code></a>
Fix using deprecated virtualenv option <code>--wheel</code> (<a
href="https://redirect.github.com/tox-dev/tox/issues/3528">#3528</a>)</li>
<li><a
href="https://github.com/tox-dev/tox/commit/b770ed5b49a579a2d01303b971c4c33a90a8b00a"><code>b770ed5</code></a>
Add colour to CI logs (<a
href="https://redirect.github.com/tox-dev/tox/issues/3525">#3525</a>)</li>
<li><a
href="https://github.com/tox-dev/tox/commit/4a8e50e2cdd420d0b058b747092dbfc72192db51"><code>4a8e50e</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/tox-dev/tox/issues/3520">#3520</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/tox-dev/tox/compare/4.25.0...4.26.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `types-jsonschema` from 4.23.0.20241208 to 4.23.0.20250516
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a
href="https://github.com/typeshed-internal/stub_uploader/commits">compare
view</a></li>
</ul>
</details>
<br />

Updates `types-pexpect` from 4.9.0.20241208 to 4.9.0.20250516
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a
href="https://github.com/typeshed-internal/stub_uploader/commits">compare
view</a></li>
</ul>
</details>
<br />

Updates `types-pyyaml` from 6.0.12.20250402 to 6.0.12.20250516
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a
href="https://github.com/typeshed-internal/stub_uploader/commits">compare
view</a></li>
</ul>
</details>
<br />

Updates `ansible-compat` from 25.1.5 to 25.5.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/ansible/ansible-compat/releases">ansible-compat's
releases</a>.</em></p>
<blockquote>
<h2>v25.5.0</h2>
<h2>Bugfixes</h2>
<ul>
<li>Enable junit.xml reporting to codecov.io (<a
href="https://redirect.github.com/ansible/ansible-compat/issues/486">#486</a>)
<a href="https://github.com/Qalthos"><code>@​Qalthos</code></a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/ansible/ansible-compat/commit/ad6f3ad118eb5f01a0e317fc35e3d5a52f7c82eb"><code>ad6f3ad</code></a>
Bump the dependencies group in /.config with 5 updates (<a
href="https://redirect.github.com/ansible/ansible-compat/issues/490">#490</a>)</li>
<li><a
href="https://github.com/ansible/ansible-compat/commit/4ea49657073f6995ce6d635a6533c577f5110373"><code>4ea4965</code></a>
chore: pre-commit autoupdate (<a
href="https://redirect.github.com/ansible/ansible-compat/issues/488">#488</a>)</li>
<li><a
href="https://github.com/ansible/ansible-compat/commit/0f117ee7d442856bd641eefb1d7b062a3ff8c261"><code>0f117ee</code></a>
Bump the dependencies group in /.config with 4 updates (<a
href="https://redirect.github.com/ansible/ansible-compat/issues/487">#487</a>)</li>
<li><a
href="https://github.com/ansible/ansible-compat/commit/7ef803673b7e1ce154565ba9058d2a4b2b2c55af"><code>7ef8036</code></a>
Enable junit.xml reporting to codecov.io (<a
href="https://redirect.github.com/ansible/ansible-compat/issues/486">#486</a>)</li>
<li><a
href="https://github.com/ansible/ansible-compat/commit/4fc4eec3e7d9162abf3a41650f86e8be2a2c343a"><code>4fc4eec</code></a>
Bump the dependencies group in /.config with 4 updates (<a
href="https://redirect.github.com/ansible/ansible-compat/issues/485">#485</a>)</li>
<li><a
href="https://github.com/ansible/ansible-compat/commit/e63f33479bb2b8fac6f778a9dd8bdd23c57df0b2"><code>e63f334</code></a>
Bump the dependencies group in /.config with 4 updates (<a
href="https://redirect.github.com/ansible/ansible-compat/issues/484">#484</a>)</li>
<li><a
href="https://github.com/ansible/ansible-compat/commit/f3e6647aeb1b54870bf6fc38f0cce40758c9725d"><code>f3e6647</code></a>
Bump the dependencies group in /.config with 3 updates (<a
href="https://redirect.github.com/ansible/ansible-compat/issues/483">#483</a>)</li>
<li><a
href="https://github.com/ansible/ansible-compat/commit/93a7da98a961ef09adfa1c6cf3ea2393b963e1b3"><code>93a7da9</code></a>
chore: pre-commit autoupdate (<a
href="https://redirect.github.com/ansible/ansible-compat/issues/482">#482</a>)</li>
<li><a
href="https://github.com/ansible/ansible-compat/commit/8e0d07fefd303da4ab527ec82947203f1fed6c79"><code>8e0d07f</code></a>
Bump mkdocstrings-python in /.config in the dependencies group (<a
href="https://redirect.github.com/ansible/ansible-compat/issues/481">#481</a>)</li>
<li>See full diff in <a
href="https://github.com/ansible/ansible-compat/compare/v25.1.5...v25.5.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `cairosvg` from 2.7.1 to 2.8.2
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/Kozea/CairoSVG/releases">cairosvg's
releases</a>.</em></p>
<blockquote>
<h2>2.8.2</h2>
<ul>
<li>Allow both Unicode strings and bytes as input</li>
</ul>
<h2>2.8.1</h2>
<ul>
<li>Allow both text- and bytes-based file objects as input</li>
</ul>
<h2>2.8.0</h2>
<ul>
<li>Drop support of Python 3.7 and 3.8, add support of Python 3.12 and
3.13</li>
<li>Optimize math operations</li>
<li>Use pathlib</li>
<li>Close paths for ellipses and circles</li>
<li>Fix output ratio for SVG surfaces</li>
<li>Avoid endless loops when updating def attributes</li>
<li>Round PNG size</li>
<li>Don’t crash when more than 2 values are given to translate and scale
functions</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/Kozea/CairoSVG/blob/main/NEWS.rst">cairosvg's
changelog</a>.</em></p>
<blockquote>
<h1>Version 2.8.2 released on 2025-05-15</h1>
<ul>
<li>Allow both Unicode strings and bytes as input</li>
</ul>
<h1>Version 2.8.1 released on 2025-05-14</h1>
<ul>
<li>Allow both text- and bytes-based file objects as input</li>
</ul>
<h1>Version 2.8.0 released on 2025-05-12</h1>
<ul>
<li>Drop support of Python 3.7 and 3.8, add support of Python 3.12 and
3.13</li>
<li>Optimize math operations</li>
<li>Use pathlib</li>
<li>Close paths for ellipses and circles</li>
<li>Fix output ratio for SVG surfaces</li>
<li>Avoid endless loops when updating def attributes</li>
<li>Round PNG size</li>
<li>Don’t crash when more than 2 values are given to translate and scale
functions</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/Kozea/CairoSVG/commit/9e8c6ede00dd1c4495fca4809b4cabd628a85eb9"><code>9e8c6ed</code></a>
Version 2.8.2</li>
<li><a
href="https://github.com/Kozea/CairoSVG/commit/1c28b57bea389257f8a9ca01e9d1af5b98362050"><code>1c28b57</code></a>
De-duplicate input string encoding</li>
<li><a
href="https://github.com/Kozea/CairoSVG/commit/b4670eca955cb65eff8f6f8b1d1a457a2a3d3a3d"><code>b4670ec</code></a>
Merge pull request <a
href="https://redirect.github.com/Kozea/CairoSVG/issues/443">#443</a>
from marcelometal/ensure-bytestring-type-before-gzip</li>
<li><a
href="https://github.com/Kozea/CairoSVG/commit/245b3f20470b216c6254cd4ac1f250b2c5913716"><code>245b3f2</code></a>
Ensure bytestring is bytes before checking for gzip header</li>
<li><a
href="https://github.com/Kozea/CairoSVG/commit/e5128ec50c305bfd6f0c9eb6e77726e6c86817a8"><code>e5128ec</code></a>
Version 2.8.1</li>
<li><a
href="https://github.com/Kozea/CairoSVG/commit/abdb8f9bbe42f1cf62b85f6fb5350cb9b485a66c"><code>abdb8f9</code></a>
Allow both text- and bytes-based file objects as input</li>
<li><a
href="https://github.com/Kozea/CairoSVG/commit/37952cde77960d43c0e62ac7632d4929e9199433"><code>37952cd</code></a>
Version 2.8.0</li>
<li><a
href="https://github.com/Kozea/CairoSVG/commit/5b1c86010f6a44aa783bdfec4db2955b8877a5ac"><code>5b1c860</code></a>
Update setup.cfg</li>
<li><a
href="https://github.com/Kozea/CairoSVG/commit/500391d99c344c3a3fc802fd16240926b5a38cc4"><code>500391d</code></a>
Update supported Python versions</li>
<li><a
href="https://github.com/Kozea/CairoSVG/commit/abafa8ae248dc9cef0349adaa2f61849ea56920c"><code>abafa8a</code></a>
Don’t crash when more than 2 values are given to translate and
scale</li>
<li>Additional commits viewable in <a
href="https://github.com/Kozea/CairoSVG/compare/2.7.1...2.8.2">compare
view</a></li>
</ul>
</details>
<br />

Updates `cryptography` from 44.0.3 to 45.0.2
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/pyca/cryptography/blob/main/CHANGELOG.rst">cryptography's
changelog</a>.</em></p>
<blockquote>
<p>45.0.2 - 2025-05-17</p>
<pre><code>
* Fixed using ``mypy`` with ``cryptography`` on older versions of
Python.
<p>.. _v45-0-1:</p>
<p>45.0.1 - 2025-05-17<br />
</code></pre></p>
<ul>
<li>Updated Windows, macOS, and Linux wheels to be compiled with OpenSSL
3.5.0.</li>
</ul>
<p>.. _v45-0-0:</p>
<p>45.0.0 - 2025-05-17 (YANKED)</p>
<pre><code>
* Support for Python 3.7 is deprecated and will be removed in the next
  ``cryptography`` release.
* Updated the minimum supported Rust version (MSRV) to 1.74.0, from
1.65.0.
* Added support for serialization of PKCS#12 Java truststores in

:func:`~cryptography.hazmat.primitives.serialization.pkcs12.serialize_java_truststore`
* Added
:meth:`~cryptography.hazmat.primitives.kdf.argon2.Argon2id.derive_phc_encoded`
and

:meth:`~cryptography.hazmat.primitives.kdf.argon2.Argon2id.verify_phc_encoded`
methods
  to support password hashing in the PHC string format
* Added support for PKCS7 decryption and encryption using AES-256 as the
  content algorithm, in addition to AES-128.
* **BACKWARDS INCOMPATIBLE:** Made SSH private key loading more
consistent with
  other private key loading:

:func:`~cryptography.hazmat.primitives.serialization.load_ssh_private_key`
  now raises a ``TypeError`` if the key is unencrypted but a password is
provided (previously no exception was raised), and raises a
``TypeError`` if
the key is encrypted but no password is provided (previously a
``ValueError``
  was raised).
* We significantly refactored how private key loading (

:func:`~cryptography.hazmat.primitives.serialization.load_pem_private_key`
  and

:func:`~cryptography.hazmat.primitives.serialization.load_der_private_key`)
works. This is intended to be backwards compatible for all well-formed
keys,
therefore if you discover a key that now raises an exception, please
file a
  bug with instructions for reproducing.
* Added ``unsafe_skip_rsa_key_validation`` keyword-argument to

:func:`~cryptography.hazmat.primitives.serialization.load_ssh_private_key`.
* Added :class:`~cryptography.hazmat.primitives.hashes.XOFHash` to
support
repeated :meth:`~cryptography.hazmat.primitives.hashes.XOFHash.squeeze`
  operations on extendable output functions.
* Added

:meth:`~cryptography.x509.ocsp.OCSPResponseBuilder.add_response_by_hash`
method to allow creating OCSP responses using certificate hash values
rather
  than full certificates.
&lt;/tr&gt;&lt;/table&gt; 
</code></pre>
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/pyca/cryptography/commit/f81c07535ddf2d26cb1a27e70a9967ab708b8056"><code>f81c075</code></a>
Backport mypy fixes for release (<a
href="https://redirect.github.com/pyca/cryptography/issues/12930">#12930</a>)</li>
<li><a
href="https://github.com/pyca/cryptography/commit/8ea28e0bc724e57433f4f062795d91c0a367e9ad"><code>8ea28e0</code></a>
bump for 45.0.1 (<a
href="https://redirect.github.com/pyca/cryptography/issues/12922">#12922</a>)</li>
<li><a
href="https://github.com/pyca/cryptography/commit/67840977c95a23d0dcfba154e303014026df0d3e"><code>6784097</code></a>
bump for 45 release (<a
href="https://redirect.github.com/pyca/cryptography/issues/12886">#12886</a>)</li>
<li><a
href="https://github.com/pyca/cryptography/commit/2d9c1c9cbe650f2888c14476a4b30ef85d3fd2bc"><code>2d9c1c9</code></a>
bump MSRV to 1.74 (<a
href="https://redirect.github.com/pyca/cryptography/issues/12919">#12919</a>)</li>
<li><a
href="https://github.com/pyca/cryptography/commit/6c18874cc2e76f173b77c67609cfb4d3495964c3"><code>6c18874</code></a>
Bump BoringSSL, OpenSSL, AWS-LC in CI (<a
href="https://redirect.github.com/pyca/cryptography/issues/12918">#12918</a>)</li>
<li><a
href="https://github.com/pyca/cryptography/commit/43fd312aea73e4ad79a54c78848e73bf5a640336"><code>43fd312</code></a>
add test vectors for upcoming explicit curve loading (<a
href="https://redirect.github.com/pyca/cryptography/issues/12913">#12913</a>)</li>
<li><a
href="https://github.com/pyca/cryptography/commit/6bfa0a31256a631a0543e3b0cee5a101f1ac3d3f"><code>6bfa0a3</code></a>
chore(deps): bump asn1 from 0.21.2 to 0.21.3 (<a
href="https://redirect.github.com/pyca/cryptography/issues/12914">#12914</a>)</li>
<li><a
href="https://github.com/pyca/cryptography/commit/a88dd6635c19ef282e0a6469a9604fef096cc843"><code>a88dd66</code></a>
chore(deps): bump cc from 1.2.22 to 1.2.23 (<a
href="https://redirect.github.com/pyca/cryptography/issues/12912">#12912</a>)</li>
<li><a
href="https://github.com/pyca/cryptography/commit/e4e98407e866064b55dfcad599117995279cecf6"><code>e4e9840</code></a>
chore(deps): bump uv from 0.7.3 to 0.7.4 in /.github/requirements (<a
href="https://redirect.github.com/pyca/cryptography/issues/12911">#12911</a>)</li>
<li><a
href="https://github.com/pyca/cryptography/commit/e140233902db423f031d79237533aacfe96ba119"><code>e140233</code></a>
chore(deps): bump uv from 0.7.3 to 0.7.4 (<a
href="https://redirect.github.com/pyca/cryptography/issues/12910">#12910</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/pyca/cryptography/compare/44.0.3...45.0.2">compare
view</a></li>
</ul>
</details>
<br />

Updates `mkdocs-ansible` from 25.2.0 to 25.5.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/ansible/mkdocs-ansible/releases">mkdocs-ansible's
releases</a>.</em></p>
<blockquote>
<h2>v25.5.0</h2>
<h2>Bugfixes</h2>
<ul>
<li>Remove mkdocs-monorepo-plugin (<a
href="https://redirect.github.com/ansible/mkdocs-ansible/issues/212">#212</a>)
<a href="https://github.com/ssbarnea"><code>@​ssbarnea</code></a></li>
<li>Pin down cairosvg&lt;2.8.0 due to mkdocs-material bug (<a
href="https://redirect.github.com/ansible/mkdocs-ansible/issues/211">#211</a>)
<a href="https://github.com/ssbarnea"><code>@​ssbarnea</code></a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/ansible/mkdocs-ansible/commit/55c94c1cd93e6cd5f75f25ed345e036a8fcae003"><code>55c94c1</code></a>
Remove mkdocs-monorepo-plugin (<a
href="https://redirect.github.com/ansible/mkdocs-ansible/issues/212">#212</a>)</li>
<li><a
href="https://github.com/ansible/mkdocs-ansible/commit/60339386c9f0c5f63b22b38fb342c8c10066e79e"><code>6033938</code></a>
Bump the dependencies group in /.config with 4 updates (<a
href="https://redirect.github.com/ansible/mkdocs-ansible/issues/210">#210</a>)</li>
<li><a
href="https://github.com/ansible/mkdocs-ansible/commit/23681e896cdafee26dac3beef6569a862340a288"><code>23681e8</code></a>
Pin down cairosvg due to mkdocs-material bug (<a
href="https://redirect.github.com/ansible/mkdocs-ansible/issues/211">#211</a>)</li>
<li><a
href="https://github.com/ansible/mkdocs-ansible/commit/8547dc0300a54dbabb8b367123701c6929934045"><code>8547dc0</code></a>
chore: pre-commit autoupdate (<a
href="https://redirect.github.com/ansible/mkdocs-ansible/issues/209">#209</a>)</li>
<li><a
href="https://github.com/ansible/mkdocs-ansible/commit/60a6df006061de890d370fae1029080372712c67"><code>60a6df0</code></a>
Bump the dependencies group in /.config with 3 updates (<a
href="https://redirect.github.com/ansible/mkdocs-ansible/issues/208">#208</a>)</li>
<li><a
href="https://github.com/ansible/mkdocs-ansible/commit/293df0b5520ab41d99bf0080fbf75e106b3c0bb9"><code>293df0b</code></a>
Bump the dependencies group in /.config with 3 updates (<a
href="https://redirect.github.com/ansible/mkdocs-ansible/issues/207">#207</a>)</li>
<li><a
href="https://github.com/ansible/mkdocs-ansible/commit/2c1ec6533ee65f296193da95e9a7decaf75f05a4"><code>2c1ec65</code></a>
Bump the dependencies group in /.config with 3 updates (<a
href="https://redirect.github.com/ansible/mkdocs-ansible/issues/206">#206</a>)</li>
<li><a
href="https://github.com/ansible/mkdocs-ansible/commit/14079437fa3e89b3ddbbeaec747a31ae428f4c47"><code>1407943</code></a>
Bump the dependencies group in /.config with 4 updates (<a
href="https://redirect.github.com/ansible/mkdocs-ansible/issues/205">#205</a>)</li>
<li><a
href="https://github.com/ansible/mkdocs-ansible/commit/5f9326abee18c9f4da297981e5fa8a7b6682e6ab"><code>5f9326a</code></a>
chore: pre-commit autoupdate (<a
href="https://redirect.github.com/ansible/mkdocs-ansible/issues/204">#204</a>)</li>
<li><a
href="https://github.com/ansible/mkdocs-ansible/commit/f02c2aa2065155a1fdc3f510eda91fcc0f0e828d"><code>f02c2aa</code></a>
Bump the dependencies group in /.config with 7 updates (<a
href="https://redirect.github.com/ansible/mkdocs-ansible/issues/203">#203</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/ansible/mkdocs-ansible/compare/v25.2.0...v25.5.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `mkdocs-material` from 9.6.13 to 9.6.14
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/squidfunk/mkdocs-material/releases">mkdocs-material's
releases</a>.</em></p>
<blockquote>
<h2>mkdocs-material-9.6.14</h2>
<ul>
<li>Fixed <a
href="https://redirect.github.com/squidfunk/mkdocs-material/issues/8215">#8215</a>:
Social plugin crashes when CairoSVG is updated to 2.8</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/squidfunk/mkdocs-material/blob/master/CHANGELOG">mkdocs-material's
changelog</a>.</em></p>
<blockquote>
<p>mkdocs-material-9.6.14 (2025-05-13)</p>
<ul>
<li>Fixed <a
href="https://redirect.github.com/squidfunk/mkdocs-material/issues/8215">#8215</a>:
Social plugin crashes when CairoSVG is updated to 2.8</li>
</ul>
<p>mkdocs-material-9.6.13 (2025-05-10)</p>
<ul>
<li>Fixed <a
href="https://redirect.github.com/squidfunk/mkdocs-material/issues/8204">#8204</a>:
Annotations showing list markers in print view</li>
<li>Fixed <a
href="https://redirect.github.com/squidfunk/mkdocs-material/issues/8153">#8153</a>:
Improve style of cardinality symbols in Mermaid.js ER diagrams</li>
</ul>
<p>mkdocs-material-9.6.12 (2025-04-17)</p>
<ul>
<li>Fixed <a
href="https://redirect.github.com/squidfunk/mkdocs-material/issues/8158">#8158</a>:
Flip footnote back reference icon for right-to-left languages</li>
</ul>
<p>mkdocs-material-9.6.11 (2025-04-01)</p>
<ul>
<li>Updated Docker image to latest Alpine Linux</li>
<li>Bump required Jinja version to 3.1</li>
<li>Fixed <a
href="https://redirect.github.com/squidfunk/mkdocs-material/issues/8133">#8133</a>:
Jinja filter <code>items</code> not available (9.6.10 regression)</li>
<li>Fixed <a
href="https://redirect.github.com/squidfunk/mkdocs-material/issues/8128">#8128</a>:
Search plugin not entirely disabled via enabled setting</li>
</ul>
<p>mkdocs-material-9.6.10 (2025-03-30)</p>
<p>This version is a pure refactoring release, and does not contain new
features
or bug fixes. It strives to improve the compatibility of our templates
with
alternative Jinja-like template engines that we're currently exploring,
including minijinja.</p>
<p>Additionally, it replaces several instances of Python function
invocations
with idiomatic use of template filters. All instances where variables
have
been mutated inside templates have been replaced. Most changes have been
made
in partials, and only a few in blocks, and all of them are fully
backward
compatible, so no changes to overrides are necessary.</p>
<p>Note that this release does not replace the Jinja template engine
with
minijinja. However, our templates are now 99% compatible with minijinja,
which means we can explore alternative Jinja-compatible implementations.
Additionally, immutability and removal of almost all Python function
invocations means much more idiomatic templating.</p>
<p>mkdocs-material-9.6.9 (2025-03-17)</p>
<ul>
<li>Updated Serbo-Croatian translations</li>
<li>Fixed <a
href="https://redirect.github.com/squidfunk/mkdocs-material/issues/8086">#8086</a>:
Custom SVG icons containing hashes break rendering</li>
<li>Fixed <a
href="https://redirect.github.com/squidfunk/mkdocs-material/issues/8067">#8067</a>:
Drawer has gap on right side in Firefox on some OSs</li>
</ul>
<p>mkdocs-material-9.6.8+insiders-4.53.16 (2025-03-13)</p>
<ul>
<li>Fixed <a
href="https://redirect.github.com/squidfunk/mkdocs-material/issues/8019">#8019</a>:
Tooltips have precedence over instant previews</li>
</ul>
<p>mkdocs-material-9.6.8 (2025-03-13)</p>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/squidfunk/mkdocs-material/commit/2e9bd81018958357a3f96457a7251e3d42866c81"><code>2e9bd81</code></a>
Prepare 9.6.14 release</li>
<li><a
href="https://github.com/squidfunk/mkdocs-material/commit/e45972a8cd183ab8fcede2ac630eff84d9137acb"><code>e45972a</code></a>
Fixed social plugin crashing for CairoSVG &gt;= 2.8</li>
<li><a
href="https://github.com/squidfunk/mkdocs-material/commit/bce053afc3a7199e7b10de710ef1506700953061"><code>bce053a</code></a>
Fixed social plugin crashing for CairoSVG &gt;= 2.8</li>
<li><a
href="https://github.com/squidfunk/mkdocs-material/commit/ca656243deeaf588c6d591a2c24cb57bbe9347d0"><code>ca65624</code></a>
Updated changelog</li>
<li>See full diff in <a
href="https://github.com/squidfunk/mkdocs-material/compare/9.6.13...9.6.14">compare
view</a></li>
</ul>
</details>
<br />

Updates `pluggy` from 1.5.0 to 1.6.0
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/pytest-dev/pluggy/blob/main/CHANGELOG.rst">pluggy's
changelog</a>.</em></p>
<blockquote>
<h1>pluggy 1.6.0 (2025-05-15)</h1>
<h2>Deprecations and Removals</h2>
<ul>
<li><code>[#556](https://github.com/pytest-dev/pluggy/issues/556)
&lt;https://github.com/pytest-dev/pluggy/issues/556&gt;</code>_: Python
3.8 is no longer supported.</li>
</ul>
<h2>Bug Fixes</h2>
<ul>
<li>
<p><code>[#504](https://github.com/pytest-dev/pluggy/issues/504)
&lt;https://github.com/pytest-dev/pluggy/issues/504&gt;</code>_: Fix a
regression in pluggy 1.1.0 where using :func:<code>result.get_result()
&lt;pluggy.Result.get_result&gt;</code> on the same failed
:class:<code>~pluggy.Result</code> causes the exception's traceback to
get longer and longer.</p>
</li>
<li>
<p><code>[#544](https://github.com/pytest-dev/pluggy/issues/544)
&lt;https://github.com/pytest-dev/pluggy/issues/544&gt;</code>_:
Correctly pass :class:<code>StopIteration</code> through hook
wrappers.</p>
<p>Raising a :class:<code>StopIteration</code> in a generator triggers a
:class:<code>RuntimeError</code>.</p>
<p>If the :class:<code>RuntimeError</code> of a generator has the passed
in :class:<code>StopIteration</code> as cause
resume with that :class:<code>StopIteration</code> as normal exception
instead of failing with the :class:<code>RuntimeError</code>.</p>
</li>
<li>
<p><code>[#573](https://github.com/pytest-dev/pluggy/issues/573)
&lt;https://github.com/pytest-dev/pluggy/issues/573&gt;</code>_: Fix
python 3.14 SyntaxError by rearranging code.</p>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/fd08ab5f811a9b2fa9124ae8cbbd393221151e2c"><code>fd08ab5</code></a>
Preparing release 1.6.0</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/c240362152d6f354a4056bfd6d28560e226fb70b"><code>c240362</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/pytest-dev/pluggy/issues/578">#578</a>)</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/0ceb558860b5e228b67adbe8c19a368802e7d324"><code>0ceb558</code></a>
Merge pull request <a
href="https://redirect.github.com/pytest-dev/pluggy/issues/546">#546</a>
from RonnyPfannschmidt/ronny/hookwrapper-wrap-legacy</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/1f4872e8cb2547dacea155a27f94f75e7e8f66ae"><code>1f4872e</code></a>
[pre-commit.ci] auto fixes from pre-commit.com hooks</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/4be0c554ea22ca01c7dc30ecccac413a412c1ea7"><code>4be0c55</code></a>
add changelog</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/615c6c57c2de62bd9652b59c7a89b3e1fcef08ae"><code>615c6c5</code></a>
Merge branch 'main' into hookwrapper-wrap-legacy</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/2acc644f2ead34ac3a154bff2566037480b5c310"><code>2acc644</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/pytest-dev/pluggy/issues/577">#577</a>)</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/ea5ada08d36d71bbd1f4e0c8472f8f9a4b210a2d"><code>ea5ada0</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/pytest-dev/pluggy/issues/576">#576</a>)</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/dfd250bcfc3d73f72693d4f14cf48bb737ded9f0"><code>dfd250b</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/pytest-dev/pluggy/issues/575">#575</a>)</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/1e1862fe458b663728b7523bee2c407455836931"><code>1e1862f</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/pytest-dev/pluggy/issues/574">#574</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/pytest-dev/pluggy/compare/1.5.0...1.6.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `pyproject-api` from 1.9.0 to 1.9.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/tox-dev/pyproject-api/releases">pyproject-api's
releases</a>.</em></p>
<blockquote>
<h2>1.9.1</h2>
<!-- raw HTML omitted -->
<h2>What's Changed</h2>
<ul>
<li>Fix the CI by <a
href="https://github.com/gaborbernat"><code>@​gaborbernat</code></a> in
<a
href="https://redirect.github.com/tox-dev/pyproject-api/pull/177">tox-dev/pyproject-api#177</a></li>
<li>Wheel is not part of the default requries by <a
href="https://github.com/gaborbernat"><code>@​gaborbernat</code></a> in
<a
href="https://redirect.github.com/tox-dev/pyproject-api/pull/192">tox-dev/pyproject-api#192</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/tox-dev/pyproject-api/compare/1.9.0...1.9.1">https://github.com/tox-dev/pyproject-api/compare/1.9.0...1.9.1</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/tox-dev/pyproject-api/commit/651b63254b5558399909cf3e041d5d4c71b6c802"><code>651b632</code></a>
Wheel is not part of the defautl requries (<a
href="https://redirect.github.com/tox-dev/pyproject-api/issues/192">#192</a>)</li>
<li><a
href="https://github.com/tox-dev/pyproject-api/commit/46dc443b1a33599fb76f869bd911fd4827eafb0d"><code>46dc443</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/tox-dev/pyproject-api/issues/191">#191</a>)</li>
<li><a
href="https://github.com/tox-dev/pyproject-api/commit/77e24eaee4d98088e3b0be99f833dbf131ea555e"><code>77e24ea</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/tox-dev/pyproject-api/issues/190">#190</a>)</li>
<li><a
href="https://github.com/tox-dev/pyproject-api/commit/7dabcb50489bf06df86ac0266155334a65e3d9a7"><code>7dabcb5</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/tox-dev/pyproject-api/issues/188">#188</a>)</li>
<li><a
href="https://github.com/tox-dev/pyproject-api/commit/421f6737fd66caa69db68c298bbf66b45474787d"><code>421f673</code></a>
Bump astral-sh/setup-uv from 5 to 6 (<a
href="https://redirect.github.com/tox-dev/pyproject-api/issues/189">#189</a>)</li>
<li><a
href="https://github.com/tox-dev/pyproject-api/commit/6d087833d1bfcffb1987a794eb231181639d9c14"><code>6d08783</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/tox-dev/pyproject-api/issues/187">#187</a>)</li>
<li><a
href="https://github.com/tox-dev/pyproject-api/commit/db49afc10e8642e04c473df98cead2eaabdc5454"><code>db49afc</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/tox-dev/pyproject-api/issues/186">#186</a>)</li>
<li><a
href="https://github.com/tox-dev/pyproject-api/commit/58d27553e188e791515d5d6bd30a93784e5dfed4"><code>58d2755</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/tox-dev/pyproject-api/issues/185">#185</a>)</li>
<li><a
href="https://github.com/tox-dev/pyproject-api/commit/52515450c03e0ac498c164ae610203b28ad3bde3"><code>5251545</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/tox-dev/pyproject-api/issues/184">#184</a>)</li>
<li><a
href="https://github.com/tox-dev/pyproject-api/commit/795f1a4b5bef405a4a23bbe7fa111007d149387d"><code>795f1a4</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/tox-dev/pyproject-api/issues/183">#183</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/tox-dev/pyproject-api/compare/1.9.0...1.9.1">compare
view</a></li>
</ul>
</details>
<br />

Updates `pyyaml-env-tag` from 1.0 to 1.1
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/waylan/pyyaml-env-tag/commit/8f43568693ebd7fcad5c3b79ef6ce0072225914f"><code>8f43568</code></a>
Bump version to 1.1</li>
<li><a
href="https://github.com/waylan/pyyaml-env-tag/commit/84d2d1c358a5771ef7e188427f648dd65aeb12c3"><code>84d2d1c</code></a>
Move tests to tests/ dir</li>
<li>See full diff in <a
href="https://github.com/waylan/pyyaml-env-tag/compare/1.0...1.1">compare
view</a></li>
</ul>
</details>
<br />

Updates `rpds-py` from 0.24.0 to 0.25.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/crate-py/rpds/releases">rpds-py's
releases</a>.</em></p>
<blockquote>
<h2>v0.25.0</h2>
<!-- raw HTML omitted -->
<h2>What's Changed</h2>
<ul>
<li>Bump PyO3 to 0.25 by <a
href="https://github.com/edgarrmondragon"><code>@​edgarrmondragon</code></a>
in <a
href="https://redirect.github.com/crate-py/rpds/pull/135">crate-py/rpds#135</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a
href="https://github.com/edgarrmondragon"><code>@​edgarrmondragon</code></a>
made their first contribution in <a
href="https://redirect.github.com/crate-py/rpds/pull/135">crate-py/rpds#135</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/crate-py/rpds/compare/v0.24.0...v0.25.0">https://github.com/crate-py/rpds/compare/v0.24.0...v0.25.0</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/crate-py/rpds/commit/f4070f93e6fa9e39749f395d01c18450d110e0ed"><code>f4070f9</code></a>
Release v0.25.0.</li>
<li><a
href="https://github.com/crate-py/rpds/commit/2550d1d0429d5a0b2cb65734c8d7b068ac598845"><code>2550d1d</code></a>
Update dependencies.</li>
<li><a
href="https://github.com/crate-py/rpds/commit/391efe2ed5f1c52f75b395b0de5b766daf229ce6"><code>391efe2</code></a>
Merge pull request <a
href="https://redirect.github.com/crate-py/rpds/issues/135">#135</a>
from edgarrmondragon/pyo3-0.25</li>
<li><a
href="https://github.com/crate-py/rpds/commit/f8ad05f251787dfa562b8519082059d63bdc9987"><code>f8ad05f</code></a>
Bump PyO3 to 0.25</li>
<li><a
href="https://github.com/crate-py/rpds/commit/389ab4e75735046fd0806f2a8e833bc1829947e3"><code>389ab4e</code></a>
Merge pull request <a
href="https://redirect.github.com/crate-py/rpds/issues/130">#130</a>
from crate-py/dependabot/cargo/pyo3-0.24.2</li>
<li><a
href="https://github.com/crate-py/rpds/commit/75f397c8879ab4d8b291a41cd93a3feafa2d7b3c"><code>75f397c</code></a>
Bump pyo3 from 0.24.1 to 0.24.2</li>
<li><a
href="https://github.com/crate-py/rpds/commit/ddb1ae6abb2c1f6088445d98b5a4a3b454e7856f"><code>ddb1ae6</code></a>
Merge pull request <a
href="https://redirect.github.com/crate-py/rpds/issues/128">#128</a>
from crate-py/dependabot/cargo/rpds-1.1.1</li>
<li><a
href="https://github.com/crate-py/rpds/commit/72d13f9729735415205302b72f025591b1468d07"><code>72d13f9</code></a>
Bump rpds from 1.1.0 to 1.1.1</li>
<li><a
href="https://github.com/crate-py/rpds/commit/f6a97d9084071eec2f69cd8caa00ccd0fb3f7779"><code>f6a97d9</code></a>
Merge pull request <a
href="https://redirect.github.com/crate-py/rpds/issues/127">#127</a>
from crate-py/dependabot/cargo/pyo3-0.24.1</li>
<li><a
href="https://github.com/crate-py/rpds/commit/9c266e7db3952ceb76a9b60b6ead200b2cb7dc53"><code>9c266e7</code></a>
Bump pyo3 from 0.24.0 to 0.24.1</li>
<li>See full diff in <a
href="https://github.com/crate-py/rpds/compare/v0.24.0...v0.25.0">compare
view</a></li>
</ul>
</details>
<br />


Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions


</details>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: abhikdps <abanand@redhat.com>
github-merge-queue bot pushed a commit to google/scaaml that referenced this pull request May 19, 2025
Bumps the dependabot group with 3 updates:
[setuptools](https://github.com/pypa/setuptools),
[cryptography](https://github.com/pyca/cryptography) and
[pluggy](https://github.com/pytest-dev/pluggy).

Updates `setuptools` from 80.4.0 to 80.7.1
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/pypa/setuptools/blob/main/NEWS.rst">setuptools's
changelog</a>.</em></p>
<blockquote>
<h1>v80.7.1</h1>
<h2>Bugfixes</h2>
<ul>
<li>Only attempt to fetch eggs for unsatisfied requirements. (<a
href="https://redirect.github.com/pypa/setuptools/issues/4998">#4998</a>)</li>
<li>In installer, when discovering egg dists, let metadata discovery
search each egg. (<a
href="https://redirect.github.com/pypa/setuptools/issues/4998">#4998</a>)</li>
</ul>
<h1>v80.7.0</h1>
<h2>Features</h2>
<ul>
<li>Removed usage of pkg_resources from installer. Set an official
deadline on the installer deprecation to 2025-10-31. (<a
href="https://redirect.github.com/pypa/setuptools/issues/4997">#4997</a>)</li>
</ul>
<h2>Misc</h2>
<ul>
<li><a
href="https://redirect.github.com/pypa/setuptools/issues/4996">#4996</a></li>
</ul>
<h1>v80.6.0</h1>
<h2>Features</h2>
<ul>
<li>Added a build dependency on coherent.licensed to inject the declared
license text at build time. (<a
href="https://redirect.github.com/pypa/setuptools/issues/4981">#4981</a>)</li>
</ul>
<h2>Misc</h2>
<ul>
<li><a
href="https://redirect.github.com/pypa/setuptools/issues/4995">#4995</a></li>
</ul>
<h1>v80.5.0</h1>
<h2>Features</h2>
<ul>
<li>Replaced more references to pkg_resources with importlib
equivalents. (<a
href="https://redirect.github.com/pypa/setuptools/issues/3085">#3085</a>)</li>
</ul>
<p>Misc</p>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/pypa/setuptools/commit/12ca0186ba7d9bf387d65400bb05205d0bcf9e56"><code>12ca018</code></a>
Bump version: 80.7.0 → 80.7.1</li>
<li><a
href="https://github.com/pypa/setuptools/commit/31f8cac5faa7837e15a6716744034dff52ebcb8c"><code>31f8cac</code></a>
Merge pull request <a
href="https://redirect.github.com/pypa/setuptools/issues/4999">#4999</a>
from pypa/bugfix/4998-directory-not-empty</li>
<li><a
href="https://github.com/pypa/setuptools/commit/e6f9ee9411566b276e52e828016b9d27007228bc"><code>e6f9ee9</code></a>
In installer, when discovering egg dists, let metadata discovery search
each ...</li>
<li><a
href="https://github.com/pypa/setuptools/commit/76d2923db3e60261e7e9f26a37287b27ad3933a1"><code>76d2923</code></a>
Only attempt to fetch eggs for unsatisfied requirements.</li>
<li><a
href="https://github.com/pypa/setuptools/commit/486081e9eff38c6ed19aa24eab8200d9bba4cdce"><code>486081e</code></a>
Bump version: 80.6.0 → 80.7.0</li>
<li><a
href="https://github.com/pypa/setuptools/commit/f2748d1c1c5046814d929cb270724c2b35ee6020"><code>f2748d1</code></a>
Merge pull request <a
href="https://redirect.github.com/pypa/setuptools/issues/4997">#4997</a>
from pypa/feature/remove-more-pkg_resources</li>
<li><a
href="https://github.com/pypa/setuptools/commit/1089223a382ca11ba70fcd9f1081ca22cd9997dc"><code>1089223</code></a>
Merge pull request <a
href="https://redirect.github.com/pypa/setuptools/issues/4996">#4996</a>
from abravalheri/cleanup-distutils</li>
<li><a
href="https://github.com/pypa/setuptools/commit/00c16df484fa3ec67223037846eff4a280dccb80"><code>00c16df</code></a>
Bump version: 80.5.0 → 80.6.0</li>
<li><a
href="https://github.com/pypa/setuptools/commit/89d3aef7fa7ff5e68cd5c2c29bc986bbd4afa782"><code>89d3aef</code></a>
Add news fragment.</li>
<li><a
href="https://github.com/pypa/setuptools/commit/b74789e2aa3227e85d61b40708959b35d7f666cc"><code>b74789e</code></a>
Merge <a
href="https://github.com/jaraco/skeleton">https://github.com/jaraco/skeleton</a></li>
<li>Additional commits viewable in <a
href="https://github.com/pypa/setuptools/compare/v80.4.0...v80.7.1">compare
view</a></li>
</ul>
</details>
<br />

Updates `cryptography` from 44.0.2 to 45.0.2
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/pyca/cryptography/blob/main/CHANGELOG.rst">cryptography's
changelog</a>.</em></p>
<blockquote>
<p>45.0.2 - 2025-05-17</p>
<pre><code>
* Fixed using ``mypy`` with ``cryptography`` on older versions of
Python.
<p>.. _v45-0-1:</p>
<p>45.0.1 - 2025-05-17<br />
</code></pre></p>
<ul>
<li>Updated Windows, macOS, and Linux wheels to be compiled with OpenSSL
3.5.0.</li>
</ul>
<p>.. _v45-0-0:</p>
<p>45.0.0 - 2025-05-17 (YANKED)</p>
<pre><code>
* Support for Python 3.7 is deprecated and will be removed in the next
  ``cryptography`` release.
* Updated the minimum supported Rust version (MSRV) to 1.74.0, from
1.65.0.
* Added support for serialization of PKCS#12 Java truststores in

:func:`~cryptography.hazmat.primitives.serialization.pkcs12.serialize_java_truststore`
* Added
:meth:`~cryptography.hazmat.primitives.kdf.argon2.Argon2id.derive_phc_encoded`
and

:meth:`~cryptography.hazmat.primitives.kdf.argon2.Argon2id.verify_phc_encoded`
methods
  to support password hashing in the PHC string format
* Added support for PKCS7 decryption and encryption using AES-256 as the
  content algorithm, in addition to AES-128.
* **BACKWARDS INCOMPATIBLE:** Made SSH private key loading more
consistent with
  other private key loading:

:func:`~cryptography.hazmat.primitives.serialization.load_ssh_private_key`
  now raises a ``TypeError`` if the key is unencrypted but a password is
provided (previously no exception was raised), and raises a
``TypeError`` if
the key is encrypted but no password is provided (previously a
``ValueError``
  was raised).
* We significantly refactored how private key loading (

:func:`~cryptography.hazmat.primitives.serialization.load_pem_private_key`
  and

:func:`~cryptography.hazmat.primitives.serialization.load_der_private_key`)
works. This is intended to be backwards compatible for all well-formed
keys,
therefore if you discover a key that now raises an exception, please
file a
  bug with instructions for reproducing.
* Added ``unsafe_skip_rsa_key_validation`` keyword-argument to

:func:`~cryptography.hazmat.primitives.serialization.load_ssh_private_key`.
* Added :class:`~cryptography.hazmat.primitives.hashes.XOFHash` to
support
repeated :meth:`~cryptography.hazmat.primitives.hashes.XOFHash.squeeze`
  operations on extendable output functions.
* Added

:meth:`~cryptography.x509.ocsp.OCSPResponseBuilder.add_response_by_hash`
method to allow creating OCSP responses using certificate hash values
rather
  than full certificates.
&lt;/tr&gt;&lt;/table&gt; 
</code></pre>
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/pyca/cryptography/commit/f81c07535ddf2d26cb1a27e70a9967ab708b8056"><code>f81c075</code></a>
Backport mypy fixes for release (<a
href="https://redirect.github.com/pyca/cryptography/issues/12930">#12930</a>)</li>
<li><a
href="https://github.com/pyca/cryptography/commit/8ea28e0bc724e57433f4f062795d91c0a367e9ad"><code>8ea28e0</code></a>
bump for 45.0.1 (<a
href="https://redirect.github.com/pyca/cryptography/issues/12922">#12922</a>)</li>
<li><a
href="https://github.com/pyca/cryptography/commit/67840977c95a23d0dcfba154e303014026df0d3e"><code>6784097</code></a>
bump for 45 release (<a
href="https://redirect.github.com/pyca/cryptography/issues/12886">#12886</a>)</li>
<li><a
href="https://github.com/pyca/cryptography/commit/2d9c1c9cbe650f2888c14476a4b30ef85d3fd2bc"><code>2d9c1c9</code></a>
bump MSRV to 1.74 (<a
href="https://redirect.github.com/pyca/cryptography/issues/12919">#12919</a>)</li>
<li><a
href="https://github.com/pyca/cryptography/commit/6c18874cc2e76f173b77c67609cfb4d3495964c3"><code>6c18874</code></a>
Bump BoringSSL, OpenSSL, AWS-LC in CI (<a
href="https://redirect.github.com/pyca/cryptography/issues/12918">#12918</a>)</li>
<li><a
href="https://github.com/pyca/cryptography/commit/43fd312aea73e4ad79a54c78848e73bf5a640336"><code>43fd312</code></a>
add test vectors for upcoming explicit curve loading (<a
href="https://redirect.github.com/pyca/cryptography/issues/12913">#12913</a>)</li>
<li><a
href="https://github.com/pyca/cryptography/commit/6bfa0a31256a631a0543e3b0cee5a101f1ac3d3f"><code>6bfa0a3</code></a>
chore(deps): bump asn1 from 0.21.2 to 0.21.3 (<a
href="https://redirect.github.com/pyca/cryptography/issues/12914">#12914</a>)</li>
<li><a
href="https://github.com/pyca/cryptography/commit/a88dd6635c19ef282e0a6469a9604fef096cc843"><code>a88dd66</code></a>
chore(deps): bump cc from 1.2.22 to 1.2.23 (<a
href="https://redirect.github.com/pyca/cryptography/issues/12912">#12912</a>)</li>
<li><a
href="https://github.com/pyca/cryptography/commit/e4e98407e866064b55dfcad599117995279cecf6"><code>e4e9840</code></a>
chore(deps): bump uv from 0.7.3 to 0.7.4 in /.github/requirements (<a
href="https://redirect.github.com/pyca/cryptography/issues/12911">#12911</a>)</li>
<li><a
href="https://github.com/pyca/cryptography/commit/e140233902db423f031d79237533aacfe96ba119"><code>e140233</code></a>
chore(deps): bump uv from 0.7.3 to 0.7.4 (<a
href="https://redirect.github.com/pyca/cryptography/issues/12910">#12910</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/pyca/cryptography/compare/44.0.2...45.0.2">compare
view</a></li>
</ul>
</details>
<br />

Updates `pluggy` from 1.5.0 to 1.6.0
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/pytest-dev/pluggy/blob/main/CHANGELOG.rst">pluggy's
changelog</a>.</em></p>
<blockquote>
<h1>pluggy 1.6.0 (2025-05-15)</h1>
<h2>Deprecations and Removals</h2>
<ul>
<li><code>[#556](pytest-dev/pluggy#556)
&lt;https://github.com/pytest-dev/pluggy/issues/556&gt;</code>_: Python
3.8 is no longer supported.</li>
</ul>
<h2>Bug Fixes</h2>
<ul>
<li>
<p><code>[#504](pytest-dev/pluggy#504)
&lt;https://github.com/pytest-dev/pluggy/issues/504&gt;</code>_: Fix a
regression in pluggy 1.1.0 where using :func:<code>result.get_result()
&lt;pluggy.Result.get_result&gt;</code> on the same failed
:class:<code>~pluggy.Result</code> causes the exception's traceback to
get longer and longer.</p>
</li>
<li>
<p><code>[#544](pytest-dev/pluggy#544)
&lt;https://github.com/pytest-dev/pluggy/issues/544&gt;</code>_:
Correctly pass :class:<code>StopIteration</code> through hook
wrappers.</p>
<p>Raising a :class:<code>StopIteration</code> in a generator triggers a
:class:<code>RuntimeError</code>.</p>
<p>If the :class:<code>RuntimeError</code> of a generator has the passed
in :class:<code>StopIteration</code> as cause
resume with that :class:<code>StopIteration</code> as normal exception
instead of failing with the :class:<code>RuntimeError</code>.</p>
</li>
<li>
<p><code>[#573](pytest-dev/pluggy#573)
&lt;https://github.com/pytest-dev/pluggy/issues/573&gt;</code>_: Fix
python 3.14 SyntaxError by rearranging code.</p>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/fd08ab5f811a9b2fa9124ae8cbbd393221151e2c"><code>fd08ab5</code></a>
Preparing release 1.6.0</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/c240362152d6f354a4056bfd6d28560e226fb70b"><code>c240362</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/pytest-dev/pluggy/issues/578">#578</a>)</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/0ceb558860b5e228b67adbe8c19a368802e7d324"><code>0ceb558</code></a>
Merge pull request <a
href="https://redirect.github.com/pytest-dev/pluggy/issues/546">#546</a>
from RonnyPfannschmidt/ronny/hookwrapper-wrap-legacy</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/1f4872e8cb2547dacea155a27f94f75e7e8f66ae"><code>1f4872e</code></a>
[pre-commit.ci] auto fixes from pre-commit.com hooks</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/4be0c554ea22ca01c7dc30ecccac413a412c1ea7"><code>4be0c55</code></a>
add changelog</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/615c6c57c2de62bd9652b59c7a89b3e1fcef08ae"><code>615c6c5</code></a>
Merge branch 'main' into hookwrapper-wrap-legacy</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/2acc644f2ead34ac3a154bff2566037480b5c310"><code>2acc644</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/pytest-dev/pluggy/issues/577">#577</a>)</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/ea5ada08d36d71bbd1f4e0c8472f8f9a4b210a2d"><code>ea5ada0</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/pytest-dev/pluggy/issues/576">#576</a>)</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/dfd250bcfc3d73f72693d4f14cf48bb737ded9f0"><code>dfd250b</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/pytest-dev/pluggy/issues/575">#575</a>)</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/1e1862fe458b663728b7523bee2c407455836931"><code>1e1862f</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/pytest-dev/pluggy/issues/574">#574</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/pytest-dev/pluggy/compare/1.5.0...1.6.0">compare
view</a></li>
</ul>
</details>
<br />


Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
github-merge-queue bot pushed a commit to mozilla/experimenter that referenced this pull request May 19, 2025
…12654)

Bumps [pluggy](https://github.com/pytest-dev/pluggy) from 1.5.0 to
1.6.0.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/pytest-dev/pluggy/blob/main/CHANGELOG.rst">pluggy's
changelog</a>.</em></p>
<blockquote>
<h1>pluggy 1.6.0 (2025-05-15)</h1>
<h2>Deprecations and Removals</h2>
<ul>
<li><code>[#556](pytest-dev/pluggy#556)
&lt;https://github.com/pytest-dev/pluggy/issues/556&gt;</code>_: Python
3.8 is no longer supported.</li>
</ul>
<h2>Bug Fixes</h2>
<ul>
<li>
<p><code>[#504](pytest-dev/pluggy#504)
&lt;https://github.com/pytest-dev/pluggy/issues/504&gt;</code>_: Fix a
regression in pluggy 1.1.0 where using :func:<code>result.get_result()
&lt;pluggy.Result.get_result&gt;</code> on the same failed
:class:<code>~pluggy.Result</code> causes the exception's traceback to
get longer and longer.</p>
</li>
<li>
<p><code>[#544](pytest-dev/pluggy#544)
&lt;https://github.com/pytest-dev/pluggy/issues/544&gt;</code>_:
Correctly pass :class:<code>StopIteration</code> through hook
wrappers.</p>
<p>Raising a :class:<code>StopIteration</code> in a generator triggers a
:class:<code>RuntimeError</code>.</p>
<p>If the :class:<code>RuntimeError</code> of a generator has the passed
in :class:<code>StopIteration</code> as cause
resume with that :class:<code>StopIteration</code> as normal exception
instead of failing with the :class:<code>RuntimeError</code>.</p>
</li>
<li>
<p><code>[#573](pytest-dev/pluggy#573)
&lt;https://github.com/pytest-dev/pluggy/issues/573&gt;</code>_: Fix
python 3.14 SyntaxError by rearranging code.</p>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/fd08ab5f811a9b2fa9124ae8cbbd393221151e2c"><code>fd08ab5</code></a>
Preparing release 1.6.0</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/c240362152d6f354a4056bfd6d28560e226fb70b"><code>c240362</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/pytest-dev/pluggy/issues/578">#578</a>)</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/0ceb558860b5e228b67adbe8c19a368802e7d324"><code>0ceb558</code></a>
Merge pull request <a
href="https://redirect.github.com/pytest-dev/pluggy/issues/546">#546</a>
from RonnyPfannschmidt/ronny/hookwrapper-wrap-legacy</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/1f4872e8cb2547dacea155a27f94f75e7e8f66ae"><code>1f4872e</code></a>
[pre-commit.ci] auto fixes from pre-commit.com hooks</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/4be0c554ea22ca01c7dc30ecccac413a412c1ea7"><code>4be0c55</code></a>
add changelog</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/615c6c57c2de62bd9652b59c7a89b3e1fcef08ae"><code>615c6c5</code></a>
Merge branch 'main' into hookwrapper-wrap-legacy</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/2acc644f2ead34ac3a154bff2566037480b5c310"><code>2acc644</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/pytest-dev/pluggy/issues/577">#577</a>)</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/ea5ada08d36d71bbd1f4e0c8472f8f9a4b210a2d"><code>ea5ada0</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/pytest-dev/pluggy/issues/576">#576</a>)</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/dfd250bcfc3d73f72693d4f14cf48bb737ded9f0"><code>dfd250b</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/pytest-dev/pluggy/issues/575">#575</a>)</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/1e1862fe458b663728b7523bee2c407455836931"><code>1e1862f</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/pytest-dev/pluggy/issues/574">#574</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/pytest-dev/pluggy/compare/1.5.0...1.6.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=pluggy&package-manager=pip&previous-version=1.5.0&new-version=1.6.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
github-merge-queue bot pushed a commit to mozilla/experimenter that referenced this pull request May 20, 2025
…12654)

Bumps [pluggy](https://github.com/pytest-dev/pluggy) from 1.5.0 to
1.6.0.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/pytest-dev/pluggy/blob/main/CHANGELOG.rst">pluggy's
changelog</a>.</em></p>
<blockquote>
<h1>pluggy 1.6.0 (2025-05-15)</h1>
<h2>Deprecations and Removals</h2>
<ul>
<li><code>[#556](pytest-dev/pluggy#556)
&lt;https://github.com/pytest-dev/pluggy/issues/556&gt;</code>_: Python
3.8 is no longer supported.</li>
</ul>
<h2>Bug Fixes</h2>
<ul>
<li>
<p><code>[#504](pytest-dev/pluggy#504)
&lt;https://github.com/pytest-dev/pluggy/issues/504&gt;</code>_: Fix a
regression in pluggy 1.1.0 where using :func:<code>result.get_result()
&lt;pluggy.Result.get_result&gt;</code> on the same failed
:class:<code>~pluggy.Result</code> causes the exception's traceback to
get longer and longer.</p>
</li>
<li>
<p><code>[#544](pytest-dev/pluggy#544)
&lt;https://github.com/pytest-dev/pluggy/issues/544&gt;</code>_:
Correctly pass :class:<code>StopIteration</code> through hook
wrappers.</p>
<p>Raising a :class:<code>StopIteration</code> in a generator triggers a
:class:<code>RuntimeError</code>.</p>
<p>If the :class:<code>RuntimeError</code> of a generator has the passed
in :class:<code>StopIteration</code> as cause
resume with that :class:<code>StopIteration</code> as normal exception
instead of failing with the :class:<code>RuntimeError</code>.</p>
</li>
<li>
<p><code>[#573](pytest-dev/pluggy#573)
&lt;https://github.com/pytest-dev/pluggy/issues/573&gt;</code>_: Fix
python 3.14 SyntaxError by rearranging code.</p>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/fd08ab5f811a9b2fa9124ae8cbbd393221151e2c"><code>fd08ab5</code></a>
Preparing release 1.6.0</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/c240362152d6f354a4056bfd6d28560e226fb70b"><code>c240362</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/pytest-dev/pluggy/issues/578">#578</a>)</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/0ceb558860b5e228b67adbe8c19a368802e7d324"><code>0ceb558</code></a>
Merge pull request <a
href="https://redirect.github.com/pytest-dev/pluggy/issues/546">#546</a>
from RonnyPfannschmidt/ronny/hookwrapper-wrap-legacy</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/1f4872e8cb2547dacea155a27f94f75e7e8f66ae"><code>1f4872e</code></a>
[pre-commit.ci] auto fixes from pre-commit.com hooks</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/4be0c554ea22ca01c7dc30ecccac413a412c1ea7"><code>4be0c55</code></a>
add changelog</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/615c6c57c2de62bd9652b59c7a89b3e1fcef08ae"><code>615c6c5</code></a>
Merge branch 'main' into hookwrapper-wrap-legacy</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/2acc644f2ead34ac3a154bff2566037480b5c310"><code>2acc644</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/pytest-dev/pluggy/issues/577">#577</a>)</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/ea5ada08d36d71bbd1f4e0c8472f8f9a4b210a2d"><code>ea5ada0</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/pytest-dev/pluggy/issues/576">#576</a>)</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/dfd250bcfc3d73f72693d4f14cf48bb737ded9f0"><code>dfd250b</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/pytest-dev/pluggy/issues/575">#575</a>)</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/1e1862fe458b663728b7523bee2c407455836931"><code>1e1862f</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/pytest-dev/pluggy/issues/574">#574</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/pytest-dev/pluggy/compare/1.5.0...1.6.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=pluggy&package-manager=pip&previous-version=1.5.0&new-version=1.6.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
shaldengeki added a commit to shaldengeki/monorepo that referenced this pull request May 22, 2025
Bumps [pluggy](https://github.com/pytest-dev/pluggy) from 1.5.0 to
1.6.0.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/pytest-dev/pluggy/blob/main/CHANGELOG.rst">pluggy's
changelog</a>.</em></p>
<blockquote>
<h1>pluggy 1.6.0 (2025-05-15)</h1>
<h2>Deprecations and Removals</h2>
<ul>
<li><code>[#556](pytest-dev/pluggy#556)
&lt;https://github.com/pytest-dev/pluggy/issues/556&gt;</code>_: Python
3.8 is no longer supported.</li>
</ul>
<h2>Bug Fixes</h2>
<ul>
<li>
<p><code>[#504](pytest-dev/pluggy#504)
&lt;https://github.com/pytest-dev/pluggy/issues/504&gt;</code>_: Fix a
regression in pluggy 1.1.0 where using :func:<code>result.get_result()
&lt;pluggy.Result.get_result&gt;</code> on the same failed
:class:<code>~pluggy.Result</code> causes the exception's traceback to
get longer and longer.</p>
</li>
<li>
<p><code>[#544](pytest-dev/pluggy#544)
&lt;https://github.com/pytest-dev/pluggy/issues/544&gt;</code>_:
Correctly pass :class:<code>StopIteration</code> through hook
wrappers.</p>
<p>Raising a :class:<code>StopIteration</code> in a generator triggers a
:class:<code>RuntimeError</code>.</p>
<p>If the :class:<code>RuntimeError</code> of a generator has the passed
in :class:<code>StopIteration</code> as cause
resume with that :class:<code>StopIteration</code> as normal exception
instead of failing with the :class:<code>RuntimeError</code>.</p>
</li>
<li>
<p><code>[#573](pytest-dev/pluggy#573)
&lt;https://github.com/pytest-dev/pluggy/issues/573&gt;</code>_: Fix
python 3.14 SyntaxError by rearranging code.</p>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/fd08ab5f811a9b2fa9124ae8cbbd393221151e2c"><code>fd08ab5</code></a>
Preparing release 1.6.0</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/c240362152d6f354a4056bfd6d28560e226fb70b"><code>c240362</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/pytest-dev/pluggy/issues/578">#578</a>)</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/0ceb558860b5e228b67adbe8c19a368802e7d324"><code>0ceb558</code></a>
Merge pull request <a
href="https://redirect.github.com/pytest-dev/pluggy/issues/546">#546</a>
from RonnyPfannschmidt/ronny/hookwrapper-wrap-legacy</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/1f4872e8cb2547dacea155a27f94f75e7e8f66ae"><code>1f4872e</code></a>
[pre-commit.ci] auto fixes from pre-commit.com hooks</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/4be0c554ea22ca01c7dc30ecccac413a412c1ea7"><code>4be0c55</code></a>
add changelog</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/615c6c57c2de62bd9652b59c7a89b3e1fcef08ae"><code>615c6c5</code></a>
Merge branch 'main' into hookwrapper-wrap-legacy</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/2acc644f2ead34ac3a154bff2566037480b5c310"><code>2acc644</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/pytest-dev/pluggy/issues/577">#577</a>)</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/ea5ada08d36d71bbd1f4e0c8472f8f9a4b210a2d"><code>ea5ada0</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/pytest-dev/pluggy/issues/576">#576</a>)</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/dfd250bcfc3d73f72693d4f14cf48bb737ded9f0"><code>dfd250b</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/pytest-dev/pluggy/issues/575">#575</a>)</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/1e1862fe458b663728b7523bee2c407455836931"><code>1e1862f</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/pytest-dev/pluggy/issues/574">#574</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/pytest-dev/pluggy/compare/1.5.0...1.6.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=pluggy&package-manager=pip&previous-version=1.5.0&new-version=1.6.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Charles Guo <shaldengeki@gmail.com>
github-merge-queue bot pushed a commit to google/sedpack that referenced this pull request May 22, 2025
Bumps the dependabot group with 7 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [click](https://github.com/pallets/click) | `8.1.5` | `8.2.0` |
| [importlib-metadata](https://github.com/python/importlib_metadata) |
`8.6.1` | `8.7.0` |
| [pip](https://github.com/pypa/pip) | `25.0.1` | `25.1.1` |
| [setuptools](https://github.com/pypa/setuptools) | `79.0.0` | `80.7.1`
|
| [certifi](https://github.com/certifi/python-certifi) | `2025.1.31` |
`2025.4.26` |
| [pluggy](https://github.com/pytest-dev/pluggy) | `1.5.0` | `1.6.0` |
| [termcolor](https://github.com/termcolor/termcolor) | `3.0.1` |
`3.1.0` |


Updates `click` from 8.1.5 to 8.2.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/pallets/click/releases">click's
releases</a>.</em></p>
<blockquote>
<h2>8.2.0</h2>
<p>This is the Click 8.2.0 feature release. A feature release may
include new features, remove previously deprecated code, add new
deprecation, or introduce potentially breaking changes.</p>
<p>We encourage everyone to upgrade. You can read more about our <a
href="https://palletsprojects.com/versions">Version Support Policy</a>
on our website.</p>
<p>PyPI: <a
href="https://pypi.org/project/click/8.2.0/">https://pypi.org/project/click/8.2.0/</a>
Changes: <a
href="https://click.palletsprojects.com/en/stable/changes/">https://click.palletsprojects.com/en/stable/changes/</a>
Milestone <a
href="https://github.com/pallets/click/milestone/15">https://github.com/pallets/click/milestone/15</a></p>
<ul>
<li>Drop support for Python 3.7, 3.8,and 3.9. <a
href="https://redirect.github.com/pallets/click/issues/2588">#2588</a>,
<a
href="https://redirect.github.com/pallets/click/issues/2893">#2893</a></li>
<li>Use modern packaging metadata with <code>pyproject.toml</code>
instead of <code>setup.cfg</code>. <a
href="https://redirect.github.com/pallets/click/issues/2438">#2438</a></li>
<li>Use <code>flit_core</code> instead of <code>setuptools</code> as
build backend. <a
href="https://redirect.github.com/pallets/click/issues/2543">#2543</a></li>
<li>Deprecate the <code>__version__</code> attribute. Use feature
detection, or
<code>importlib.metadata.version(&quot;click&quot;)</code>, instead. <a
href="https://redirect.github.com/pallets/click/issues/2598">#2598</a></li>
<li><code>BaseCommand</code> is deprecated. <code>Command</code> is the
base class for all commands. <a
href="https://redirect.github.com/pallets/click/issues/2589">#2589</a></li>
<li><code>MultiCommand</code> is deprecated. <code>Group</code> is the
base class for all group commands. <a
href="https://redirect.github.com/pallets/click/issues/2590">#2590</a></li>
<li>The current parser and related classes and methods, are deprecated.
<a
href="https://redirect.github.com/pallets/click/issues/2205">#2205</a>
<ul>
<li><code>OptionParser</code> and the <code>parser</code> module, which
is a modified copy of <code>optparse</code> in the standard
library.</li>
<li><code>Context.protected_args</code> is unneeded.
<code>Context.args</code> contains any remaining arguments while
parsing.</li>
<li><code>Parameter.add_to_parser</code> (on both <code>Argument</code>
and <code>Option</code>) is unneeded. Parsing works directly without
building a separate parser.</li>
<li><code>split_arg_string</code> is moved from <code>parser</code> to
<code>shell_completion</code>.</li>
</ul>
</li>
<li>Enable deferred evaluation of annotations with <code>from __future__
import annotations</code>. <a
href="https://redirect.github.com/pallets/click/issues/2270">#2270</a></li>
<li>When generating a command's name from a decorated function's name,
the suffixes <code>_command</code>, <code>_cmd</code>,
<code>_group</code>, and <code>_grp</code> are removed. <a
href="https://redirect.github.com/pallets/click/issues/2322">#2322</a></li>
<li>Show the <code>types.ParamType.name</code> for
<code>types.Choice</code> options within <code>--help</code> message if
<code>show_choices=False</code> is specified. <a
href="https://redirect.github.com/pallets/click/issues/2356">#2356</a></li>
<li>Do not display default values in prompts when
<code>Option.show_default</code> is <code>False</code>. <a
href="https://redirect.github.com/pallets/click/issues/2509">#2509</a></li>
<li>Add <code>get_help_extra</code> method on <code>Option</code> to
fetch the generated extra items used in <code>get_help_record</code> to
render help text. <a
href="https://redirect.github.com/pallets/click/issues/2516">#2516</a>
<a
href="https://redirect.github.com/pallets/click/issues/2517">#2517</a></li>
<li>Keep stdout and stderr streams independent in
<code>CliRunner</code>. Always collect stderr output and never raise an
exception. Add a new output stream to simulate what the user sees in its
terminal. Removes the <code>mix_stderr</code> parameter in
<code>CliRunner</code>. <a
href="https://redirect.github.com/pallets/click/issues/2522">#2522</a>
<a
href="https://redirect.github.com/pallets/click/issues/2523">#2523</a></li>
<li><code>Option.show_envvar</code> now also shows environment variable
in error messages. <a
href="https://redirect.github.com/pallets/click/issues/2695">#2695</a>
<a
href="https://redirect.github.com/pallets/click/issues/2696">#2696</a></li>
<li><code>Context.close</code> will be called on exit. This results in
all <code>Context.call_on_close</code> callbacks and context managers
added via <code>Context.with_resource</code> to be closed on exit as
well. <a
href="https://redirect.github.com/pallets/click/issues/2680">#2680</a></li>
<li>Add <code>ProgressBar(hidden: bool)</code> to allow hiding the
progressbar. <a
href="https://redirect.github.com/pallets/click/issues/2609">#2609</a></li>
<li>A <code>UserWarning</code> will be shown when multiple parameters
attempt to use the same name. <a
href="https://redirect.github.com/pallets/click/issues/2396">#2396</a></li>
<li>When using <code>Option.envvar</code> with
<code>Option.flag_value</code>, the <code>flag_value</code> will always
be used instead of the value of the environment variable. <a
href="https://redirect.github.com/pallets/click/issues/2746">#2746</a>
<a
href="https://redirect.github.com/pallets/click/issues/2788">#2788</a></li>
<li>Add <code>Choice.get_invalid_choice_message</code> method for
customizing the invalid choice message. <a
href="https://redirect.github.com/pallets/click/issues/2621">#2621</a>
<a
href="https://redirect.github.com/pallets/click/issues/2622">#2622</a></li>
<li>If help is shown because <code>no_args_is_help</code> is enabled
(defaults to <code>True</code> for groups, <code>False</code> for
commands), the exit code is 2 instead of 0. <a
href="https://redirect.github.com/pallets/click/issues/1489">#1489</a>
<a
href="https://redirect.github.com/pallets/click/issues/1489">#1489</a></li>
<li>Contexts created during shell completion are closed properly, fixing
a <code>ResourceWarning</code> when using <code>click.File</code>. <a
href="https://redirect.github.com/pallets/click/issues/2644">#2644</a>
<a
href="https://redirect.github.com/pallets/click/issues/2800">#2800</a>
<a
href="https://redirect.github.com/pallets/click/issues/2767">#2767</a></li>
<li><code>click.edit(filename)</code> now supports passing an iterable
of filenames in case the editor supports editing multiple files at once.
Its return type is now also typed: <code>AnyStr</code> if
<code>text</code> is passed, otherwise <code>None</code>. <a
href="https://redirect.github.com/pallets/click/issues/2067">#2067</a>
<a
href="https://redirect.github.com/pallets/click/issues/2068">#2068</a></li>
<li>Specialized typing of <code>progressbar(length=...)</code> as
<code>ProgressBar[int]</code>. <a
href="https://redirect.github.com/pallets/click/issues/2630">#2630</a></li>
<li>Improve <code>echo_via_pager</code> behaviour in face of errors. <a
href="https://redirect.github.com/pallets/click/issues/2674">#2674</a>
<ul>
<li>Terminate the pager in case a generator passed to
<code>echo_via_pager</code> raises an exception.</li>
<li>Ensure to always close the pipe to the pager process and wait for it
to terminate.</li>
<li><code>echo_via_pager</code> will not ignore
<code>KeyboardInterrupt</code> anymore. This allows the user to search
for future output of the generator when using less and then aborting the
program using ctrl-c.</li>
</ul>
</li>
<li><code>deprecated: bool | str</code> can now be used on options and
arguments. This previously was only available for <code>Command</code>.
The message can now also be customised by using a <code>str</code>
instead of a <code>bool</code>. <a
href="https://redirect.github.com/pallets/click/issues/2263">#2263</a>
<a
href="https://redirect.github.com/pallets/click/issues/2271">#2271</a>
<ul>
<li><code>Command.deprecated</code> formatting in <code>--help</code>
changed from <code>(Deprecated) help</code> to <code>help
(DEPRECATED)</code>.</li>
<li>Parameters cannot be required nor prompted or an error is
raised.</li>
<li>A warning will be printed when something deprecated is used.</li>
</ul>
</li>
<li>Add a <code>catch_exceptions</code> parameter to
<code>CliRunner</code>. If <code>catch_exceptions</code> is not passed
to <code>CliRunner.invoke</code>, the value from <code>CliRunner</code>
is used. <a
href="https://redirect.github.com/pallets/click/issues/2817">#2817</a>
<a
href="https://redirect.github.com/pallets/click/issues/2818">#2818</a></li>
<li><code>Option.flag_value</code> will no longer have a default value
set based on <code>Option.default</code> if <code>Option.is_flag</code>
is <code>False</code>. This results in <code>Option.default</code> not
needing to implement <code>__bool__</code>. <a
href="https://redirect.github.com/pallets/click/issues/2829">#2829</a></li>
<li>Incorrect <code>click.edit</code> typing has been corrected. <a
href="https://redirect.github.com/pallets/click/issues/2804">#2804</a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/pallets/click/blob/main/CHANGES.rst">click's
changelog</a>.</em></p>
<blockquote>
<h2>Version 8.2.0</h2>
<p>Released 2025-05-10</p>
<ul>
<li>
<p>Drop support for Python 3.7, 3.8, and 3.9. :pr:<code>2588</code>
:pr:<code>2893</code></p>
</li>
<li>
<p>Use modern packaging metadata with <code>pyproject.toml</code>
instead of <code>setup.cfg</code>.
:pr:<code>2438</code></p>
</li>
<li>
<p>Use <code>flit_core</code> instead of <code>setuptools</code> as
build backend. :pr:<code>2543</code></p>
</li>
<li>
<p>Deprecate the <code>__version__</code> attribute. Use feature
detection, or
<code>importlib.metadata.version(&quot;click&quot;)</code>, instead.
:issue:<code>2598</code></p>
</li>
<li>
<p><code>BaseCommand</code> is deprecated. <code>Command</code> is the
base class for all
commands. :issue:<code>2589</code></p>
</li>
<li>
<p><code>MultiCommand</code> is deprecated. <code>Group</code> is the
base class for all group
commands. :issue:<code>2590</code></p>
</li>
<li>
<p>The current parser and related classes and methods, are deprecated.
:issue:<code>2205</code></p>
<ul>
<li><code>OptionParser</code> and the <code>parser</code> module, which
is a modified copy of
<code>optparse</code> in the standard library.</li>
<li><code>Context.protected_args</code> is unneeded.
<code>Context.args</code> contains any
remaining arguments while parsing.</li>
<li><code>Parameter.add_to_parser</code> (on both <code>Argument</code>
and <code>Option</code>) is
unneeded. Parsing works directly without building a separate
parser.</li>
<li><code>split_arg_string</code> is moved from <code>parser</code> to
<code>shell_completion</code>.</li>
</ul>
</li>
<li>
<p>Enable deferred evaluation of annotations with
<code>from __future__ import annotations</code>.
:pr:<code>2270</code></p>
</li>
<li>
<p>When generating a command's name from a decorated function's name,
the
suffixes <code>_command</code>, <code>_cmd</code>, <code>_group</code>,
and <code>_grp</code> are removed.
:issue:<code>2322</code></p>
</li>
<li>
<p>Show the <code>types.ParamType.name</code> for
<code>types.Choice</code> options within
<code>--help</code> message if <code>show_choices=False</code> is
specified.
:issue:<code>2356</code></p>
</li>
<li>
<p>Do not display default values in prompts when
<code>Option.show_default</code> is
<code>False</code>. :pr:<code>2509</code></p>
</li>
<li>
<p>Add <code>get_help_extra</code> method on <code>Option</code> to
fetch the generated extra
items used in <code>get_help_record</code> to render help text.
:issue:<code>2516</code>
:pr:<code>2517</code></p>
</li>
<li>
<p>Keep stdout and stderr streams independent in <code>CliRunner</code>.
Always
collect stderr output and never raise an exception. Add a new
output stream to simulate what the user sees in its terminal. Removes
the <code>mix_stderr</code> parameter in <code>CliRunner</code>.
:issue:<code>2522</code> :pr:<code>2523</code></p>
</li>
<li>
<p><code>Option.show_envvar</code> now also shows environment variable
in error messages.
:issue:<code>2695</code> :pr:<code>2696</code></p>
</li>
<li>
<p><code>Context.close</code> will be called on exit. This results in
all
<code>Context.call_on_close</code> callbacks and context managers added
via
<code>Context.with_resource</code> to be closed on exit as well.
:pr:<code>2680</code></p>
</li>
<li>
<p>Add <code>ProgressBar(hidden: bool)</code> to allow hiding the
progressbar. :issue:<code>2609</code></p>
</li>
<li>
<p>A <code>UserWarning</code> will be shown when multiple parameters
attempt to use the</p>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/pallets/click/commit/219206a18666624072fdbb803901e5eb7ce575a1"><code>219206a</code></a>
release version 8.2.0</li>
<li><a
href="https://github.com/pallets/click/commit/498f8826040fd6644d0f410c4d574df09c35d4b2"><code>498f882</code></a>
drop end of life python versions (<a
href="https://redirect.github.com/pallets/click/issues/2893">#2893</a>)</li>
<li><a
href="https://github.com/pallets/click/commit/ba770cbc96f522e9dab1bf54dc642dfa5b053956"><code>ba770cb</code></a>
drop end of life python versions</li>
<li><a
href="https://github.com/pallets/click/commit/f14b75063fb36b9208b13a920326926363616b39"><code>f14b750</code></a>
update dev dependencies</li>
<li><a
href="https://github.com/pallets/click/commit/9982faee85f2715a9cde03639f8c0382561c09ce"><code>9982fae</code></a>
Update CHANGES.rst</li>
<li><a
href="https://github.com/pallets/click/commit/7318f5f11bd59de62e4f7f73585d19300deb32b2"><code>7318f5f</code></a>
Update CHANGES.rst</li>
<li><a
href="https://github.com/pallets/click/commit/b7c0ab471c339488766d9413349947b2a7b21543"><code>b7c0ab4</code></a>
Merge <code>stable</code> into <code>main</code>; Release 8.2.0 (<a
href="https://redirect.github.com/pallets/click/issues/2873">#2873</a>)</li>
<li><a
href="https://github.com/pallets/click/commit/c9b96fe08de11f37d49e49f2de08a303bd0426ef"><code>c9b96fe</code></a>
Merge branch 'main' into main</li>
<li><a
href="https://github.com/pallets/click/commit/ab21233fc8f9e29d4194956d643af8bc180c7153"><code>ab21233</code></a>
Rewrite second half of options docs (<a
href="https://redirect.github.com/pallets/click/issues/2848">#2848</a>)</li>
<li><a
href="https://github.com/pallets/click/commit/8c89a1436232b08e0f09cf0583ac5bc83c0ca4da"><code>8c89a14</code></a>
Merge branch 'main' into options_docs_2</li>
<li>Additional commits viewable in <a
href="https://github.com/pallets/click/compare/8.1.5...8.2.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `importlib-metadata` from 8.6.1 to 8.7.0
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/python/importlib_metadata/blob/main/NEWS.rst">importlib-metadata's
changelog</a>.</em></p>
<blockquote>
<h1>v8.7.0</h1>
<h2>Features</h2>
<ul>
<li><code>.metadata()</code> (and <code>Distribution.metadata</code>)
can now return <code>None</code> if the metadata directory exists but
not metadata file is present. (<a
href="https://redirect.github.com/python/importlib_metadata/issues/493">#493</a>)</li>
</ul>
<h2>Bugfixes</h2>
<ul>
<li>Raise consistent ValueError for invalid EntryPoint.value (<a
href="https://redirect.github.com/python/importlib_metadata/issues/518">#518</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/python/importlib_metadata/commit/708dff4f1ab89bdd126e3e8c56098d04282c5809"><code>708dff4</code></a>
Finalize</li>
<li><a
href="https://github.com/python/importlib_metadata/commit/b3065f03cc3395f46ed575e612e213f92a064879"><code>b3065f0</code></a>
Merge pull request <a
href="https://redirect.github.com/python/importlib_metadata/issues/519">#519</a>
from python/bugfix/493-metadata-missing</li>
<li><a
href="https://github.com/python/importlib_metadata/commit/e4351c226765f53a40316fa6aab50488aee8a90f"><code>e4351c2</code></a>
Add a new test capturing the new expectation.</li>
<li><a
href="https://github.com/python/importlib_metadata/commit/5a657051f7386de6f0560c200d78e941be2c8058"><code>5a65705</code></a>
Refactor the casting into a wrapper for brevity and to document its
purpose.</li>
<li><a
href="https://github.com/python/importlib_metadata/commit/0830c39b8a23e48024365120c0e97a6f7c36c5ec"><code>0830c39</code></a>
Add news fragment.</li>
<li><a
href="https://github.com/python/importlib_metadata/commit/22bb567692d8e7bd216f864a9d8dee1272ee8674"><code>22bb567</code></a>
Fix type errors where metadata could be None.</li>
<li><a
href="https://github.com/python/importlib_metadata/commit/57f31d77e18fef11dfadfd44775f253971c36920"><code>57f31d7</code></a>
Allow metadata to return None when there is no metadata present.</li>
<li><a
href="https://github.com/python/importlib_metadata/commit/b9c4be4253250ad604610db66204e5fa70fa2455"><code>b9c4be4</code></a>
Merge pull request <a
href="https://redirect.github.com/python/importlib_metadata/issues/518">#518</a>
from python/bugfix/488-bad-ep-value</li>
<li><a
href="https://github.com/python/importlib_metadata/commit/9f8af013635833cf3ac348413c9ac63b37caa3dd"><code>9f8af01</code></a>
Prefer a cached property, as the property is likely to be retrieved at
least ...</li>
<li><a
href="https://github.com/python/importlib_metadata/commit/f179e28888b2c6caf12baaf5449ff1cd82513dfe"><code>f179e28</code></a>
Also raise ValueError on construction if the value is invalid.</li>
<li>Additional commits viewable in <a
href="https://github.com/python/importlib_metadata/compare/v8.6.1...v8.7.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `pip` from 25.0.1 to 25.1.1
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/pypa/pip/blob/main/NEWS.rst">pip's
changelog</a>.</em></p>
<blockquote>
<h1>25.1.1 (2025-05-02)</h1>
<h2>Bug Fixes</h2>
<ul>
<li>Fix <code>req.source_dir</code> AssertionError when using the legacy
resolver. (<code>[#13353](pypa/pip#13353)
&lt;https://github.com/pypa/pip/issues/13353&gt;</code>_)</li>
<li>Fix crash on Python 3.9.6 and lower when pip failed to compile a
Python module
during installation.
(<code>[#13364](pypa/pip#13364)
&lt;https://github.com/pypa/pip/issues/13364&gt;</code>_)</li>
<li>Names in dependency group includes are now normalized before lookup,
which
fixes incorrect <code>Dependency group '...' not found</code> errors.
(<code>[#13372](pypa/pip#13372)
&lt;https://github.com/pypa/pip/issues/13372&gt;</code>_)</li>
</ul>
<h2>Vendored Libraries</h2>
<ul>
<li>Fix issues with using tomllib from the stdlib if available, rather
than tomli</li>
<li>Upgrade dependency-groups to 1.3.1</li>
</ul>
<h1>25.1 (2025-04-26)</h1>
<h2>Deprecations and Removals</h2>
<ul>
<li>Drop support for Python 3.8.
(<code>[#12989](pypa/pip#12989)
&lt;https://github.com/pypa/pip/issues/12989&gt;</code>_)</li>
<li>On python 3.14+, the <code>pkg_resources</code> metadata backend
cannot be used anymore.
(<code>[#13010](pypa/pip#13010)
&lt;https://github.com/pypa/pip/issues/13010&gt;</code>_)</li>
<li>Hide <code>--no-python-version-warning</code> from CLI help and
documentation
as it's useless since Python 2 support was removed. Despite being
formerly slated for removal, the flag will remain as a no-op to
avoid breakage.
(<code>[#13303](pypa/pip#13303)
&lt;https://github.com/pypa/pip/issues/13303&gt;</code>_)</li>
<li>A warning is emitted when the deprecated <code>pkg_resources</code>
library is used to
inspect and discover installed packages. This warning should only be
visible to
users who set an undocumented environment variable to disable the
default
<code>importlib.metadata</code> backend.
(<code>[#13318](pypa/pip#13318)
&lt;https://github.com/pypa/pip/issues/13318&gt;</code>_)</li>
<li>Deprecate the legacy <code>setup.py bdist_wheel</code> mechanism. To
silence the warning,
and future-proof their setup, users should enable
<code>--use-pep517</code> or add a
<code>pyproject.toml</code> file to the projects they control.
(<code>[#13319](pypa/pip#13319)
&lt;https://github.com/pypa/pip/issues/13319&gt;</code>_)</li>
</ul>
<h2>Features</h2>
<ul>
<li>Suggest checking &quot;pip config debug&quot; in case of an
InvalidProxyURL error.
(<code>[#12649](pypa/pip#12649)
&lt;https://github.com/pypa/pip/issues/12649&gt;</code>_)</li>
<li>Using <code>--debug</code> also enables verbose logging.
(<code>[#12710](pypa/pip#12710)
&lt;https://github.com/pypa/pip/issues/12710&gt;</code>_)</li>
<li>Display a transient progress bar during package installation.
(<code>[#12712](pypa/pip#12712)
&lt;https://github.com/pypa/pip/issues/12712&gt;</code>_)</li>
<li>Minor performance improvement when installing packages with a large
number
of dependencies by increasing the requirement string cache size.
(<code>[#12873](pypa/pip#12873)
&lt;https://github.com/pypa/pip/issues/12873&gt;</code>_)</li>
<li>Add a <code>--group</code> option which allows installation from
:pep:<code>735</code> Dependency
Groups. <code>--group</code> accepts arguments of the form
<code>group</code> or
<code>path:group</code>, where the default path is
<code>pyproject.toml</code>, and installs</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/pypa/pip/commit/01857ef79f59a98db592bacb6e7b48f354528c80"><code>01857ef</code></a>
Bump for release</li>
<li><a
href="https://github.com/pypa/pip/commit/08d8bb91e2c7734f98f828e28215aba15784012a"><code>08d8bb9</code></a>
Merge pull request <a
href="https://redirect.github.com/pypa/pip/issues/13374">#13374</a> from
pfmoore/fixups</li>
<li><a
href="https://github.com/pypa/pip/commit/2bff84e495a3d31008088c168c5ab9bfa633a172"><code>2bff84e</code></a>
Merge pull request <a
href="https://redirect.github.com/pypa/pip/issues/13363">#13363</a> from
sbidoul/fix-source_dir-assert</li>
<li><a
href="https://github.com/pypa/pip/commit/644e71d6e339035836dce0adbf59f881b334e186"><code>644e71d</code></a>
News file fixups</li>
<li><a
href="https://github.com/pypa/pip/commit/426856f496a8f84f1e36fded83b3d5e74968a786"><code>426856f</code></a>
Merge pull request <a
href="https://redirect.github.com/pypa/pip/issues/13364">#13364</a> from
ichard26/bugfix/python39</li>
<li><a
href="https://github.com/pypa/pip/commit/b7e3aead483baf42ca00e29b9758338ad19c130b"><code>b7e3aea</code></a>
Merge pull request <a
href="https://redirect.github.com/pypa/pip/issues/13356">#13356</a> from
eli-schwartz/tomllib</li>
<li><a
href="https://github.com/pypa/pip/commit/8c678fe85daaf11d8dd6a43b7835088513944655"><code>8c678fe</code></a>
Merge pull request <a
href="https://redirect.github.com/pypa/pip/issues/13373">#13373</a> from
sirosen/update-vendored-dependency-groups</li>
<li><a
href="https://github.com/pypa/pip/commit/7d006399c0d0d38e55d56a6b0732e959bf75f796"><code>7d00639</code></a>
Update newsfiles for dependency-groups patch</li>
<li><a
href="https://github.com/pypa/pip/commit/6d28bbf065a292f67d3d66d8f47fba15a1a2d512"><code>6d28bbf</code></a>
Update version of <code>dependency-groups</code> to v1.3.1</li>
<li><a
href="https://github.com/pypa/pip/commit/94bd66d615d5f9036c53196f4f2acb7c71d5010c"><code>94bd66d</code></a>
Revert StreamWrapper removal to restore Python 3.9.{0,6} compat</li>
<li>Additional commits viewable in <a
href="https://github.com/pypa/pip/compare/25.0.1...25.1.1">compare
view</a></li>
</ul>
</details>
<br />

Updates `setuptools` from 79.0.0 to 80.7.1
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/pypa/setuptools/blob/main/NEWS.rst">setuptools's
changelog</a>.</em></p>
<blockquote>
<h1>v80.7.1</h1>
<h2>Bugfixes</h2>
<ul>
<li>Only attempt to fetch eggs for unsatisfied requirements. (<a
href="https://redirect.github.com/pypa/setuptools/issues/4998">#4998</a>)</li>
<li>In installer, when discovering egg dists, let metadata discovery
search each egg. (<a
href="https://redirect.github.com/pypa/setuptools/issues/4998">#4998</a>)</li>
</ul>
<h1>v80.7.0</h1>
<h2>Features</h2>
<ul>
<li>Removed usage of pkg_resources from installer. Set an official
deadline on the installer deprecation to 2025-10-31. (<a
href="https://redirect.github.com/pypa/setuptools/issues/4997">#4997</a>)</li>
</ul>
<h2>Misc</h2>
<ul>
<li><a
href="https://redirect.github.com/pypa/setuptools/issues/4996">#4996</a></li>
</ul>
<h1>v80.6.0</h1>
<h2>Features</h2>
<ul>
<li>Added a build dependency on coherent.licensed to inject the declared
license text at build time. (<a
href="https://redirect.github.com/pypa/setuptools/issues/4981">#4981</a>)</li>
</ul>
<h2>Misc</h2>
<ul>
<li><a
href="https://redirect.github.com/pypa/setuptools/issues/4995">#4995</a></li>
</ul>
<h1>v80.5.0</h1>
<h2>Features</h2>
<ul>
<li>Replaced more references to pkg_resources with importlib
equivalents. (<a
href="https://redirect.github.com/pypa/setuptools/issues/3085">#3085</a>)</li>
</ul>
<p>Misc</p>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/pypa/setuptools/commit/12ca0186ba7d9bf387d65400bb05205d0bcf9e56"><code>12ca018</code></a>
Bump version: 80.7.0 → 80.7.1</li>
<li><a
href="https://github.com/pypa/setuptools/commit/31f8cac5faa7837e15a6716744034dff52ebcb8c"><code>31f8cac</code></a>
Merge pull request <a
href="https://redirect.github.com/pypa/setuptools/issues/4999">#4999</a>
from pypa/bugfix/4998-directory-not-empty</li>
<li><a
href="https://github.com/pypa/setuptools/commit/e6f9ee9411566b276e52e828016b9d27007228bc"><code>e6f9ee9</code></a>
In installer, when discovering egg dists, let metadata discovery search
each ...</li>
<li><a
href="https://github.com/pypa/setuptools/commit/76d2923db3e60261e7e9f26a37287b27ad3933a1"><code>76d2923</code></a>
Only attempt to fetch eggs for unsatisfied requirements.</li>
<li><a
href="https://github.com/pypa/setuptools/commit/486081e9eff38c6ed19aa24eab8200d9bba4cdce"><code>486081e</code></a>
Bump version: 80.6.0 → 80.7.0</li>
<li><a
href="https://github.com/pypa/setuptools/commit/f2748d1c1c5046814d929cb270724c2b35ee6020"><code>f2748d1</code></a>
Merge pull request <a
href="https://redirect.github.com/pypa/setuptools/issues/4997">#4997</a>
from pypa/feature/remove-more-pkg_resources</li>
<li><a
href="https://github.com/pypa/setuptools/commit/1089223a382ca11ba70fcd9f1081ca22cd9997dc"><code>1089223</code></a>
Merge pull request <a
href="https://redirect.github.com/pypa/setuptools/issues/4996">#4996</a>
from abravalheri/cleanup-distutils</li>
<li><a
href="https://github.com/pypa/setuptools/commit/00c16df484fa3ec67223037846eff4a280dccb80"><code>00c16df</code></a>
Bump version: 80.5.0 → 80.6.0</li>
<li><a
href="https://github.com/pypa/setuptools/commit/89d3aef7fa7ff5e68cd5c2c29bc986bbd4afa782"><code>89d3aef</code></a>
Add news fragment.</li>
<li><a
href="https://github.com/pypa/setuptools/commit/b74789e2aa3227e85d61b40708959b35d7f666cc"><code>b74789e</code></a>
Merge <a
href="https://github.com/jaraco/skeleton">https://github.com/jaraco/skeleton</a></li>
<li>Additional commits viewable in <a
href="https://github.com/pypa/setuptools/compare/v79.0.0...v80.7.1">compare
view</a></li>
</ul>
</details>
<br />

Updates `certifi` from 2025.1.31 to 2025.4.26
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/certifi/python-certifi/commit/275c9eb55733a464589c15fb4566fddd4598e5b2"><code>275c9eb</code></a>
2025.04.26 (<a
href="https://redirect.github.com/certifi/python-certifi/issues/347">#347</a>)</li>
<li><a
href="https://github.com/certifi/python-certifi/commit/37883310b51e56570919cdc2d44becc1c6940559"><code>3788331</code></a>
Bump actions/setup-python from 5.4.0 to 5.5.0 (<a
href="https://redirect.github.com/certifi/python-certifi/issues/346">#346</a>)</li>
<li><a
href="https://github.com/certifi/python-certifi/commit/9d1f1b782000baedf57026de5b79e193bcb7ef7b"><code>9d1f1b7</code></a>
Bump actions/download-artifact from 4.1.9 to 4.2.1 (<a
href="https://redirect.github.com/certifi/python-certifi/issues/344">#344</a>)</li>
<li><a
href="https://github.com/certifi/python-certifi/commit/96b97a5afe26bc1adef98cb0bfe68e34948a73b6"><code>96b97a5</code></a>
Bump actions/upload-artifact from 4.6.1 to 4.6.2 (<a
href="https://redirect.github.com/certifi/python-certifi/issues/343">#343</a>)</li>
<li><a
href="https://github.com/certifi/python-certifi/commit/c054ed3ac3d3505efc929b71cfd87a257bbdb6b3"><code>c054ed3</code></a>
Bump peter-evans/create-pull-request from 7.0.7 to 7.0.8 (<a
href="https://redirect.github.com/certifi/python-certifi/issues/342">#342</a>)</li>
<li><a
href="https://github.com/certifi/python-certifi/commit/44547fc77121b12bb276b44b3b2b49cfcbeac06f"><code>44547fc</code></a>
Bump actions/download-artifact from 4.1.8 to 4.1.9 (<a
href="https://redirect.github.com/certifi/python-certifi/issues/341">#341</a>)</li>
<li><a
href="https://github.com/certifi/python-certifi/commit/5ea51247afecf1bf4ebfa8f2db3082e89a8bfaed"><code>5ea5124</code></a>
Bump actions/upload-artifact from 4.6.0 to 4.6.1 (<a
href="https://redirect.github.com/certifi/python-certifi/issues/340">#340</a>)</li>
<li><a
href="https://github.com/certifi/python-certifi/commit/2f142b7ae0b2d13fee4ba4b9fbd73a9cd5069060"><code>2f142b7</code></a>
Bump peter-evans/create-pull-request from 7.0.6 to 7.0.7 (<a
href="https://redirect.github.com/certifi/python-certifi/issues/339">#339</a>)</li>
<li><a
href="https://github.com/certifi/python-certifi/commit/80d2ebdc77d2d005f408f789fe2fb1fe5f4e0265"><code>80d2ebd</code></a>
Bump actions/setup-python from 5.3.0 to 5.4.0 (<a
href="https://redirect.github.com/certifi/python-certifi/issues/337">#337</a>)</li>
<li>See full diff in <a
href="https://github.com/certifi/python-certifi/compare/2025.01.31...2025.04.26">compare
view</a></li>
</ul>
</details>
<br />

Updates `pluggy` from 1.5.0 to 1.6.0
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/pytest-dev/pluggy/blob/main/CHANGELOG.rst">pluggy's
changelog</a>.</em></p>
<blockquote>
<h1>pluggy 1.6.0 (2025-05-15)</h1>
<h2>Deprecations and Removals</h2>
<ul>
<li><code>[#556](pytest-dev/pluggy#556)
&lt;https://github.com/pytest-dev/pluggy/issues/556&gt;</code>_: Python
3.8 is no longer supported.</li>
</ul>
<h2>Bug Fixes</h2>
<ul>
<li>
<p><code>[#504](pytest-dev/pluggy#504)
&lt;https://github.com/pytest-dev/pluggy/issues/504&gt;</code>_: Fix a
regression in pluggy 1.1.0 where using :func:<code>result.get_result()
&lt;pluggy.Result.get_result&gt;</code> on the same failed
:class:<code>~pluggy.Result</code> causes the exception's traceback to
get longer and longer.</p>
</li>
<li>
<p><code>[#544](pytest-dev/pluggy#544)
&lt;https://github.com/pytest-dev/pluggy/issues/544&gt;</code>_:
Correctly pass :class:<code>StopIteration</code> through hook
wrappers.</p>
<p>Raising a :class:<code>StopIteration</code> in a generator triggers a
:class:<code>RuntimeError</code>.</p>
<p>If the :class:<code>RuntimeError</code> of a generator has the passed
in :class:<code>StopIteration</code> as cause
resume with that :class:<code>StopIteration</code> as normal exception
instead of failing with the :class:<code>RuntimeError</code>.</p>
</li>
<li>
<p><code>[#573](pytest-dev/pluggy#573)
&lt;https://github.com/pytest-dev/pluggy/issues/573&gt;</code>_: Fix
python 3.14 SyntaxError by rearranging code.</p>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/fd08ab5f811a9b2fa9124ae8cbbd393221151e2c"><code>fd08ab5</code></a>
Preparing release 1.6.0</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/c240362152d6f354a4056bfd6d28560e226fb70b"><code>c240362</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/pytest-dev/pluggy/issues/578">#578</a>)</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/0ceb558860b5e228b67adbe8c19a368802e7d324"><code>0ceb558</code></a>
Merge pull request <a
href="https://redirect.github.com/pytest-dev/pluggy/issues/546">#546</a>
from RonnyPfannschmidt/ronny/hookwrapper-wrap-legacy</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/1f4872e8cb2547dacea155a27f94f75e7e8f66ae"><code>1f4872e</code></a>
[pre-commit.ci] auto fixes from pre-commit.com hooks</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/4be0c554ea22ca01c7dc30ecccac413a412c1ea7"><code>4be0c55</code></a>
add changelog</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/615c6c57c2de62bd9652b59c7a89b3e1fcef08ae"><code>615c6c5</code></a>
Merge branch 'main' into hookwrapper-wrap-legacy</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/2acc644f2ead34ac3a154bff2566037480b5c310"><code>2acc644</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/pytest-dev/pluggy/issues/577">#577</a>)</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/ea5ada08d36d71bbd1f4e0c8472f8f9a4b210a2d"><code>ea5ada0</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/pytest-dev/pluggy/issues/576">#576</a>)</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/dfd250bcfc3d73f72693d4f14cf48bb737ded9f0"><code>dfd250b</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/pytest-dev/pluggy/issues/575">#575</a>)</li>
<li><a
href="https://github.com/pytest-dev/pluggy/commit/1e1862fe458b663728b7523bee2c407455836931"><code>1e1862f</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/pytest-dev/pluggy/issues/574">#574</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/pytest-dev/pluggy/compare/1.5.0...1.6.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `termcolor` from 3.0.1 to 3.1.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/termcolor/termcolor/releases">termcolor's
releases</a>.</em></p>
<blockquote>
<h2>Release 3.1.0</h2>
<h2>Added</h2>
<ul>
<li>Add true colour RGB option as input arguments (<a
href="https://redirect.github.com/termcolor/termcolor/issues/102">#102</a>)
<a href="https://github.com/icyveins7"><code>@​icyveins7</code></a></li>
<li>Cache system lookups to save invocation time (<a
href="https://redirect.github.com/termcolor/termcolor/issues/107">#107</a>)
<a
href="https://github.com/miketheman"><code>@​miketheman</code></a></li>
<li>Advertise typing via classifier (<a
href="https://redirect.github.com/termcolor/termcolor/issues/104">#104</a>)
<a
href="https://github.com/miketheman"><code>@​miketheman</code></a></li>
</ul>
<h2>Changed</h2>
<ul>
<li>Migrate coverage configuration to <code>pyproject.toml</code> (<a
href="https://redirect.github.com/termcolor/termcolor/issues/105">#105</a>)
<a
href="https://github.com/miketheman"><code>@​miketheman</code></a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/termcolor/termcolor/commit/1e0ae11ba804f391c1d843c2512b37e8744b0ada"><code>1e0ae11</code></a>
Test free-threaded Python 3.13t and 3.14t (<a
href="https://redirect.github.com/termcolor/termcolor/issues/111">#111</a>)</li>
<li><a
href="https://github.com/termcolor/termcolor/commit/9e3f5bb3f4fce51b99da69534fa43686581090a4"><code>9e3f5bb</code></a>
Test free-threaded Python 3.13t and 3.14t</li>
<li><a
href="https://github.com/termcolor/termcolor/commit/52bf7215ce809ab4ba5a11a298c09e6ed44eb00d"><code>52bf721</code></a>
Add mutation testing (<a
href="https://redirect.github.com/termcolor/termcolor/issues/109">#109</a>)</li>
<li><a
href="https://github.com/termcolor/termcolor/commit/968cfa566d656755f8cabf863f59e5a0df0f8c2b"><code>968cfa5</code></a>
Add tests for cprint kwargs</li>
<li><a
href="https://github.com/termcolor/termcolor/commit/6048bd599d2f7fe47a2dfe82bbc33af4e64098e9"><code>6048bd5</code></a>
Add mutation testing</li>
<li><a
href="https://github.com/termcolor/termcolor/commit/fd08149187df889da631805ab3651e9265eb8f00"><code>fd08149</code></a>
Test code branches (<a
href="https://redirect.github.com/termcolor/termcolor/issues/108">#108</a>)</li>
<li><a
href="https://github.com/termcolor/termcolor/commit/b32a0068c05ff624c322cf311d2b6782494d8f33"><code>b32a006</code></a>
Test code branches</li>
<li><a
href="https://github.com/termcolor/termcolor/commit/60815d2a7eea7b239f2f006bab618f630a323f2e"><code>60815d2</code></a>
Cache system lookups to save invocation time (<a
href="https://redirect.github.com/termcolor/termcolor/issues/107">#107</a>)</li>
<li><a
href="https://github.com/termcolor/termcolor/commit/7e1e892a38b86cfc0dbebfa969f39d33295c9b29"><code>7e1e892</code></a>
Complete coverage via added tests (<a
href="https://redirect.github.com/termcolor/termcolor/issues/106">#106</a>)</li>
<li><a
href="https://github.com/termcolor/termcolor/commit/e516dd521e870c1a6b06d86974c415aa8c3cfc99"><code>e516dd5</code></a>
Cache system lookups to save invocation time</li>
<li>Additional commits viewable in <a
href="https://github.com/termcolor/termcolor/compare/3.0.1...3.1.0">compare
view</a></li>
</ul>
</details>
<br />


Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: kralka <karelkral@google.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants