Skip to content

[pull] master from aio-libs:master#651

Merged
pull[bot] merged 2 commits into
tj-python:masterfrom
aio-libs:master
Jul 3, 2026
Merged

[pull] master from aio-libs:master#651
pull[bot] merged 2 commits into
tj-python:masterfrom
aio-libs:master

Conversation

@pull

@pull pull Bot commented Jul 3, 2026

Copy link
Copy Markdown

See Commits and Changes for more details.


Created by pull[bot] (v2.0.0-alpha.4)

Can you help keep this open source service alive? 💖 Please sponsor : )

dependabot Bot added 2 commits July 3, 2026 11:17
Bumps [coverage](https://github.com/coveragepy/coveragepy) from 7.14.3
to 7.15.0.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/coveragepy/coveragepy/blob/main/CHANGES.rst">coverage's
changelog</a>.</em></p>
<blockquote>
<h2>Version 7.15.0 — 2026-07-02</h2>
<ul>
<li>
<p>Since 7.14.0, reporting commands implicitly combine parallel data
files. Now
those commands have a new option <code>--keep-combined</code> to retain
the data files
after combining them instead of the default, which is to delete them.
Finishes <code>issue 2198</code>_.</p>
</li>
<li>
<p>Fix: the LCOV report would incorrectly count excluded functions as
uncovered,
as described in <code>issue 2205</code><em>. This is now fixed thanks to
<code>Martin Kuntz Jacobsen &lt;pull 2206_&gt;</code></em>.</p>
</li>
<li>
<p>When running your program, coverage now correctly sets
<code>yourmodule.__spec__.loader</code> as <code>strongly recommended
&lt;--loader--_&gt;</code><em>,
avoiding the deprecation warning described in <code>issue
2208</code></em>. Thanks, <code>A5rocks &lt;pull 2209_&gt;</code>_.</p>
</li>
<li>
<p>Fix: with Python 3.10, running with the <code>-I</code> (isolated
mode) option didn't
correctly omit the current directory from the module search path, as
described in <code>issue 2103</code><em>. That is now fixed thanks to
<code>Ilia Sorokin &lt;pull 2211_&gt;</code></em>.</p>
</li>
</ul>
<p>.. <em>--loader--: <a
href="https://docs.python.org/3/reference/datamodel.html#module.__loader">https://docs.python.org/3/reference/datamodel.html#module.__loader</a></em>_
.. _issue 2103: <a
href="https://redirect.github.com/coveragepy/coveragepy/issues/2103">coveragepy/coveragepy#2103</a>
.. _issue 2198: <a
href="https://redirect.github.com/coveragepy/coveragepy/issues/2198">coveragepy/coveragepy#2198</a>
.. _issue 2205: <a
href="https://redirect.github.com/coveragepy/coveragepy/issues/2205">coveragepy/coveragepy#2205</a>
.. _pull 2206: <a
href="https://redirect.github.com/coveragepy/coveragepy/pull/2206">coveragepy/coveragepy#2206</a>
.. _issue 2208: <a
href="https://redirect.github.com/coveragepy/coveragepy/issues/2208">coveragepy/coveragepy#2208</a>
.. _pull 2209: <a
href="https://redirect.github.com/coveragepy/coveragepy/pull/2209">coveragepy/coveragepy#2209</a>
.. _pull 2211: <a
href="https://redirect.github.com/coveragepy/coveragepy/pull/2211">coveragepy/coveragepy#2211</a></p>
<p>.. _changes_7-14-3:</p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/coveragepy/coveragepy/commit/c8c8020e26394526ad24184879f5867bb46b0785"><code>c8c8020</code></a>
docs: sample HTML for 7.15.0</li>
<li><a
href="https://github.com/coveragepy/coveragepy/commit/ae19db1fb3880f2b2bb0c03e3d76855cb71ce5f7"><code>ae19db1</code></a>
docs: prep for 7.15.0</li>
<li><a
href="https://github.com/coveragepy/coveragepy/commit/17b45a14119cb52bdf8170d1aa01f84a42b580e6"><code>17b45a1</code></a>
docs: --keep-combined in the man page</li>
<li><a
href="https://github.com/coveragepy/coveragepy/commit/6f9fa1e1e8a89f62c69dbf3b38e0adb744d6d4b2"><code>6f9fa1e</code></a>
fix: preserve isolated sys.path on Python 3.10 (<a
href="https://redirect.github.com/coveragepy/coveragepy/issues/2211">#2211</a>)</li>
<li><a
href="https://github.com/coveragepy/coveragepy/commit/787af5ff90e8a73bfd8cba7d5661b4930cc53ce5"><code>787af5f</code></a>
chore: bump actions/checkout in the action-dependencies group (<a
href="https://redirect.github.com/coveragepy/coveragepy/issues/2210">#2210</a>)</li>
<li><a
href="https://github.com/coveragepy/coveragepy/commit/1ed39982fe550fc542a9ed3d5561dec29737b0dc"><code>1ed3998</code></a>
fix: start attaching the loader on <code>__spec__</code> <a
href="https://redirect.github.com/coveragepy/coveragepy/issues/2208">#2208</a>
(<a
href="https://redirect.github.com/coveragepy/coveragepy/issues/2209">#2209</a>)</li>
<li><a
href="https://github.com/coveragepy/coveragepy/commit/1ab11229351f522d309f8cc54a542e4b97c78113"><code>1ab1122</code></a>
docs: remove stray comma</li>
<li><a
href="https://github.com/coveragepy/coveragepy/commit/f24a91f6d00b888c1d3d7c438cfe70294ad0c6ea"><code>f24a91f</code></a>
feat: --keep-combined for reporting commands. <a
href="https://redirect.github.com/coveragepy/coveragepy/issues/2198">#2198</a></li>
<li><a
href="https://github.com/coveragepy/coveragepy/commit/5e70751905386500e35d1382061178da3ce5519e"><code>5e70751</code></a>
test: canonicalize mock calls in test_cmdline to reduce diff noise</li>
<li><a
href="https://github.com/coveragepy/coveragepy/commit/65979cc05b7f6b10c3e27c84408867fd9bc30846"><code>65979cc</code></a>
fix: skip excluded functions in LCOV function totals (<a
href="https://redirect.github.com/coveragepy/coveragepy/issues/2206">#2206</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/coveragepy/coveragepy/compare/7.14.3...7.15.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=coverage&package-manager=pip&previous-version=7.14.3&new-version=7.15.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 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>
Bumps [filelock](https://github.com/tox-dev/py-filelock) from 3.29.4 to
3.29.5.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/tox-dev/py-filelock/releases">filelock's
releases</a>.</em></p>
<blockquote>
<h2>3.29.5</h2>
<!-- raw HTML omitted -->
<h2>What's Changed</h2>
<ul>
<li>serialise read/write release rollback against a concurrent acquire
by <a href="https://github.com/dxbjavid"><code>@​dxbjavid</code></a> in
<a
href="https://redirect.github.com/tox-dev/filelock/pull/563">tox-dev/filelock#563</a></li>
<li>🔒 fix(soft_rw): refresh held marker through the verified fd by <a
href="https://github.com/dxbjavid"><code>@​dxbjavid</code></a> in <a
href="https://redirect.github.com/tox-dev/filelock/pull/565">tox-dev/filelock#565</a></li>
<li>only unlink the writer marker on release if it is still ours by <a
href="https://github.com/dxbjavid"><code>@​dxbjavid</code></a> in <a
href="https://redirect.github.com/tox-dev/filelock/pull/566">tox-dev/filelock#566</a></li>
<li>don't follow symlinks in raise_on_not_writable_file by <a
href="https://github.com/dxbjavid"><code>@​dxbjavid</code></a> in <a
href="https://redirect.github.com/tox-dev/filelock/pull/567">tox-dev/filelock#567</a></li>
<li>don't complete a writer acquire on a peer's reclaimed marker by <a
href="https://github.com/dxbjavid"><code>@​dxbjavid</code></a> in <a
href="https://redirect.github.com/tox-dev/filelock/pull/571">tox-dev/filelock#571</a></li>
<li>use a private break name in break_lock_file by <a
href="https://github.com/dxbjavid"><code>@​dxbjavid</code></a> in <a
href="https://redirect.github.com/tox-dev/filelock/pull/576">tox-dev/filelock#576</a></li>
<li>Keep Unix lock files after release by <a
href="https://github.com/itscloud0"><code>@​itscloud0</code></a> in <a
href="https://redirect.github.com/tox-dev/filelock/pull/577">tox-dev/filelock#577</a></li>
<li>test: fix Windows type check broken by <a
href="https://redirect.github.com/tox-dev/py-filelock/issues/577">#577</a>
by <a
href="https://github.com/gaborbernat"><code>@​gaborbernat</code></a> in
<a
href="https://redirect.github.com/tox-dev/filelock/pull/580">tox-dev/filelock#580</a></li>
<li>roll back a read acquire's open transaction when its SELECT fails by
<a href="https://github.com/dxbjavid"><code>@​dxbjavid</code></a> in <a
href="https://redirect.github.com/tox-dev/filelock/pull/575">tox-dev/filelock#575</a></li>
<li>lifetime: reject negative, non-numeric, and bool values at the
setter by <a
href="https://github.com/HrachShah"><code>@​HrachShah</code></a> in <a
href="https://redirect.github.com/tox-dev/filelock/pull/573">tox-dev/filelock#573</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/itscloud0"><code>@​itscloud0</code></a>
made their first contribution in <a
href="https://redirect.github.com/tox-dev/filelock/pull/577">tox-dev/filelock#577</a></li>
<li><a href="https://github.com/HrachShah"><code>@​HrachShah</code></a>
made their first contribution in <a
href="https://redirect.github.com/tox-dev/filelock/pull/573">tox-dev/filelock#573</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/tox-dev/filelock/compare/3.29.4...3.29.5">https://github.com/tox-dev/filelock/compare/3.29.4...3.29.5</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/tox-dev/filelock/commit/be562277636140c26578a98a2a487fdb6f446ee6"><code>be56227</code></a>
lifetime: reject negative, non-numeric, and bool values at the setter
(<a
href="https://redirect.github.com/tox-dev/py-filelock/issues/573">#573</a>)</li>
<li><a
href="https://github.com/tox-dev/filelock/commit/1f6cde4ab93d30dfe9867d462e3e1055aaba01c5"><code>1f6cde4</code></a>
roll back a read acquire's open transaction when its SELECT fails (<a
href="https://redirect.github.com/tox-dev/py-filelock/issues/575">#575</a>)</li>
<li><a
href="https://github.com/tox-dev/filelock/commit/c76dee6674011e8ba28a5b2e3285af4a738e4109"><code>c76dee6</code></a>
test: fix Windows type check broken by <a
href="https://redirect.github.com/tox-dev/py-filelock/issues/577">#577</a>
(<a
href="https://redirect.github.com/tox-dev/py-filelock/issues/580">#580</a>)</li>
<li><a
href="https://github.com/tox-dev/filelock/commit/ea594a5cbca43cec92d62f740a8e510a7db0ceed"><code>ea594a5</code></a>
Keep Unix lock files after release (<a
href="https://redirect.github.com/tox-dev/py-filelock/issues/577">#577</a>)</li>
<li><a
href="https://github.com/tox-dev/filelock/commit/7595a7b48738642ace65a8fbe54bc03ae4317708"><code>7595a7b</code></a>
use a private break name in break_lock_file (<a
href="https://redirect.github.com/tox-dev/py-filelock/issues/576">#576</a>)</li>
<li><a
href="https://github.com/tox-dev/filelock/commit/0b707fe1a7edf5f5e421d2e0c63acd82017011d4"><code>0b707fe</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/tox-dev/py-filelock/issues/572">#572</a>)</li>
<li><a
href="https://github.com/tox-dev/filelock/commit/22ecd6a51dacfad30a96d62f291d2707dccf4efb"><code>22ecd6a</code></a>
don't complete a writer acquire on a peer's reclaimed marker (<a
href="https://redirect.github.com/tox-dev/py-filelock/issues/571">#571</a>)</li>
<li><a
href="https://github.com/tox-dev/filelock/commit/70ecdb27fedb590ffdb44722c71355d99644148d"><code>70ecdb2</code></a>
build(deps): bump actions/checkout from 6.0.3 to 7.0.0 (<a
href="https://redirect.github.com/tox-dev/py-filelock/issues/570">#570</a>)</li>
<li><a
href="https://github.com/tox-dev/filelock/commit/dbcc83a38bab6435e3809594b9de01aa037f2b39"><code>dbcc83a</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/tox-dev/py-filelock/issues/568">#568</a>)</li>
<li><a
href="https://github.com/tox-dev/filelock/commit/022394c34bb61271a813c038cf11b7e886b8123c"><code>022394c</code></a>
don't follow symlinks in raise_on_not_writable_file (<a
href="https://redirect.github.com/tox-dev/py-filelock/issues/567">#567</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/tox-dev/py-filelock/compare/3.29.4...3.29.5">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=filelock&package-manager=pip&previous-version=3.29.4&new-version=3.29.5)](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 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>
@pull pull Bot locked and limited conversation to collaborators Jul 3, 2026
@pull pull Bot added the ⤵️ pull label Jul 3, 2026
@pull pull Bot merged commit e3774b4 into tj-python:master Jul 3, 2026
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants