Commit 5f815fd
authored
Bump the minor group across 1 directory with 4 updates (#186)
Bumps the minor group with 4 updates in the / directory:
[mypy](https://github.com/python/mypy),
[nox](https://github.com/wntrblm/nox),
[pytest](https://github.com/pytest-dev/pytest) and
[setuptools](https://github.com/pypa/setuptools).
Updates `mypy` from 1.15.0 to 1.16.0
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/python/mypy/blob/master/CHANGELOG.md">mypy's
changelog</a>.</em></p>
<blockquote>
<h1>Mypy Release Notes</h1>
<h2>Next Release</h2>
<h2>Mypy 1.16</h2>
<p>We’ve just uploaded mypy 1.16 to the Python Package Index (<a
href="https://pypi.org/project/mypy/">PyPI</a>).
Mypy is a static type checker for Python. This release includes new
features and bug fixes.
You can install it as follows:</p>
<pre><code>python3 -m pip install -U mypy
</code></pre>
<p>You can read the full documentation for this release on <a
href="http://mypy.readthedocs.io">Read the Docs</a>.</p>
<h3>Different Property Getter and Setter Types</h3>
<p>Mypy now supports using different types for a property getter and
setter:</p>
<pre lang="python"><code>class A:
_value: int
<pre><code>@Property
def foo(self) -&gt; int:
return self._value
@foo.setter
def foo(self, x: str | int) -&gt; None:
try:
self._value = int(x)
except ValueError:
raise Exception(f&quot;'{x}' is not a valid value for
'foo'&quot;)
</code></pre>
<p></code></pre></p>
<p>This was contributed by Ivan Levkivskyi (PR <a
href="https://redirect.github.com/python/mypy/pull/18510">18510</a>).</p>
<h3>Flexible Variable Redefinitions (Experimental)</h3>
<p>Mypy now allows unannotated variables to be freely redefined with
different types when using the experimental
<code>--allow-redefinition-new</code>
flag. You will also need to enable <code>--local-partial-types</code>.
Mypy will
now infer a union type when different types are assigned to a
variable:</p>
<pre lang="py"><code># mypy: allow-redefinition-new, local-partial-types
<p>def f(n: int, b: bool) -> int | str:
if b:
x = n
else:
</tr></table>
</code></pre></p>
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/python/mypy/commit/9e72e9601f4c2fb6866cfec98fc40a31c91ccdb0"><code>9e72e96</code></a>
Update version to 1.16.0</li>
<li><a
href="https://github.com/python/mypy/commit/8fe719ff3a8d1e26d3841a48df21ddf7d5b3c94d"><code>8fe719f</code></a>
Add changelog for 1.16 (<a
href="https://redirect.github.com/python/mypy/issues/19138">#19138</a>)</li>
<li><a
href="https://github.com/python/mypy/commit/2a036e739f8691576056669371d9f020e95c2603"><code>2a036e7</code></a>
Revert "Infer correct types with overloads of <code>Type[Guard |
Is]</code> (<a
href="https://redirect.github.com/python/mypy/issues/19161">#19161</a>)</li>
<li><a
href="https://github.com/python/mypy/commit/b6da4fcf97fca9cd28e81a880f818dc364b5a06d"><code>b6da4fc</code></a>
Allow enum members to have type objects as values (<a
href="https://redirect.github.com/python/mypy/issues/19160">#19160</a>)</li>
<li><a
href="https://github.com/python/mypy/commit/334469f999c5c777124a123062b4349614447e0d"><code>334469f</code></a>
[mypyc] Improve documentation of native and non-native classes (<a
href="https://redirect.github.com/python/mypy/issues/19154">#19154</a>)</li>
<li><a
href="https://github.com/python/mypy/commit/a499d9fdba06732248c07586f2fd95c47a4fa0f7"><code>a499d9f</code></a>
Document --allow-redefinition-new (<a
href="https://redirect.github.com/python/mypy/issues/19153">#19153</a>)</li>
<li><a
href="https://github.com/python/mypy/commit/96525a23f0f8a3826d9875fa8b6e8e362cd9525e"><code>96525a2</code></a>
Merge commit '9e45dadcf6d8dbab36f83d9df94a706c0b4f9207' into
release-1.16</li>
<li><a
href="https://github.com/python/mypy/commit/9e45dadcf6d8dbab36f83d9df94a706c0b4f9207"><code>9e45dad</code></a>
Clear more data in TypeChecker.reset() instead of asserting (<a
href="https://redirect.github.com/python/mypy/issues/19087">#19087</a>)</li>
<li><a
href="https://github.com/python/mypy/commit/772cd0cebed6884636de0019e43caa06dbaa39ba"><code>772cd0c</code></a>
Add --strict-bytes to --strict (<a
href="https://redirect.github.com/python/mypy/issues/19049">#19049</a>)</li>
<li><a
href="https://github.com/python/mypy/commit/0b65f215996401264a68a3a06f3fbcd19915a9a5"><code>0b65f21</code></a>
Admit that Final variables are never redefined (<a
href="https://redirect.github.com/python/mypy/issues/19083">#19083</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/python/mypy/compare/v1.15.0...v1.16.0">compare
view</a></li>
</ul>
</details>
<br />
Updates `nox` from 2025.2.9 to 2025.5.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/wntrblm/nox/releases">nox's
releases</a>.</em></p>
<blockquote>
<h2>2025.05.01 🌸</h2>
<p>This is a bugfix release that primarily adds support for uv 0.7+. A
few other small fixes were made.</p>
<p>We'd like to thank the following folks who contributed to this
release:</p>
<ul>
<li><a
href="https://github.com/chirizxc"><code>@chirizxc</code></a></li>
<li><a
href="https://github.com/gschaffner"><code>@gschaffner</code></a></li>
<li><a
href="https://github.com/henryiii"><code>@henryiii</code></a></li>
<li><a
href="https://github.com/living180"><code>@living180</code></a></li>
<li><a href="https://github.com/Spectre5"><code>@Spectre5</code></a>
(first contribution)</li>
</ul>
<p>Bugfixes:</p>
<ul>
<li><code>uv version</code> is now <code>uv self version</code>, respect
<code>UV</code> by <a
href="https://github.com/henryiii"><code>@henryiii</code></a> and <a
href="https://github.com/Spectre5"><code>@Spectre5</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/955">wntrblm/nox#955</a></li>
<li>Add <code>UV_PYTHON</code> to disallowed vars by <a
href="https://github.com/henryiii"><code>@henryiii</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/959">wntrblm/nox#959</a></li>
<li>Never ignore URL dependencies in PEP 723 noxfiles by <a
href="https://github.com/gschaffner"><code>@gschaffner</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/935">wntrblm/nox#935</a></li>
<li>Support forcing Python on parametrized session by <a
href="https://github.com/henryiii"><code>@henryiii</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/958">wntrblm/nox#958</a></li>
<li>Fix <code>conda_install</code> issue with newer conda (only Unix) by
<a href="https://github.com/henryiii"><code>@henryiii</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/957">wntrblm/nox#957</a></li>
<li>Show skip reason by default by <a
href="https://github.com/chirizxc"><code>@chirizxc</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/941">wntrblm/nox#941</a></li>
<li>Support <code>Path</code> for envdir by <a
href="https://github.com/henryiii"><code>@henryiii</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/932">wntrblm/nox#932</a></li>
<li>Use Python 3.12 for action, allow 3.13, drop 3.8 from auto versions
by <a href="https://github.com/henryiii"><code>@henryiii</code></a> in
<a
href="https://redirect.github.com/wntrblm/nox/pull/946">wntrblm/nox#946</a></li>
</ul>
<p>Documentation:</p>
<ul>
<li>Fix a typo in the changelog by <a
href="https://github.com/gschaffner"><code>@gschaffner</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/936">wntrblm/nox#936</a></li>
<li>Update uv recipe by <a
href="https://github.com/henryiii"><code>@henryiii</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/933">wntrblm/nox#933</a></li>
<li>Fix parametrized session tagging example by <a
href="https://github.com/living180"><code>@living180</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/942">wntrblm/nox#942</a></li>
<li>uv now supports <code>pip install .</code> reinstallation by <a
href="https://github.com/henryiii"><code>@henryiii</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/947">wntrblm/nox#947</a></li>
</ul>
<p>Internal changes:</p>
<ul>
<li>Use PEP 639 license info by <a
href="https://github.com/henryiii"><code>@henryiii</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/956">wntrblm/nox#956</a></li>
<li>Make test skips a bit smarter by <a
href="https://github.com/henryiii"><code>@henryiii</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/929">wntrblm/nox#929</a></li>
<li>Add our own requirements to conda too by <a
href="https://github.com/henryiii"><code>@henryiii</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/945">wntrblm/nox#945</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/wntrblm/nox/blob/main/CHANGELOG.md">nox's
changelog</a>.</em></p>
<blockquote>
<h1>Changelog</h1>
<h2>2025.05.01</h2>
<p>This is a bugfix release that primarily adds support for uv 0.7+. A
few other
small fixes were made.</p>
<p>We'd like to thank the following folks who contributed to this
release:</p>
<ul>
<li><a
href="https://github.com/chirizxc"><code>@chirizxc</code></a></li>
<li><a
href="https://github.com/gschaffner"><code>@gschaffner</code></a></li>
<li><a
href="https://github.com/henryiii"><code>@henryiii</code></a></li>
<li><a
href="https://github.com/living180"><code>@living180</code></a></li>
<li><a href="https://github.com/Spectre5"><code>@Spectre5</code></a>
(first contribution)</li>
</ul>
<p>Bugfixes:</p>
<ul>
<li><code>uv version</code> is now <code>uv self version</code>, respect
<code>UV</code> by <a
href="https://github.com/henryiii"><code>@henryiii</code></a> and <a
href="https://github.com/Spectre5"><code>@Spectre5</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/955">wntrblm/nox#955</a></li>
<li>Add <code>UV_PYTHON</code> to disallowed vars by <a
href="https://github.com/henryiii"><code>@henryiii</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/959">wntrblm/nox#959</a></li>
<li>Never ignore URL dependencies in PEP 723 noxfiles by <a
href="https://github.com/gschaffner"><code>@gschaffner</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/935">wntrblm/nox#935</a></li>
<li>Support forcing Python on parametrized session by <a
href="https://github.com/henryiii"><code>@henryiii</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/958">wntrblm/nox#958</a></li>
<li>Fix <code>conda_install</code> issue with newer conda (only Unix) by
<a href="https://github.com/henryiii"><code>@henryiii</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/957">wntrblm/nox#957</a></li>
<li>Show skip reason by default by <a
href="https://github.com/chirizxc"><code>@chirizxc</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/941">wntrblm/nox#941</a></li>
<li>Support <code>Path</code> for envdir by <a
href="https://github.com/henryiii"><code>@henryiii</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/932">wntrblm/nox#932</a></li>
<li>Use Python 3.12 for action, allow 3.13, drop 3.8 from auto versions
by <a href="https://github.com/henryiii"><code>@henryiii</code></a> in
<a
href="https://redirect.github.com/wntrblm/nox/pull/946">wntrblm/nox#946</a></li>
</ul>
<p>Documentation:</p>
<ul>
<li>Fix a typo in the changelog by <a
href="https://github.com/gschaffner"><code>@gschaffner</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/936">wntrblm/nox#936</a></li>
<li>Update uv recipe by <a
href="https://github.com/henryiii"><code>@henryiii</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/933">wntrblm/nox#933</a></li>
<li>Fix parametrized session tagging example by <a
href="https://github.com/living180"><code>@living180</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/942">wntrblm/nox#942</a></li>
<li>uv now supports <code>pip install .</code> reinstallation by <a
href="https://github.com/henryiii"><code>@henryiii</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/947">wntrblm/nox#947</a></li>
</ul>
<p>Internal changes:</p>
<ul>
<li>Use PEP 639 license info by <a
href="https://github.com/henryiii"><code>@henryiii</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/956">wntrblm/nox#956</a></li>
<li>Make test skips a bit smarter by <a
href="https://github.com/henryiii"><code>@henryiii</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/929">wntrblm/nox#929</a></li>
<li>Add our own requirements to conda too by <a
href="https://github.com/henryiii"><code>@henryiii</code></a> in <a
href="https://redirect.github.com/wntrblm/nox/pull/945">wntrblm/nox#945</a></li>
</ul>
<h2>2025.02.09</h2>
<p>This release improves PEP 723 support, including adding dependencies
to the noxfile itself ("plugins"). It adds the long-awaited
"requires" option, allowing sessions to require other
sessions. And it brings further improvements to the
<code>pyproject.toml</code> support, including helpers for
dependency-groups and Python version lists.</p>
<p>We'd like to thank the following folks who contributed to this
release:</p>
<ul>
<li><a href="https://github.com/btemplep"><code>@btemplep</code></a>
(first contribution)</li>
<li><a href="https://github.com/chirizxc"><code>@chirizxc</code></a>
(first contribution)</li>
<li><a
href="https://github.com/davidhewitt"><code>@davidhewitt</code></a>
(first contribution)</li>
<li><a
href="https://github.com/gschaffner"><code>@gschaffner</code></a>
(first contribution)</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/wntrblm/nox/commit/2254a1ee500bbf66c2a5e4ff5dad030b9f579dcd"><code>2254a1e</code></a>
chore: bump version to 2025.05.01 (<a
href="https://redirect.github.com/wntrblm/nox/issues/960">#960</a>)</li>
<li><a
href="https://github.com/wntrblm/nox/commit/e0b5e330c358234c67694f6cad42f44af986fe43"><code>e0b5e33</code></a>
fix: conda_install issue with newer conda (<a
href="https://redirect.github.com/wntrblm/nox/issues/957">#957</a>)</li>
<li><a
href="https://github.com/wntrblm/nox/commit/a58fe60de4ff8fc523dd96b6b2ea2b53e2fdd0bc"><code>a58fe60</code></a>
fix: support forcing Python on parametrized session (<a
href="https://redirect.github.com/wntrblm/nox/issues/958">#958</a>)</li>
<li><a
href="https://github.com/wntrblm/nox/commit/aa475d6a14add64c666b56607a77439d9d97c1d0"><code>aa475d6</code></a>
fix: add UV_PYTHON to disallowed vars (<a
href="https://redirect.github.com/wntrblm/nox/issues/959">#959</a>)</li>
<li><a
href="https://github.com/wntrblm/nox/commit/1acbb4ee06ee6f55e682d339915382097043d28f"><code>1acbb4e</code></a>
chore: use PEP 639 license (<a
href="https://redirect.github.com/wntrblm/nox/issues/956">#956</a>)</li>
<li><a
href="https://github.com/wntrblm/nox/commit/7219be7e2e8cac28c2c809058a5b5a93053fb776"><code>7219be7</code></a>
chore(deps): bump astral-sh/setup-uv from 5 to 6 in the actions group
(<a
href="https://redirect.github.com/wntrblm/nox/issues/952">#952</a>)</li>
<li><a
href="https://github.com/wntrblm/nox/commit/b943f95d0e12cf8017d440a2f76ce6a9fa20dade"><code>b943f95</code></a>
fix: uv version is now uv self version, support UV (<a
href="https://redirect.github.com/wntrblm/nox/issues/955">#955</a>)</li>
<li><a
href="https://github.com/wntrblm/nox/commit/1d52c8fd93976635e1f51693bf0f36616144c78e"><code>1d52c8f</code></a>
Never ignore URL dependencies in PEP 723 noxfiles (<a
href="https://redirect.github.com/wntrblm/nox/issues/935">#935</a>)</li>
<li><a
href="https://github.com/wntrblm/nox/commit/4e7f644da9d03a44d34940a74d850619fa0c7eb7"><code>4e7f644</code></a>
feat: show skip reason by default (<a
href="https://redirect.github.com/wntrblm/nox/issues/941">#941</a>)</li>
<li><a
href="https://github.com/wntrblm/nox/commit/70df6abb0ea2eacf85c265c1a1c8ea985399edd7"><code>70df6ab</code></a>
fix: use Python 3.12 for action, allow 3.13, drop 3.8 from auto versions
(<a
href="https://redirect.github.com/wntrblm/nox/issues/946">#946</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/wntrblm/nox/compare/2025.02.09...2025.05.01">compare
view</a></li>
</ul>
</details>
<br />
Updates `pytest` from 8.3.5 to 8.4.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/pytest-dev/pytest/releases">pytest's
releases</a>.</em></p>
<blockquote>
<h2>8.4.0</h2>
<h1>pytest 8.4.0 (2025-06-02)</h1>
<h2>Removals and backward incompatible breaking changes</h2>
<ul>
<li>
<p><a
href="https://redirect.github.com/pytest-dev/pytest/issues/11372">#11372</a>:
Async tests will now fail, instead of warning+skipping, if you don't
have any suitable plugin installed.</p>
</li>
<li>
<p><a
href="https://redirect.github.com/pytest-dev/pytest/issues/12346">#12346</a>:
Tests will now fail, instead of raising a warning, if they return any
value other than None.</p>
</li>
<li>
<p><a
href="https://redirect.github.com/pytest-dev/pytest/issues/12874">#12874</a>:
We dropped support for Python 3.8 following its end of life
(2024-10-07).</p>
</li>
<li>
<p><a
href="https://redirect.github.com/pytest-dev/pytest/issues/12960">#12960</a>:
Test functions containing a yield now cause an explicit error. They have
not been run since pytest 4.0, and were previously marked as an expected
failure and deprecation warning.</p>
<p>See <code>the docs <yield tests
deprecated></code>{.interpreted-text role="ref"} for more
information.</p>
</li>
</ul>
<h2>Deprecations (removal in next major release)</h2>
<ul>
<li><a
href="https://redirect.github.com/pytest-dev/pytest/issues/10839">#10839</a>:
Requesting an asynchronous fixture without a
[pytest_fixture_setup]{.title-ref} hook that resolves it will now give a
DeprecationWarning. This most commonly happens if a sync test requests
an async fixture. This should have no effect on a majority of users with
async tests or fixtures using async pytest plugins, but may affect
non-standard hook setups or <code>autouse=True</code>. For guidance on
how to work around this warning see
<code>sync-test-async-fixture</code>{.interpreted-text
role="ref"}.</li>
</ul>
<h2>New features</h2>
<ul>
<li>
<p><a
href="https://redirect.github.com/pytest-dev/pytest/issues/11538">#11538</a>:
Added <code>pytest.RaisesGroup</code>{.interpreted-text
role="class"} as an equivalent to
<code>pytest.raises</code>{.interpreted-text role="func"} for
expecting <code>ExceptionGroup</code>{.interpreted-text
role="exc"}. Also adds
<code>pytest.RaisesExc</code>{.interpreted-text role="class"}
which is now the logic behind
<code>pytest.raises</code>{.interpreted-text role="func"} and
used as parameter to <code>pytest.RaisesGroup</code>{.interpreted-text
role="class"}. <code>RaisesGroup</code> includes the ability
to specify multiple different expected exceptions, the structure of
nested exception groups, and flags for emulating <code>except*
<except_star></code>{.interpreted-text role="ref"}. See
<code>assert-matching-exception-groups</code>{.interpreted-text
role="ref"} and docstrings for more information.</p>
</li>
<li>
<p><a
href="https://redirect.github.com/pytest-dev/pytest/issues/12081">#12081</a>:
Added <code>capteesys</code>{.interpreted-text role="fixture"}
to capture AND pass output to next handler set by
<code>--capture=</code>.</p>
</li>
<li>
<p><a
href="https://redirect.github.com/pytest-dev/pytest/issues/12504">#12504</a>:
<code>pytest.mark.xfail</code>{.interpreted-text role="func"}
now accepts <code>pytest.RaisesGroup</code>{.interpreted-text
role="class"} for the <code>raises</code> parameter when you
expect an exception group. You can also pass a
<code>pytest.RaisesExc</code>{.interpreted-text role="class"}
if you e.g. want to make use of the <code>check</code> parameter.</p>
</li>
<li>
<p><a
href="https://redirect.github.com/pytest-dev/pytest/issues/12713">#12713</a>:
New [--force-short-summary]{.title-ref} option to force condensed
summary output regardless of verbosity level.</p>
<p>This lets users still see condensed summary output of failures for
quick reference in log files from job outputs, being especially useful
if non-condensed output is very verbose.</p>
</li>
<li>
<p><a
href="https://redirect.github.com/pytest-dev/pytest/issues/12749">#12749</a>:
pytest traditionally collects classes/functions in the test module
namespace even if they are imported from another file.</p>
<p>For example:</p>
<pre lang="python"><code># contents of src/domain.py
class Testament: ...
<h1>contents of tests/test_testament.py</h1>
<p>from domain import Testament</p>
<p>def test_testament(): ...
</code></pre></p>
<p>In this scenario with the default options, pytest will collect the
class [Testament]{.title-ref} from [tests/test_testament.py]{.title-ref}
because it starts with [Test]{.title-ref}, even though in this case it
is a production class being imported in the test module namespace.</p>
<p>This behavior can now be prevented by setting the new
<code>collect_imported_tests</code>{.interpreted-text
role="confval"} configuration option to <code>false</code>,
which will make pytest collect classes/functions from test files
<strong>only</strong> if they are defined in that file.</p>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/pytest-dev/pytest/commit/315b3ae798fe38264b3ab2312dced212c46f1e21"><code>315b3ae</code></a>
Prepare release version 8.4.0</li>
<li><a
href="https://github.com/pytest-dev/pytest/commit/1498ba3aa57be19d649e64ee2db0d90ee315abad"><code>1498ba3</code></a>
Merge pull request <a
href="https://redirect.github.com/pytest-dev/pytest/issues/13467">#13467</a>
from pytest-dev/towncrier-create</li>
<li><a
href="https://github.com/pytest-dev/pytest/commit/e4389acb4d650f349a728cc42067d8c1a246bdcb"><code>e4389ac</code></a>
Remove resultlog from the docs (<a
href="https://redirect.github.com/pytest-dev/pytest/issues/13465">#13465</a>)</li>
<li><a
href="https://github.com/pytest-dev/pytest/commit/64b230119cb7c260e1e6ec6887ebc5b3851d39fc"><code>64b2301</code></a>
scripts/release: add missing <code>build</code> to
<code>towncrier</code> call</li>
<li><a
href="https://github.com/pytest-dev/pytest/commit/4c205cfcb08083a2893e07b6d994bd38d183b64a"><code>4c205cf</code></a>
testing/plugins_integration: update Django (<a
href="https://redirect.github.com/pytest-dev/pytest/issues/13463">#13463</a>)</li>
<li><a
href="https://github.com/pytest-dev/pytest/commit/4dcbcc91ff229d69f535aeac75a4d273ce38ca3b"><code>4dcbcc9</code></a>
Merge pull request <a
href="https://redirect.github.com/pytest-dev/pytest/issues/13458">#13458</a>
from pytest-dev/dup-param-error</li>
<li><a
href="https://github.com/pytest-dev/pytest/commit/529301611db71cc5edc40464f3cfa1e95885a1e6"><code>5293016</code></a>
Merge pull request <a
href="https://redirect.github.com/pytest-dev/pytest/issues/13459">#13459</a>
from pytest-dev/pyright-minor-fixes</li>
<li><a
href="https://github.com/pytest-dev/pytest/commit/7a481812a28b141171141abf39cc9bf351e0cbe1"><code>7a48181</code></a>
Add pyright configuration</li>
<li><a
href="https://github.com/pytest-dev/pytest/commit/9fc6db9a550544ce4fb1f889dde3cf1165e7e337"><code>9fc6db9</code></a>
pytester: avoid confusing <code>x</code> self parameter</li>
<li><a
href="https://github.com/pytest-dev/pytest/commit/9aa198bdef285d007305fb14c25d81e9996be518"><code>9aa198b</code></a>
mark/expression: fix self -> cls</li>
<li>Additional commits viewable in <a
href="https://github.com/pytest-dev/pytest/compare/8.3.5...8.4.0">compare
view</a></li>
</ul>
</details>
<br />
Updates `setuptools` from 80.1.0 to 80.9.0
<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.9.0</h1>
<h2>Features</h2>
<ul>
<li>Set a deadline for the removal of pkg_resources later this year
(December). (<a
href="https://redirect.github.com/pypa/setuptools/issues/3085">#3085</a>)</li>
<li>Removed reliance on pkg_resources in test_wheel. (<a
href="https://redirect.github.com/pypa/setuptools/issues/3085">#3085</a>)</li>
</ul>
<h1>v80.8.0</h1>
<h2>Features</h2>
<ul>
<li>Replaced more references to pkg_resources with importlib equivalents
in wheel odule. (<a
href="https://redirect.github.com/pypa/setuptools/issues/3085">#3085</a>)</li>
<li>Restore explicit LICENSE file. (<a
href="https://redirect.github.com/pypa/setuptools/issues/5001">#5001</a>)</li>
<li>Removed no longer used build dependency on
<code>coherent.licensed</code>. (<a
href="https://redirect.github.com/pypa/setuptools/issues/5003">#5003</a>)</li>
</ul>
<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>
<p>Features</p>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/pypa/setuptools/commit/9c4d383631d3951fcae0afd73b5d08ff5a262976"><code>9c4d383</code></a>
Bump version: 80.8.0 → 80.9.0</li>
<li><a
href="https://github.com/pypa/setuptools/commit/05cb3c84f1422f3b26ccfb00f4c43886dc55b9bc"><code>05cb3c8</code></a>
Merge pull request <a
href="https://redirect.github.com/pypa/setuptools/issues/5014">#5014</a>
from pypa/debt/pkg_resources-deadline</li>
<li><a
href="https://github.com/pypa/setuptools/commit/3b0bf5bd43034c448a10e7102788fe710b4bb496"><code>3b0bf5b</code></a>
Adjust ignore</li>
<li><a
href="https://github.com/pypa/setuptools/commit/9c28cdffd423f83e43dbfd39fc793c251da48585"><code>9c28cdf</code></a>
Set a deadline for the removal of pkg_resources later this year
(December).</li>
<li><a
href="https://github.com/pypa/setuptools/commit/a3bfef95193bf0ff78ef6e0fb8c63a3728f443b0"><code>a3bfef9</code></a>
Merge pull request <a
href="https://redirect.github.com/pypa/setuptools/issues/5013">#5013</a>
from DimitriPapadopoulos/ISC</li>
<li><a
href="https://github.com/pypa/setuptools/commit/64bf9d0ce88a09748f702bd7736d9ec2879aa6ef"><code>64bf9d0</code></a>
Enforce ruff/flake8-implicit-str-concat rules (ISC)</li>
<li><a
href="https://github.com/pypa/setuptools/commit/3250c25197b299658cfd4d0db67770fc29b47277"><code>3250c25</code></a>
Fix broken link in docs (<a
href="https://redirect.github.com/pypa/setuptools/issues/4947">#4947</a>)</li>
<li><a
href="https://github.com/pypa/setuptools/commit/5ccf50e01ab0d303f524c065f2cb51042b34bc55"><code>5ccf50e</code></a>
Merge pull request <a
href="https://redirect.github.com/pypa/setuptools/issues/5006">#5006</a>
from pypa/feature/remove-more-pkg_resources</li>
<li><a
href="https://github.com/pypa/setuptools/commit/134e587c0ba0b59e1661f08a45e6d6d1ecd24329"><code>134e587</code></a>
Suppress nitpicky typecheck in pyright.</li>
<li><a
href="https://github.com/pypa/setuptools/commit/0bf2663a19f2d947697997d125c3c880df2011b7"><code>0bf2663</code></a>
Add news fragment.</li>
<li>Additional commits viewable in <a
href="https://github.com/pypa/setuptools/compare/v80.1.0...v80.9.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>1 file changed
+4
-4
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
3 | 3 | | |
4 | 4 | | |
5 | 5 | | |
6 | | - | |
| 6 | + | |
7 | 7 | | |
8 | 8 | | |
9 | 9 | | |
| |||
65 | 65 | | |
66 | 66 | | |
67 | 67 | | |
68 | | - | |
| 68 | + | |
69 | 69 | | |
70 | 70 | | |
71 | 71 | | |
72 | 72 | | |
73 | 73 | | |
74 | 74 | | |
75 | 75 | | |
76 | | - | |
| 76 | + | |
77 | 77 | | |
78 | 78 | | |
79 | 79 | | |
| |||
83 | 83 | | |
84 | 84 | | |
85 | 85 | | |
86 | | - | |
| 86 | + | |
87 | 87 | | |
88 | 88 | | |
89 | 89 | | |
| |||
0 commit comments