Skip to content

Commit 7b8d97f

Browse files
authored
Bump the minor group across 1 directory with 4 updates (#446)
Bumps the minor group with 4 updates in the / directory: [flake8](https://github.com/pycqa/flake8), [mypy](https://github.com/python/mypy), [hypothesis](https://github.com/HypothesisWorks/hypothesis) and [pytest](https://github.com/pytest-dev/pytest). 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.16.1 to 1.17.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> <h3>Mypy 1.17.1</h3> <ul> <li>Retain <code>None</code> as constraints bottom if no bottoms were provided (Stanislav Terliakov, PR <a href="https://redirect.github.com/python/mypy/pull/19485">19485</a>)</li> <li>Fix &quot;ignored exception in <code>hasattr</code>&quot; in dmypy (Stanislav Terliakov, PR <a href="https://redirect.github.com/python/mypy/pull/19428">19428</a>)</li> <li>Prevent a crash when InitVar is redefined with a method in a subclass (Stanislav Terliakov, PR <a href="https://redirect.github.com/python/mypy/pull/19453">19453</a>)</li> </ul> <h3>Acknowledgements</h3> <p>Thanks to all mypy contributors who contributed to this release:</p> <ul> <li>Alexey Makridenko</li> <li>Brian Schubert</li> <li>Chad Dombrova</li> <li>Chainfire</li> <li>Charlie Denton</li> <li>Charulata</li> <li>Christoph Tyralla</li> <li>CoolCat467</li> <li>Donal Burns</li> <li>Guy Wilson</li> <li>Ivan Levkivskyi</li> <li>johnthagen</li> <li>Jukka Lehtosalo</li> <li>Łukasz Kwieciński</li> <li>Marc Mueller</li> <li>Michael J. Sullivan</li> <li>Mikhail Golubev</li> <li>Sebastian Rittau</li> <li>Shantanu</li> <li>Stanislav Terliakov</li> <li>wyattscarpenter</li> </ul> <p>I’d also like to thank my employer, Dropbox, for supporting mypy development.</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 &lt;/tr&gt;&lt;/table&gt; </code></pre> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/python/mypy/commit/acb29831e286bbccde37c03bc75381f40a5fdc9e"><code>acb2983</code></a> Bump version to 1.17.1</li> <li><a href="https://github.com/python/mypy/commit/933c913fbe6d2fbf277ff8d6b2f2298f0f84be64"><code>933c913</code></a> Retain <code>None</code> as constraints bottom if no bottoms were provided (<a href="https://redirect.github.com/python/mypy/issues/19485">#19485</a>)</li> <li><a href="https://github.com/python/mypy/commit/5f4428f0286df58169d2f34f4f86561ad617538b"><code>5f4428f</code></a> Fix &quot;ignored exception in <code>hasattr</code>&quot; in dmypy (<a href="https://redirect.github.com/python/mypy/issues/19428">#19428</a>)</li> <li><a href="https://github.com/python/mypy/commit/88fdeaae0abc92d605fc475fd153b4ad5b239310"><code>88fdeaa</code></a> Prevent a crash when InitVar is redefined with a method in a subclass (<a href="https://redirect.github.com/python/mypy/issues/19453">#19453</a>)</li> <li><a href="https://github.com/python/mypy/commit/e44d14f8e52a8890d08726ee753c8754edefd649"><code>e44d14f</code></a> Bump version to 1.17.1+dev</li> <li><a href="https://github.com/python/mypy/commit/0260991f6b055110c3df36bd5539d4f4489bf153"><code>0260991</code></a> Update version string</li> <li><a href="https://github.com/python/mypy/commit/3901aa2f9523ce55e08d94c1716028d840398753"><code>3901aa2</code></a> Updates to 1.17 changelog (<a href="https://redirect.github.com/python/mypy/issues/19436">#19436</a>)</li> <li><a href="https://github.com/python/mypy/commit/7d133961a7e759aab84223bf8038b9489daaa93c"><code>7d13396</code></a> Initial changelog for 1.17 release (<a href="https://redirect.github.com/python/mypy/issues/19427">#19427</a>)</li> <li><a href="https://github.com/python/mypy/commit/a182dec997b418b925fe0c28575c50debba0bb3a"><code>a182dec</code></a> Combine the revealed types of multiple iteration steps in a more robust manne...</li> <li><a href="https://github.com/python/mypy/commit/ab4fd57d45b7f81cf281b17b7d3697ac9f79bc15"><code>ab4fd57</code></a> Improve the handling of &quot;iteration dependent&quot; errors and notes in finally cla...</li> <li>Additional commits viewable in <a href="https://github.com/python/mypy/compare/v1.16.1...v1.17.1">compare view</a></li> </ul> </details> <br /> Updates `hypothesis` from 6.132.0 to 6.136.7 <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.136.7</h2> <p>Improve detection of sys.monitoring to avoid errors on GraalPy.</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changelog.html#v6-136-7">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.136.6</h2> <p>When a test is executed concurrently from multiple threads, &quot;HealthCheck.too_slow&quot; is now disabled, since the Python runtime may decide to switch away from a thread for arbitrarily long and Hypothesis cannot track execution time per-thread.</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changelog.html#v6-136-6">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.136.5</h2> <p>This patch updates our vendored list of top-level domains, which is used by the provisional &quot;domains()&quot; strategy.</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changelog.html#v6-136-5">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.136.4</h2> <p>&quot;HealthCheck.differing_executors&quot; is no longer raised if a test is executed by different executors from different threads. &quot;HealthCheck.differing_executors&quot; will still be raised if a test is executed by different executors in the same thread.</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changelog.html#v6-136-4">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.136.3</h2> <p>When a test is executed concurrently from multiple threads, &quot;DeadlineExceeded&quot; is now disabled, since the Python runtime may decide to switch away from a thread for longer than &quot;settings.deadline&quot;, and Hypothesis cannot track execution time per- thread. See issue <a href="https://redirect.github.com/HypothesisWorks/hypothesis/issues/4478">#4478</a>.</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changelog.html#v6-136-3">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.136.2</h2> <p>&quot;<a href="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/precondition"><code>@​precondition</code></a>&quot; now errors if used without &quot;<a href="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/rule"><code>@​rule</code></a>&quot; or &quot;<a href="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/invariant"><code>@​invariant</code></a>&quot;. Doing so has no effect and is indicative of a user error (issue <a href="https://redirect.github.com/HypothesisWorks/hypothesis/issues/4413">#4413</a>).</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changelog.html#v6-136-2">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.136.1</h2> <p>Fix &quot;on_observation()&quot; being called with observations it wasn't responsible for generating if the test failed.</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changelog.html#v6-136-1">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.136.0</h2> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/15cb8645cc13d03e03672fb56b764b6ed4d87c6c"><code>15cb864</code></a> Bump hypothesis-python version to 6.136.7 and update changelog</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/d86b86dbf4c8313d4c15d1dd955c34cccbf25a52"><code>d86b86d</code></a> Merge pull request <a href="https://redirect.github.com/HypothesisWorks/hypothesis/issues/4492">#4492</a> from msimacek/msimacek/graalpy</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/494aed45f598bc5e58d6a1aac0fb719491d136a0"><code>494aed4</code></a> Improve detection of sys.monitoring</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/7ed359f0ed7b063fd5a0b21393fe00a7e3aee9f2"><code>7ed359f</code></a> Merge pull request <a href="https://redirect.github.com/HypothesisWorks/hypothesis/issues/4488">#4488</a> from tybug/website</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/f560e5410ed3a1e4c407ae08c0aaad06cc635aca"><code>f560e54</code></a> tweak website styling</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/8b68248cf96c97645ab13e8a52f6c9284bfeb7c2"><code>8b68248</code></a> Bump hypothesis-python version to 6.136.6 and update changelog</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/3d516e7d6847c071b85881d406a1774ba04e041e"><code>3d516e7</code></a> Merge pull request <a href="https://redirect.github.com/HypothesisWorks/hypothesis/issues/4486">#4486</a> from tybug/free-threading-too-slow</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/3724e99d3ae696fcafc762ffc2a1b2a65e0a1ab6"><code>3724e99</code></a> disable HealthCheck.too_slow under threading</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/261be96e4ec7bd2d521b49fea0e612bef81c1530"><code>261be96</code></a> Bump hypothesis-python version to 6.136.5 and update changelog</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/cc0c813fe0c4ce2d886fbe9808b825704a364e10"><code>cc0c813</code></a> Merge pull request <a href="https://redirect.github.com/HypothesisWorks/hypothesis/issues/4485">#4485</a> from tybug/liam-update-deps</li> <li>Additional commits viewable in <a href="https://github.com/HypothesisWorks/hypothesis/compare/hypothesis-python-6.132.0...hypothesis-python-6.136.7">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 /> 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 ea592f7 + 229fc2d commit 7b8d97f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ email = "[email protected]"
3737

3838
[project.optional-dependencies]
3939
dev-flake8 = [
40-
"flake8 == 7.2.0",
40+
"flake8 == 7.3.0",
4141
"flake8-docstrings == 1.7.0",
4242
"flake8-pyproject == 1.2.3", # For reading the flake8 config from pyproject.toml
4343
"pydoclint == 0.6.6",
@@ -63,7 +63,7 @@ dev-mkdocs = [
6363
dev-mypy = [
6464
# For checking the noxfile, docs/ script, and tests
6565
"frequenz-channels[dev-mkdocs,dev-noxfile,dev-pytest]",
66-
"mypy == 1.16.1",
66+
"mypy == 1.17.1",
6767
"types-Markdown == 3.8.0.20250415",
6868
]
6969
dev-noxfile = ["nox == 2025.5.1", "frequenz-repo-config[lib] == 0.13.5"]
@@ -75,8 +75,8 @@ dev-pylint = [
7575
dev-pytest = [
7676
"async-solipsism == 0.8",
7777
"frequenz-repo-config[extra-lint-examples] == 0.13.5",
78-
"hypothesis == 6.132.0",
79-
"pytest == 8.3.5",
78+
"hypothesis == 6.136.8",
79+
"pytest == 8.4.1",
8080
"pytest-asyncio == 1.1.0",
8181
"pytest-mock == 3.14.1",
8282
]

0 commit comments

Comments
 (0)