Skip to content

Commit f0bca75

Browse files
Bump the minor group across 1 directory with 6 updates (#1240)
Bumps the minor group with 6 updates in the / directory: | Package | From | To | | --- | --- | --- | | [flake8](https://github.com/pycqa/flake8) | `7.2.0` | `7.3.0` | | [mypy](https://github.com/python/mypy) | `1.15.0` | `1.16.1` | | [types-setuptools](https://github.com/typeshed-internal/stub_uploader) | `80.3.0.20250505` | `80.9.0.20250529` | | [pytest](https://github.com/pytest-dev/pytest) | `8.3.5` | `8.4.1` | | [hypothesis](https://github.com/HypothesisWorks/hypothesis) | `6.131.9` | `6.135.14` | | [setuptools](https://github.com/pypa/setuptools) | `80.3.1` | `80.9.0` | Updates `flake8` from 7.2.0 to 7.3.0 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/PyCQA/flake8/commit/c48217e1fc006c2dddd14df54e83b67da15de5cd"><code>c48217e</code></a> Release 7.3.0</li> <li><a href="https://github.com/PyCQA/flake8/commit/f9e0f33281d5bb892cae2c674ac398439d99c732"><code>f9e0f33</code></a> Merge pull request <a href="https://redirect.github.com/pycqa/flake8/issues/1986">#1986</a> from PyCQA/document-f542</li> <li><a href="https://github.com/PyCQA/flake8/commit/6bcdb628597fa2d03494965089ff87a492ffc1e9"><code>6bcdb62</code></a> document F542</li> <li><a href="https://github.com/PyCQA/flake8/commit/70a15b8890d5bdf8c449ebb1b5259bd0140cc16b"><code>70a15b8</code></a> Merge pull request <a href="https://redirect.github.com/pycqa/flake8/issues/1985">#1985</a> from PyCQA/upgrade-deps</li> <li><a href="https://github.com/PyCQA/flake8/commit/4941a3e32e54488698ecbc23993bfeb2a60c0fc5"><code>4941a3e</code></a> upgrade pyflakes / pycodestyle</li> <li><a href="https://github.com/PyCQA/flake8/commit/23e4005c5501999c29e1e3774de7ed18d1e4e22d"><code>23e4005</code></a> Merge pull request <a href="https://redirect.github.com/pycqa/flake8/issues/1983">#1983</a> from PyCQA/py314</li> <li><a href="https://github.com/PyCQA/flake8/commit/019424b80d3d7d5d8a2a1638f5877080546e3f46"><code>019424b</code></a> add support for t-strings</li> <li><a href="https://github.com/PyCQA/flake8/commit/6b6f3d5fefecc994a06f425c18c3cddc9b71e4a4"><code>6b6f3d5</code></a> Merge pull request <a href="https://redirect.github.com/pycqa/flake8/issues/1980">#1980</a> from PyCQA/asottile-patch-1</li> <li><a href="https://github.com/PyCQA/flake8/commit/8dfa6695b4fb1e1401b357367a0a71037d29f6aa"><code>8dfa669</code></a> add rtd sphinx config</li> <li><a href="https://github.com/PyCQA/flake8/commit/ce3411118382d9332feb2749c8f417d10bfa2584"><code>ce34111</code></a> Merge pull request <a href="https://redirect.github.com/pycqa/flake8/issues/1976">#1976</a> from PyCQA/document-f824</li> <li>Additional commits viewable in <a href="https://github.com/pycqa/flake8/compare/7.2.0...7.3.0">compare view</a></li> </ul> </details> <br /> Updates `mypy` from 1.15.0 to 1.16.1 <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> <h3>Remove Support for targeting Python 3.8</h3> <p>Mypy now requires <code>--python-version 3.9</code> or greater. Support for only Python 3.8 is fully removed now. Given an unsupported version, mypy will default to the oldest supported one, currently 3.9.</p> <p>This change is necessary because typeshed stopped supporting Python 3.8 after it reached its End of Life in October 2024.</p> <p>Contributed by Marc Mueller (PR <a href="https://redirect.github.com/python/mypy/pull/19157">19157</a>, PR <a href="https://redirect.github.com/python/mypy/pull/19162">19162</a>).</p> <h3>Initial Support for Python 3.14</h3> <p>Mypy is now tested on 3.14 and mypyc works with 3.14.0b3 and later. Mypyc compiled wheels of mypy itself will be available for new versions after 3.14.0rc1 is released.</p> <p>Note that not all new features might be supported just yet.</p> <p>Contributed by Marc Mueller (PR <a href="https://redirect.github.com/python/mypy/pull/19164">19164</a>)</p> <h3>Deprecated Flag: --force-uppercase-builtins</h3> <p>Mypy only supports Python 3.9+. The --force-uppercase-builtins flag is now deprecated and a no-op. It will be removed in a future version.</p> <p>Contributed by Marc Mueller (PR <a href="https://redirect.github.com/python/mypy/pull/19176">19176</a>)</p> <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 </code></pre> <p>&lt;/tr&gt;&lt;/table&gt; </code></pre></p> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/python/mypy/commit/68b8fa097d080c92d30a429bc74de8acd56caf85"><code>68b8fa0</code></a> Bump version to 1.16.1</li> <li><a href="https://github.com/python/mypy/commit/e253eded9c887630f3f5404c4b9f73f13570476a"><code>e253ede</code></a> Single underscore is not a sunder (<a href="https://redirect.github.com/python/mypy/issues/19273">#19273</a>)</li> <li><a href="https://github.com/python/mypy/commit/9fb5ff66c51bd971d7a6b1260cc0ec9f1b82cc06"><code>9fb5ff6</code></a> Fix properties with setters after deleters (<a href="https://redirect.github.com/python/mypy/issues/19248">#19248</a>)</li> <li><a href="https://github.com/python/mypy/commit/c20fd7838338cd65d6c7c6e252eda85996cfc98e"><code>c20fd78</code></a> Handle assignment of bound methods in class bodies (<a href="https://redirect.github.com/python/mypy/issues/19233">#19233</a>)</li> <li><a href="https://github.com/python/mypy/commit/c86480ce51e4bb6db21f4b3f0b3ec8833aafc8ce"><code>c86480c</code></a> Tighten metaclass <strong>call</strong> handling in protocols (<a href="https://redirect.github.com/python/mypy/issues/19191">#19191</a>)</li> <li><a href="https://github.com/python/mypy/commit/cb3c6ec6a7aaa96a0e26768a946ac63ea14115f2"><code>cb3c6ec</code></a> Fix crash on partial type used as context (<a href="https://redirect.github.com/python/mypy/issues/19216">#19216</a>)</li> <li><a href="https://github.com/python/mypy/commit/c39f5e73c47182e51c5d8d488f7cc7301257c974"><code>c39f5e7</code></a> [mypyc] Fixing condition for handling user-defined <strong>del</strong> (<a href="https://redirect.github.com/python/mypy/issues/19188">#19188</a>)</li> <li><a href="https://github.com/python/mypy/commit/0a4f28431faa18e59d35bc269cb0ea6c00810653"><code>0a4f284</code></a> Fix crash on invalid property inside its own body (<a href="https://redirect.github.com/python/mypy/issues/19208">#19208</a>)</li> <li><a href="https://github.com/python/mypy/commit/9b079f6592740a51c0e629728eeb0324ad85126f"><code>9b079f6</code></a> Bump version to 1.16.1+dev</li> <li><a href="https://github.com/python/mypy/commit/9e72e9601f4c2fb6866cfec98fc40a31c91ccdb0"><code>9e72e96</code></a> Update version to 1.16.0</li> <li>Additional commits viewable in <a href="https://github.com/python/mypy/compare/v1.15.0...v1.16.1">compare view</a></li> </ul> </details> <br /> Updates `types-setuptools` from 80.3.0.20250505 to 80.9.0.20250529 <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 `pytest` from 8.3.5 to 8.4.1 <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.1</h2> <h1>pytest 8.4.1 (2025-06-17)</h1> <h2>Bug fixes</h2> <ul> <li> <p><a href="https://redirect.github.com/pytest-dev/pytest/issues/13461">#13461</a>: Corrected <code>_pytest.terminal.TerminalReporter.isatty</code> to support being called as a method. Before it was just a boolean which could break correct code when using <code>-o log_cli=true</code>).</p> </li> <li> <p><a href="https://redirect.github.com/pytest-dev/pytest/issues/13477">#13477</a>: Reintroduced <code>pytest.PytestReturnNotNoneWarning</code>{.interpreted-text role=&quot;class&quot;} which was removed by accident in pytest [8.4]{.title-ref}.</p> <p>This warning is raised when a test functions returns a value other than <code>None</code>, which is often a mistake made by beginners.</p> <p>See <code>return-not-none</code>{.interpreted-text role=&quot;ref&quot;} for more information.</p> </li> <li> <p><a href="https://redirect.github.com/pytest-dev/pytest/issues/13497">#13497</a>: Fixed compatibility with <code>Twisted 25+</code>.</p> </li> </ul> <h2>Improved documentation</h2> <ul> <li><a href="https://redirect.github.com/pytest-dev/pytest/issues/13492">#13492</a>: Fixed outdated warning about <code>faulthandler</code> not working on Windows.</li> </ul> <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 &lt;yield tests deprecated&gt;</code>{.interpreted-text role=&quot;ref&quot;} 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=&quot;ref&quot;}.</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=&quot;class&quot;} as an equivalent to <code>pytest.raises</code>{.interpreted-text role=&quot;func&quot;} for expecting <code>ExceptionGroup</code>{.interpreted-text role=&quot;exc&quot;}. Also adds <code>pytest.RaisesExc</code>{.interpreted-text role=&quot;class&quot;} which is now the logic behind <code>pytest.raises</code>{.interpreted-text role=&quot;func&quot;} and used as parameter to <code>pytest.RaisesGroup</code>{.interpreted-text role=&quot;class&quot;}. <code>RaisesGroup</code> includes the ability to specify multiple different expected exceptions, the structure of nested exception groups, and flags for emulating <code>except* &lt;except_star&gt;</code>{.interpreted-text role=&quot;ref&quot;}. See <code>assert-matching-exception-groups</code>{.interpreted-text role=&quot;ref&quot;} 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=&quot;fixture&quot;} 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=&quot;func&quot;} now accepts <code>pytest.RaisesGroup</code>{.interpreted-text role=&quot;class&quot;} for the <code>raises</code> parameter when you expect an exception group. You can also pass a <code>pytest.RaisesExc</code>{.interpreted-text role=&quot;class&quot;} 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> </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/8d99211f0ce3927eb7ee579f7b4f969da06dc787"><code>8d99211</code></a> Prepare release version 8.4.1</li> <li><a href="https://github.com/pytest-dev/pytest/commit/5dc5880715633c97310c0593f0ae356de27fa933"><code>5dc5880</code></a> docs: update pytest.ini addopts example to use separate -p entries (<a href="https://redirect.github.com/pytest-dev/pytest/issues/13529">#13529</a>) (...</li> <li><a href="https://github.com/pytest-dev/pytest/commit/d0c7ed0bfae5a5f1f9153cd1e464a421d701e925"><code>d0c7ed0</code></a> Reintroduce PytestReturnNotNoneWarning (<a href="https://redirect.github.com/pytest-dev/pytest/issues/13495">#13495</a>) (<a href="https://redirect.github.com/pytest-dev/pytest/issues/13527">#13527</a>)</li> <li><a href="https://github.com/pytest-dev/pytest/commit/a1b3a7879589eb437e4fd97c169b228c3ed58c63"><code>a1b3a78</code></a> Fix compatibility with Twisted 25 (<a href="https://redirect.github.com/pytest-dev/pytest/issues/13502">#13502</a>) (<a href="https://redirect.github.com/pytest-dev/pytest/issues/13531">#13531</a>)</li> <li><a href="https://github.com/pytest-dev/pytest/commit/4c161aba8ecaab9940040702369025595d26564c"><code>4c161ab</code></a> pytester: avoid unraisableexception gc collects in inline runs to speed up te...</li> <li><a href="https://github.com/pytest-dev/pytest/commit/a86ee09291f913b36fdeec14c42356515b91c979"><code>a86ee09</code></a> Fix typo in parametrize.rst (<a href="https://redirect.github.com/pytest-dev/pytest/issues/13514">#13514</a>) (<a href="https://redirect.github.com/pytest-dev/pytest/issues/13516">#13516</a>)</li> <li><a href="https://github.com/pytest-dev/pytest/commit/1a0581b0227fa07afd1f2c4c6215aec3862cf1ab"><code>1a0581b</code></a> Remove outdated warning about faulthandler_timeout on Windows (<a href="https://redirect.github.com/pytest-dev/pytest/issues/13492">#13492</a>) (<a href="https://redirect.github.com/pytest-dev/pytest/issues/13493">#13493</a>)</li> <li><a href="https://github.com/pytest-dev/pytest/commit/4e631a71484c2fa49e3fd9f884546af411a4888d"><code>4e631a7</code></a> Merge pull request <a href="https://redirect.github.com/pytest-dev/pytest/issues/13486">#13486</a> from hosmir/fixtypo (<a href="https://redirect.github.com/pytest-dev/pytest/issues/13487">#13487</a>)</li> <li><a href="https://github.com/pytest-dev/pytest/commit/b49745ec529f06edfbbe531b766839763b2be3c2"><code>b49745e</code></a> fix: support TerminalReporter.isatty being called (<a href="https://redirect.github.com/pytest-dev/pytest/issues/13462">#13462</a>) (<a href="https://redirect.github.com/pytest-dev/pytest/issues/13483">#13483</a>)</li> <li><a href="https://github.com/pytest-dev/pytest/commit/cc5ceed916d0c63696da33c67e035917194a4e87"><code>cc5ceed</code></a> RELEASING: remove pytest mailing list (<a href="https://redirect.github.com/pytest-dev/pytest/issues/13472">#13472</a>) (<a href="https://redirect.github.com/pytest-dev/pytest/issues/13473">#13473</a>)</li> <li>Additional commits viewable in <a href="https://github.com/pytest-dev/pytest/compare/8.3.5...8.4.1">compare view</a></li> </ul> </details> <br /> Updates `hypothesis` from 6.131.9 to 6.135.14 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/HypothesisWorks/hypothesis/releases">hypothesis's releases</a>.</em></p> <blockquote> <h2>Hypothesis for Python - version 6.135.14</h2> <p>Speed up usages of &quot;sampled_from()&quot; by deferring evaluation of its repr, and truncating its repr for large collections (over 512 elements). This is especially noticeable when using &quot;sampled_from()&quot; with large collections. The repr of &quot;sampled_from()&quot; strategies involving sequence classes with custom reprs may change as a result of this release.</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changelog.html#v6-135-14">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.135.13</h2> <p>Fixes a substantial performance regression in stateful tests from computing string representations, present since version 6.131.20.</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changelog.html#v6-135-13">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.135.12</h2> <p>Fix a rare race condition in internal cache eviction logic.</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changelog.html#v6-135-12">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.135.11</h2> <p>This patch fixes an error when importing our django extra (via &quot;hypothesis.extra.django&quot;) if &quot;django.contrib.auth&quot; was not in &quot;INSTALLED_APPS&quot; (issue <a href="https://redirect.github.com/HypothesisWorks/hypothesis/issues/3716">#3716</a>).</p> <p>Thanks to Chris Wesseling for this fix!</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changelog.html#v6-135-11">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.135.10</h2> <p>Fix a rare race condition in &quot;fetch()&quot;, where we might have read from a non-existent directory.</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changelog.html#v6-135-10">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.135.9</h2> <p>Refactor some internal code related to patches to make it easier to test.</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changelog.html#v6-135-9">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.135.8</h2> <p>Add type hints to internal code for patching.</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changelog.html#v6-135-8">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.135.7</h2> <p>Fixes a race condition in &quot;add_listener()&quot; for &quot;DirectoryBasedExampleDatabase&quot; after version 6.135.1 where the</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/b953137dda67a4ce3bc57d975f8e71327c78895f"><code>b953137</code></a> Bump hypothesis-python version to 6.135.14 and update changelog</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/886f137e77c9aec1bc274013de017ff928e9526e"><code>886f137</code></a> Merge pull request <a href="https://redirect.github.com/HypothesisWorks/hypothesis/issues/4441">#4441</a> from tybug/sampledfrom-repr-speed</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/fc2b3edef7aa11f59a98353f30f8babf5ce70111"><code>fc2b3ed</code></a> add from_type(type) special ghostwriter case</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/7e96e9c82038a6fd2960b8c4dad27aabf6d9952e"><code>7e96e9c</code></a> use get_pretty_function_description</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/0addf8e2293183ebeaf115e0be8f4c9cfe2044d9"><code>0addf8e</code></a> Bump hypothesis-python version to 6.135.13 and update changelog</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/6856f1fa74e744ab23bfae2022502dfbc549c086"><code>6856f1f</code></a> Merge pull request <a href="https://redirect.github.com/HypothesisWorks/hypothesis/issues/4440">#4440</a> from tybug/stateful-asdict-perf</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/bca8d9566c506f9090499f19fe6703ba6066dbbc"><code>bca8d95</code></a> lint</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/811762e98747a26293a5cd0b9952f1a4b44aab66"><code>811762e</code></a> cache and defer sampled_from repr</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/d48f1c6f63123c67698e7fcf8ba90d2208aa51cb"><code>d48f1c6</code></a> use dataclasses.fields, not dataclasses.asdict</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/ed6e36c2f2eebcb97cfebeac6a9606c561a783bf"><code>ed6e36c</code></a> Bump hypothesis-python version to 6.135.12 and update changelog</li> <li>Additional commits viewable in <a href="https://github.com/HypothesisWorks/hypothesis/compare/hypothesis-python-6.131.9...hypothesis-python-6.135.14">compare view</a></li> </ul> </details> <br /> Updates `setuptools` from 80.3.1 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.3.1...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>
2 parents 9d617fa + 99872e4 commit f0bca75

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

pyproject.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
[build-system]
55
requires = [
6-
"setuptools == 80.3.1",
6+
"setuptools == 80.9.0",
77
"setuptools_scm[toml] == 8.3.1",
88
"frequenz-repo-config[lib] == 0.13.4",
99
]
@@ -47,7 +47,7 @@ email = "[email protected]"
4747

4848
[project.optional-dependencies]
4949
dev-flake8 = [
50-
"flake8 == 7.2.0",
50+
"flake8 == 7.3.0",
5151
"flake8-docstrings == 1.7.0",
5252
"flake8-pyproject == 1.2.3", # For reading the flake8 config from pyproject.toml
5353
"pydoclint == 0.6.6",
@@ -67,10 +67,10 @@ dev-mkdocs = [
6767
"frequenz-repo-config[lib] == 0.13.4",
6868
]
6969
dev-mypy = [
70-
"mypy == 1.15.0",
70+
"mypy == 1.16.1",
7171
"types-Markdown == 3.8.0.20250415",
7272
"types-protobuf == 6.30.2.20250516",
73-
"types-setuptools == 80.3.0.20250505",
73+
"types-setuptools == 80.9.0.20250529",
7474
# For checking the noxfile, docs/ script, and tests
7575
"frequenz-sdk[dev-mkdocs,dev-noxfile,dev-pytest]",
7676
]
@@ -81,13 +81,13 @@ dev-pylint = [
8181
"frequenz-sdk[dev-mkdocs,dev-noxfile,dev-pytest]",
8282
]
8383
dev-pytest = [
84-
"pytest == 8.3.5",
84+
"pytest == 8.4.1",
8585
"frequenz-repo-config[extra-lint-examples] == 0.13.4",
8686
"pytest-mock == 3.14.1",
8787
"pytest-asyncio == 0.26.0",
8888
"time-machine == 2.16.0",
8989
"async-solipsism == 0.7",
90-
"hypothesis == 6.131.9",
90+
"hypothesis == 6.135.14",
9191
]
9292
dev = [
9393
"frequenz-sdk[dev-mkdocs,dev-flake8,dev-formatting,dev-mkdocs,dev-mypy,dev-noxfile,dev-pylint,dev-pytest]",

0 commit comments

Comments
 (0)