Skip to content

Commit bfb1822

Browse files
Bump the dependencies group in /.config with 9 updates (#4453)
Bumps the dependencies group in /.config with 9 updates: | Package | From | To | | --- | --- | --- | | [mypy](https://github.com/python/mypy) | `1.15.0` | `1.16.0` | | [pytest-mock](https://github.com/pytest-dev/pytest-mock) | `3.14.0` | `3.14.1` | | [pytest-xdist](https://github.com/pytest-dev/pytest-xdist) | `3.6.1` | `3.7.0` | | [ruff](https://github.com/astral-sh/ruff) | `0.11.11` | `0.11.12` | | [types-jsonschema](https://github.com/typeshed-internal/stub_uploader) | `4.23.0.20250516` | `4.24.0.20250528` | | [jsonschema](https://github.com/python-jsonschema/jsonschema) | `4.23.0` | `4.24.0` | | ruamel-yaml | `0.18.11` | `0.18.12` | | [zipp](https://github.com/jaraco/zipp) | `3.21.0` | `3.22.0` | 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) -&amp;gt; int: return self._value @foo.setter def foo(self, x: str | int) -&amp;gt; None: try: self._value = int(x) except ValueError: raise Exception(f&amp;quot;'{x}' is not a valid value for 'foo'&amp;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) -&gt; int | str: if b: x = n else: &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/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 &quot;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 `pytest-mock` from 3.14.0 to 3.14.1 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/pytest-dev/pytest-mock/releases">pytest-mock's releases</a>.</em></p> <blockquote> <h2>v3.14.1</h2> <ul> <li><a href="https://redirect.github.com/pytest-dev/pytest-mock/pull/503">#503</a>: Python 3.14 is now officially supported.</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pytest-dev/pytest-mock/blob/main/CHANGELOG.rst">pytest-mock's changelog</a>.</em></p> <blockquote> <h2>3.14.1 (2025-08-26)</h2> <ul> <li><code>[#503](pytest-dev/pytest-mock#503) &lt;https://github.com/pytest-dev/pytest-mock/pull/503&gt;</code>_: Python 3.14 is now officially supported.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pytest-dev/pytest-mock/commit/34dd61aa459520e096c70eb8a573700fc17c5de8"><code>34dd61a</code></a> Release 3.14.1</li> <li><a href="https://github.com/pytest-dev/pytest-mock/commit/299adb96640a51a48b5af9a69064b9edd7a9fe90"><code>299adb9</code></a> Add support for Python 3.14 (<a href="https://redirect.github.com/pytest-dev/pytest-mock/issues/503">#503</a>)</li> <li><a href="https://github.com/pytest-dev/pytest-mock/commit/f5fcef726a8ba4a54cd138321ae9771648a0bc8a"><code>f5fcef7</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://redirect.github.com/pytest-dev/pytest-mock/issues/504">#504</a>)</li> <li><a href="https://github.com/pytest-dev/pytest-mock/commit/bae64d8c8ef44a7075d63f1d7f6ac36b76b61ce4"><code>bae64d8</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://redirect.github.com/pytest-dev/pytest-mock/issues/502">#502</a>)</li> <li><a href="https://github.com/pytest-dev/pytest-mock/commit/824f334cc4b39eb05c0093fc43411ada3fdc8300"><code>824f334</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://redirect.github.com/pytest-dev/pytest-mock/issues/501">#501</a>)</li> <li><a href="https://github.com/pytest-dev/pytest-mock/commit/db1add63034430d66835c78992c0ed9b1e331cfd"><code>db1add6</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://redirect.github.com/pytest-dev/pytest-mock/issues/500">#500</a>)</li> <li><a href="https://github.com/pytest-dev/pytest-mock/commit/48ac8746b6587457becf31d1272947de6d65e0d0"><code>48ac874</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://redirect.github.com/pytest-dev/pytest-mock/issues/499">#499</a>)</li> <li><a href="https://github.com/pytest-dev/pytest-mock/commit/fe7ad9aab6a8e15e5762d5bdc85402249f2ca7ef"><code>fe7ad9a</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://redirect.github.com/pytest-dev/pytest-mock/issues/498">#498</a>)</li> <li><a href="https://github.com/pytest-dev/pytest-mock/commit/7857e608242aeb3d4b771296ee41d258b1a13838"><code>7857e60</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://redirect.github.com/pytest-dev/pytest-mock/issues/497">#497</a>)</li> <li><a href="https://github.com/pytest-dev/pytest-mock/commit/a8b97ea2ca86e9cfa553e395cf20352a881d8eaf"><code>a8b97ea</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://redirect.github.com/pytest-dev/pytest-mock/issues/496">#496</a>)</li> <li>Additional commits viewable in <a href="https://github.com/pytest-dev/pytest-mock/compare/v3.14.0...v3.14.1">compare view</a></li> </ul> </details> <br /> Updates `pytest-xdist` from 3.6.1 to 3.7.0 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pytest-dev/pytest-xdist/blob/master/CHANGELOG.rst">pytest-xdist's changelog</a>.</em></p> <blockquote> <h1>pytest-xdist 3.7.0 (2025-05-26)</h1> <h2>Features</h2> <ul> <li> <p><code>[#1142](pytest-dev/pytest-xdist#1142) &lt;https://github.com/pytest-dev/pytest-xdist/issues/1142&gt;</code>_: Added support for Python 3.13.</p> </li> <li> <p><code>[#1144](pytest-dev/pytest-xdist#1144) &lt;https://github.com/pytest-dev/pytest-xdist/issues/1144&gt;</code>_: The internal <code>steal</code> command is now atomic - it unschedules either all requested tests or none.</p> <p>This is a prerequisite for group/scope support in the <code>worksteal</code> scheduler, so test groups won't be broken up incorrectly.</p> </li> <li> <p><code>[#1170](pytest-dev/pytest-xdist#1170) &lt;https://github.com/pytest-dev/pytest-xdist/issues/1170&gt;</code>_: Add the <code>--px</code> arg to create proxy gateways.</p> <p>Proxy gateways are passed to additional gateways using the <code>via</code> keyword. They can serve as a way to run multiple workers on remote machines.</p> </li> <li> <p><code>[#1200](pytest-dev/pytest-xdist#1200) &lt;https://github.com/pytest-dev/pytest-xdist/issues/1200&gt;</code>_: Now multiple <code>xdist_group</code> markers are considered when assigning tests to groups (order does not matter).</p> <p>Previously, only the last marker would assign a test to a group, but now if a test has multiple <code>xdist_group</code> marks applied (for example via parametrization or via fixtures), they are merged to make a new group.</p> </li> </ul> <h2>Removals</h2> <ul> <li><code>[#1162](pytest-dev/pytest-xdist#1162) &lt;https://github.com/pytest-dev/pytest-xdist/issues/1162&gt;</code>_: Dropped support for EOL Python 3.8.</li> </ul> <h2>Trivial Changes</h2> <ul> <li> <p><code>[#1092](pytest-dev/pytest-xdist#1092) &lt;https://github.com/pytest-dev/pytest-xdist/issues/1092&gt;</code>_: Update an error message to better indicate where users should go for more information.</p> </li> <li> <p><code>[#1190](pytest-dev/pytest-xdist#1190) &lt;https://github.com/pytest-dev/pytest-xdist/issues/1190&gt;</code>_: Switched to using a SPDX license identifier introduced in PEP 639.</p> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pytest-dev/pytest-xdist/commit/b561916eaf6ec0a8a448ed0bcc90a351ab3c58e3"><code>b561916</code></a> Release 3.7.0</li> <li><a href="https://github.com/pytest-dev/pytest-xdist/commit/71bd3ede1982a65cf74cf248c0ba906fe6062ce7"><code>71bd3ed</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://redirect.github.com/pytest-dev/pytest-xdist/issues/1204">#1204</a>)</li> <li><a href="https://github.com/pytest-dev/pytest-xdist/commit/65de0ab30e602a5f466b8746fcfff0cf0945b600"><code>65de0ab</code></a> Join multiple xdist_group markers (<a href="https://redirect.github.com/pytest-dev/pytest-xdist/issues/1201">#1201</a>)</li> <li><a href="https://github.com/pytest-dev/pytest-xdist/commit/199f949716792db8745a69444091f4d4fddae0e2"><code>199f949</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://redirect.github.com/pytest-dev/pytest-xdist/issues/1202">#1202</a>)</li> <li><a href="https://github.com/pytest-dev/pytest-xdist/commit/b0215da1edf369d5b63b7811b41d750bb5ebb072"><code>b0215da</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://redirect.github.com/pytest-dev/pytest-xdist/issues/1199">#1199</a>)</li> <li><a href="https://github.com/pytest-dev/pytest-xdist/commit/18e47853ed9272a87b9e6d29b1630f854d458d4a"><code>18e4785</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://redirect.github.com/pytest-dev/pytest-xdist/issues/1198">#1198</a>)</li> <li><a href="https://github.com/pytest-dev/pytest-xdist/commit/731c05d86ad3a42e0b2e3d3b4c8cdd5e33e81988"><code>731c05d</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://redirect.github.com/pytest-dev/pytest-xdist/issues/1197">#1197</a>)</li> <li><a href="https://github.com/pytest-dev/pytest-xdist/commit/16c5be32031f904a5f48c2cdbf3424f6528af3b0"><code>16c5be3</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://redirect.github.com/pytest-dev/pytest-xdist/issues/1195">#1195</a>)</li> <li><a href="https://github.com/pytest-dev/pytest-xdist/commit/e03757a1d77805776babf6faa73b696ea36c001c"><code>e03757a</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://redirect.github.com/pytest-dev/pytest-xdist/issues/1193">#1193</a>)</li> <li><a href="https://github.com/pytest-dev/pytest-xdist/commit/f1d81a4402e611dca7ae5bf4b892decfef9d4f08"><code>f1d81a4</code></a> Merge pull request <a href="https://redirect.github.com/pytest-dev/pytest-xdist/issues/1192">#1192</a> from adamchainz/document_disabling</li> <li>Additional commits viewable in <a href="https://github.com/pytest-dev/pytest-xdist/compare/v3.6.1...v3.7.0">compare view</a></li> </ul> </details> <br /> Updates `ruff` from 0.11.11 to 0.11.12 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/astral-sh/ruff/releases">ruff's releases</a>.</em></p> <blockquote> <h2>0.11.12</h2> <h2>Release Notes</h2> <h3>Preview features</h3> <ul> <li>[<code>airflow</code>] Revise fix titles (<code>AIR3</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/18215">#18215</a>)</li> <li>[<code>pylint</code>] Implement <code>missing-maxsplit-arg</code> (<code>PLC0207</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/17454">#17454</a>)</li> <li>[<code>pyupgrade</code>] New rule <code>UP050</code> (<code>useless-class-metaclass-type</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/18334">#18334</a>)</li> <li>[<code>flake8-use-pathlib</code>] Replace <code>os.symlink</code> with <code>Path.symlink_to</code> (<code>PTH211</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/18337">#18337</a>)</li> </ul> <h3>Bug fixes</h3> <ul> <li>[<code>flake8-bugbear</code>] Ignore <code>__debug__</code> attribute in <code>B010</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/18357">#18357</a>)</li> <li>[<code>flake8-async</code>] Fix <code>anyio.sleep</code> argument name (<code>ASYNC115</code>, <code>ASYNC116</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/18262">#18262</a>)</li> <li>[<code>refurb</code>] Fix <code>FURB129</code> autofix generating invalid syntax (<a href="https://redirect.github.com/astral-sh/ruff/pull/18235">#18235</a>)</li> </ul> <h3>Rule changes</h3> <ul> <li>[<code>flake8-implicit-str-concat</code>] Add autofix for <code>ISC003</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/18256">#18256</a>)</li> <li>[<code>pycodestyle</code>] Improve the diagnostic message for <code>E712</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/18328">#18328</a>)</li> <li>[<code>flake8-2020</code>] Fix diagnostic message for <code>!=</code> comparisons (<code>YTT201</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/18293">#18293</a>)</li> <li>[<code>pyupgrade</code>] Make fix unsafe if it deletes comments (<code>UP010</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/18291">#18291</a>)</li> </ul> <h3>Documentation</h3> <ul> <li>Simplify rules table to improve readability (<a href="https://redirect.github.com/astral-sh/ruff/pull/18297">#18297</a>)</li> <li>Update editor integrations link in README (<a href="https://redirect.github.com/astral-sh/ruff/pull/17977">#17977</a>)</li> <li>[<code>flake8-bugbear</code>] Add fix safety section (<code>B006</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/17652">#17652</a>)</li> </ul> <h2>Contributors</h2> <ul> <li><a href="https://github.com/AlexWaygood"><code>@​AlexWaygood</code></a></li> <li><a href="https://github.com/CodeMan62"><code>@​CodeMan62</code></a></li> <li><a href="https://github.com/InSyncWithFoo"><code>@​InSyncWithFoo</code></a></li> <li><a href="https://github.com/Kalmaegi"><code>@​Kalmaegi</code></a></li> <li><a href="https://github.com/LaBatata101"><code>@​LaBatata101</code></a></li> <li><a href="https://github.com/Lee-W"><code>@​Lee-W</code></a></li> <li><a href="https://github.com/MaddyGuthridge"><code>@​MaddyGuthridge</code></a></li> <li><a href="https://github.com/MatthewMckee4"><code>@​MatthewMckee4</code></a></li> <li><a href="https://github.com/MichaReiser"><code>@​MichaReiser</code></a></li> <li><a href="https://github.com/Vasanth-96"><code>@​Vasanth-96</code></a></li> <li><a href="https://github.com/carljm"><code>@​carljm</code></a></li> <li><a href="https://github.com/charliermarsh"><code>@​charliermarsh</code></a></li> <li><a href="https://github.com/chirizxc"><code>@​chirizxc</code></a></li> <li><a href="https://github.com/dcreager"><code>@​dcreager</code></a></li> <li><a href="https://github.com/dhruvmanila"><code>@​dhruvmanila</code></a></li> <li><a href="https://github.com/dsherret"><code>@​dsherret</code></a></li> <li><a href="https://github.com/dylwil3"><code>@​dylwil3</code></a></li> <li><a href="https://github.com/felixscherz"><code>@​felixscherz</code></a></li> <li><a href="https://github.com/fennr"><code>@​fennr</code></a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md">ruff's changelog</a>.</em></p> <blockquote> <h2>0.11.12</h2> <h3>Preview features</h3> <ul> <li>[<code>airflow</code>] Revise fix titles (<code>AIR3</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/18215">#18215</a>)</li> <li>[<code>pylint</code>] Implement <code>missing-maxsplit-arg</code> (<code>PLC0207</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/17454">#17454</a>)</li> <li>[<code>pyupgrade</code>] New rule <code>UP050</code> (<code>useless-class-metaclass-type</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/18334">#18334</a>)</li> <li>[<code>flake8-use-pathlib</code>] Replace <code>os.symlink</code> with <code>Path.symlink_to</code> (<code>PTH211</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/18337">#18337</a>)</li> </ul> <h3>Bug fixes</h3> <ul> <li>[<code>flake8-bugbear</code>] Ignore <code>__debug__</code> attribute in <code>B010</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/18357">#18357</a>)</li> <li>[<code>flake8-async</code>] Fix <code>anyio.sleep</code> argument name (<code>ASYNC115</code>, <code>ASYNC116</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/18262">#18262</a>)</li> <li>[<code>refurb</code>] Fix <code>FURB129</code> autofix generating invalid syntax (<a href="https://redirect.github.com/astral-sh/ruff/pull/18235">#18235</a>)</li> </ul> <h3>Rule changes</h3> <ul> <li>[<code>flake8-implicit-str-concat</code>] Add autofix for <code>ISC003</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/18256">#18256</a>)</li> <li>[<code>pycodestyle</code>] Improve the diagnostic message for <code>E712</code> (<a href="https://redirect.github.com/astral-sh/ruff/pull/18328">#18328</a>)</li> <li>[<code>flake8-2020</code>] Fix diagnostic message for <code>!=</code> comparisons (<code>YTT201</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/18293">#18293</a>)</li> <li>[<code>pyupgrade</code>] Make fix unsafe if it deletes comments (<code>UP010</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/18291">#18291</a>)</li> </ul> <h3>Documentation</h3> <ul> <li>Simplify rules table to improve readability (<a href="https://redirect.github.com/astral-sh/ruff/pull/18297">#18297</a>)</li> <li>Update editor integrations link in README (<a href="https://redirect.github.com/astral-sh/ruff/pull/17977">#17977</a>)</li> <li>[<code>flake8-bugbear</code>] Add fix safety section (<code>B006</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/17652">#17652</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/astral-sh/ruff/commit/aee3af0f7a018e9fcf921b746ad8ef76d3b84b83"><code>aee3af0</code></a> Bump 0.11.12 (<a href="https://redirect.github.com/astral-sh/ruff/issues/18369">#18369</a>)</li> <li><a href="https://github.com/astral-sh/ruff/commit/04dc48e17c2518f97436d76284a509499087d81c"><code>04dc48e</code></a> [<code>refurb</code>] Fix <code>FURB129</code> autofix generating invalid syntax (<a href="https://redirect.github.com/astral-sh/ruff/issues/18235">#18235</a>)</li> <li><a href="https://github.com/astral-sh/ruff/commit/27743efa1bbcb8952faf1b85c2f439694c24ce1f"><code>27743ef</code></a> [<code>pylint</code>] Implement <code>missing-maxsplit-arg</code> (<code>PLC0207</code>) (<a href="https://redirect.github.com/astral-sh/ruff/issues/17454">#17454</a>)</li> <li><a href="https://github.com/astral-sh/ruff/commit/c60b4d7f309918ac4e98b805fcac5a26e6925899"><code>c60b4d7</code></a> [ty] Add subtyping between Callable types and class literals with <code>__init__</code> ...</li> <li><a href="https://github.com/astral-sh/ruff/commit/16621fa19df6986c80a8d2d0c7e6d97740380d2c"><code>16621fa</code></a> [<code>flake8-bugbear </code>] Add fix safety section (<code>B006</code>) (<a href="https://redirect.github.com/astral-sh/ruff/issues/17652">#17652</a>)</li> <li><a href="https://github.com/astral-sh/ruff/commit/e23d4ea027ecbc05213d049ac6dfcf726f4ab167"><code>e23d4ea</code></a> [<code>flake8-bugbear</code>] Ignore <code>__debug__</code> attribute in <code>B010</code> (<a href="https://redirect.github.com/astral-sh/ruff/issues/18357">#18357</a>)</li> <li><a href="https://github.com/astral-sh/ruff/commit/452f992fbc4f48866c40c4b312806b8876958fa0"><code>452f992</code></a> [ty] Simplify signature types, use them in <code>CallableType</code> (<a href="https://redirect.github.com/astral-sh/ruff/issues/18344">#18344</a>)</li> <li><a href="https://github.com/astral-sh/ruff/commit/a5ebb3f3a2b347849d0c195884ea944fb690b187"><code>a5ebb3f</code></a> [ty] Support ephemeral uv virtual environments (<a href="https://redirect.github.com/astral-sh/ruff/issues/18335">#18335</a>)</li> <li><a href="https://github.com/astral-sh/ruff/commit/9925910a29643ff1f29eafeadc2b1d26812e4993"><code>9925910</code></a> Add a <code>ViolationMetadata::rule</code> method (<a href="https://redirect.github.com/astral-sh/ruff/issues/18234">#18234</a>)</li> <li><a href="https://github.com/astral-sh/ruff/commit/a3ee6bb3b5f4f375e606d3bc12094549bb46a98b"><code>a3ee6bb</code></a> Return <code>DiagnosticGuard</code> from <code>Checker::report_diagnostic</code> (<a href="https://redirect.github.com/astral-sh/ruff/issues/18232">#18232</a>)</li> <li>Additional commits viewable in <a href="https://github.com/astral-sh/ruff/compare/0.11.11...0.11.12">compare view</a></li> </ul> </details> <br /> Updates `types-jsonschema` from 4.23.0.20250516 to 4.24.0.20250528 <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 `jsonschema` from 4.23.0 to 4.24.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/python-jsonschema/jsonschema/releases">jsonschema's releases</a>.</em></p> <blockquote> <h2>v4.24.0</h2> <!-- raw HTML omitted --> <h2>What's Changed</h2> <ul> <li>Fix calculation of evaluated properties by <a href="https://github.com/V02460"><code>@​V02460</code></a> in <a href="https://redirect.github.com/python-jsonschema/jsonschema/pull/1351">python-jsonschema/jsonschema#1351</a></li> <li>Support for Python 3.8 has been dropped, as it is end-of-life.</li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/bkueng"><code>@​bkueng</code></a> made their first contribution in <a href="https://redirect.github.com/python-jsonschema/jsonschema/pull/1326">python-jsonschema/jsonschema#1326</a></li> <li><a href="https://github.com/V02460"><code>@​V02460</code></a> made their first contribution in <a href="https://redirect.github.com/python-jsonschema/jsonschema/pull/1351">python-jsonschema/jsonschema#1351</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/python-jsonschema/jsonschema/compare/v4.23.0...v4.24.0">https://github.com/python-jsonschema/jsonschema/compare/v4.23.0...v4.24.0</a></p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/python-jsonschema/jsonschema/blob/main/CHANGELOG.rst">jsonschema's changelog</a>.</em></p> <blockquote> <h1>v4.24.0</h1> <ul> <li>Fix improper handling of <code>unevaluatedProperties</code> in the presence of <code>additionalProperties</code> (<a href="https://redirect.github.com/python-jsonschema/jsonschema/issues/1351">#1351</a>).</li> <li>Support for Python 3.8 has been dropped, as it is end-of-life.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/python-jsonschema/jsonschema/commit/3e23ee5e695f84565f4175fb972073d787e1ab24"><code>3e23ee5</code></a> Add the bugfix to the changelog.</li> <li><a href="https://github.com/python-jsonschema/jsonschema/commit/8917e85c6549b2b2a0dfcae48fd512aaaebae836"><code>8917e85</code></a> Stop running CIFuzz.</li> <li><a href="https://github.com/python-jsonschema/jsonschema/commit/737e5ed536db806d97879ef3681f695ddc75a32d"><code>737e5ed</code></a> Rely on ruff in pre-commit.</li> <li><a href="https://github.com/python-jsonschema/jsonschema/commit/57e5e034cb0c8662995494ed4a833febf9b581a4"><code>57e5e03</code></a> Test via PyPy 3.11.</li> <li><a href="https://github.com/python-jsonschema/jsonschema/commit/d6c2ad7bbbdea0b2c3e627c304ad4dd325aaa254"><code>d6c2ad7</code></a> Add the zizmor setup here as well.</li> <li><a href="https://github.com/python-jsonschema/jsonschema/commit/af9a8578767ca70380ca2a2f7f6c2311b702d663"><code>af9a857</code></a> Drop a dead pyproject section.</li> <li><a href="https://github.com/python-jsonschema/jsonschema/commit/c64ef846095b9d790749152367c8b12bea69a116"><code>c64ef84</code></a> This is less true than it once was...</li> <li><a href="https://github.com/python-jsonschema/jsonschema/commit/9ff926f4588f0e4a8f5726cb69529c05c7921cc6"><code>9ff926f</code></a> Merge branch 'additional-evaluated'</li> <li><a href="https://github.com/python-jsonschema/jsonschema/commit/8290667beb239282529430b59e2d4ea51777b33e"><code>8290667</code></a> We still need to ditch pip-licenses...</li> <li><a href="https://github.com/python-jsonschema/jsonschema/commit/6d973b543030be9b53a67739d08c6f8b19f45119"><code>6d973b5</code></a> Update pre-commit hooks.</li> <li>Additional commits viewable in <a href="https://github.com/python-jsonschema/jsonschema/compare/v4.23.0...v4.24.0">compare view</a></li> </ul> </details> <br /> Updates `ruamel-yaml` from 0.18.11 to 0.18.12 Updates `zipp` from 3.21.0 to 3.22.0 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/jaraco/zipp/blob/main/NEWS.rst">zipp's changelog</a>.</em></p> <blockquote> <h1>v3.22.0</h1> <h2>Features</h2> <ul> <li>Backported simplified tests from <a href="https://redirect.github.com/python/cpython/issues/123424">python/cpython#123424</a>. (<a href="https://redirect.github.com/jaraco/zipp/issues/142">#142</a>)</li> </ul> <h2>Bugfixes</h2> <ul> <li>Fixed <code>.name</code>, <code>.stem</code>, and other basename-based properties on Windows when working with a zipfile on disk. (<a href="https://redirect.github.com/jaraco/zipp/issues/133">#133</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/jaraco/zipp/commit/30fe7ce5b42187b7fbc25eb7072ee193bbbdf8bb"><code>30fe7ce</code></a> Finalize</li> <li><a href="https://github.com/jaraco/zipp/commit/fe1690b368fbd5cd4097ff8648866ee5e051b44a"><code>fe1690b</code></a> Remove duplicate changelog.</li> <li><a href="https://github.com/jaraco/zipp/commit/91bb1b6e462dd130c90ee13e7e7cc1ac4793a8c5"><code>91bb1b6</code></a> Merge pull request <a href="https://redirect.github.com/jaraco/zipp/issues/140">#140</a> from barneygale/fix-133</li> <li><a href="https://github.com/jaraco/zipp/commit/f49ec3074e947bd89659f765f5ec8564c9f9fe8d"><code>f49ec30</code></a> Add news fragment.</li> <li><a href="https://github.com/jaraco/zipp/commit/309ecd394b10c1b480ddbbf483d5c819853c1e51"><code>309ecd3</code></a> Re-use self.filename</li> <li><a href="https://github.com/jaraco/zipp/commit/60bb91de0eda4f3121f23d5ade7e3830782daa22"><code>60bb91d</code></a> Return in a single expression.</li> <li><a href="https://github.com/jaraco/zipp/commit/6470c39e4b82dbd1d7a69bf43ccb02500a877ad0"><code>6470c39</code></a> Extract a separate test for root characteristics on disk.</li> <li><a href="https://github.com/jaraco/zipp/commit/3503c8b2e47f28eb49aad9ddb4f5c002146404ad"><code>3503c8b</code></a> Use Windows path rules to parse <code>ZipFile.filename</code> on Windows</li> <li><a href="https://github.com/jaraco/zipp/commit/a706776b10b086d19a63b49a88989b3b69df5d33"><code>a706776</code></a> Tweak PyPy stacklevel adjustment.</li> <li><a href="https://github.com/jaraco/zipp/commit/73cdd55631a6afe6a67ca6e611753283a1d13474"><code>73cdd55</code></a> Merge pull request <a href="https://redirect.github.com/jaraco/zipp/issues/142">#142</a> from <a href="https://redirect.github.com/jaraco/backport-/issues/123429">jaraco/backport-gh-123429</a></li> <li>Additional commits viewable in <a href="https://github.com/jaraco/zipp/compare/v3.21.0...v3.22.0">compare view</a></li> </ul> </details> <br /> Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions </details> --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Abhinav Anand <[email protected]>
1 parent 62001e6 commit bfb1822

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.config/constraints.txt

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ iniconfig==2.1.0 # via pytest
4646
isort==6.0.1 # via pylint
4747
jinja2==3.1.6 # via ansible-core, mkdocs, mkdocs-macros-plugin, mkdocs-material, mkdocstrings, molecule (pyproject.toml)
4848
jsmin==3.0.1 # via mkdocs-minify-plugin
49-
jsonschema==4.23.0 # via ansible-compat, ansible-lint, molecule (pyproject.toml)
49+
jsonschema==4.24.0 # via ansible-compat, ansible-lint, molecule (pyproject.toml)
5050
jsonschema-specifications==2025.4.1 # via jsonschema
5151
linkchecker==10.5.0 # via mkdocs-ansible, molecule (pyproject.toml)
5252
markdown==3.8 # via markdown-include, mkdocs, mkdocs-autorefs, mkdocs-htmlproofer-plugin, mkdocs-material, mkdocstrings, pymdown-extensions
@@ -69,12 +69,12 @@ mkdocs-material-extensions==1.3.1 # via mkdocs-ansible, mkdocs-material
6969
mkdocs-minify-plugin==0.8.0 # via mkdocs-ansible
7070
mkdocstrings==0.29.1 # via mkdocs-ansible, mkdocstrings-python
7171
mkdocstrings-python==1.16.11 # via mkdocs-ansible
72-
mypy==1.15.0 # via molecule (pyproject.toml)
72+
mypy==1.16.0 # via molecule (pyproject.toml)
7373
mypy-extensions==1.1.0 # via black, mypy
7474
nodeenv==1.9.1 # via pre-commit
7575
packaging==25.0 # via ansible-compat, ansible-core, ansible-lint, black, mkdocs, mkdocs-macros-plugin, pyproject-api, pytest, tox, molecule (pyproject.toml)
7676
paginate==0.5.7 # via mkdocs-material
77-
pathspec==0.12.1 # via ansible-lint, black, mkdocs, mkdocs-macros-plugin, yamllint
77+
pathspec==0.12.1 # via ansible-lint, black, mkdocs, mkdocs-macros-plugin, mypy, yamllint
7878
pexpect==4.9.0 # via molecule (pyproject.toml)
7979
pillow==11.2.1 # via cairosvg, mkdocs-ansible
8080
platformdirs==4.3.8 # via black, mkdocs-get-deps, pylint, tox, virtualenv
@@ -89,19 +89,19 @@ pymdown-extensions==10.15 # via markdown-exec, mkdocs-ansible, mkdocs-material,
8989
pyproject-api==1.9.1 # via tox
9090
pytest==8.3.5 # via pytest-instafail, pytest-mock, pytest-plus, pytest-testinfra, pytest-xdist, molecule (pyproject.toml)
9191
pytest-instafail==0.5.0 # via molecule (pyproject.toml)
92-
pytest-mock==3.14.0 # via molecule (pyproject.toml)
92+
pytest-mock==3.14.1 # via molecule (pyproject.toml)
9393
pytest-plus==0.8.1 # via molecule (pyproject.toml)
9494
pytest-testinfra==10.2.2 # via molecule (pyproject.toml)
95-
pytest-xdist==3.6.1 # via molecule (pyproject.toml)
95+
pytest-xdist==3.7.0 # via molecule (pyproject.toml)
9696
python-dateutil==2.9.0.post0 # via ghp-import, mkdocs-macros-plugin
9797
pyyaml==6.0.2 # via ansible-compat, ansible-core, ansible-lint, mkdocs, mkdocs-get-deps, mkdocs-macros-plugin, pre-commit, pymdown-extensions, pyyaml-env-tag, yamllint, molecule (pyproject.toml)
9898
pyyaml-env-tag==1.1 # via mkdocs
9999
referencing==0.36.2 # via ansible-lint, jsonschema, jsonschema-specifications, types-jsonschema
100100
requests==2.32.3 # via docker, linkchecker, mkdocs-htmlproofer-plugin, mkdocs-material, molecule (pyproject.toml)
101101
rich==14.0.0 # via enrich, molecule (pyproject.toml)
102102
rpds-py==0.25.1 # via jsonschema, referencing
103-
ruamel-yaml==0.18.11 # via ansible-lint
104-
ruff==0.11.11 # via molecule (pyproject.toml)
103+
ruamel-yaml==0.18.12 # via ansible-lint
104+
ruff==0.11.12 # via molecule (pyproject.toml)
105105
six==1.17.0 # via python-dateutil
106106
soupsieve==2.7 # via beautifulsoup4
107107
subprocess-tee==0.4.2 # via ansible-compat, ansible-lint
@@ -112,7 +112,7 @@ toml-sort==0.24.2 # via molecule (pyproject.toml)
112112
tomli==2.2.1 # via black, coverage, mypy, pydoclint, pylint, pyproject-api, pytest, tox
113113
tomlkit==0.13.2 # via pylint, toml-sort
114114
tox==4.26.0 # via molecule (pyproject.toml)
115-
types-jsonschema==4.23.0.20250516 # via molecule (pyproject.toml)
115+
types-jsonschema==4.24.0.20250528 # via molecule (pyproject.toml)
116116
types-pexpect==4.9.0.20250516 # via molecule (pyproject.toml)
117117
types-pyyaml==6.0.12.20250516 # via molecule (pyproject.toml)
118118
urllib3==2.4.0 # via docker, requests
@@ -121,7 +121,7 @@ watchdog==6.0.0 # via mkdocs
121121
wcmatch==10.0 # via ansible-lint, molecule (pyproject.toml)
122122
webencodings==0.5.1 # via cssselect2, tinycss2
123123
yamllint==1.37.1 # via ansible-lint
124-
zipp==3.21.0 # via importlib-metadata
124+
zipp==3.22.0 # via importlib-metadata
125125

126126
# The following packages were excluded from the output:
127127
# ansible-core

0 commit comments

Comments
 (0)