Skip to content

Commit 8300c42

Browse files
authored
Bump the minor group with 4 updates (#126)
Bumps the minor group with 4 updates: [flake8](https://github.com/pycqa/flake8), [mypy](https://github.com/python/mypy), [uv](https://github.com/astral-sh/uv) and [setuptools-scm[toml]](https://github.com/pypa/setuptools-scm). Updates `flake8` from 7.1.1 to 7.2.0 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/PyCQA/flake8/commit/16f5f28a384f0781bebb37a08aa45e65b9526c50"><code>16f5f28</code></a> Release 7.2.0</li> <li><a href="https://github.com/PyCQA/flake8/commit/ebad305769bbf62d92901a1b9c9121c1b4fec00b"><code>ebad305</code></a> Merge pull request <a href="https://redirect.github.com/pycqa/flake8/issues/1974">#1974</a> from PyCQA/update-plugins</li> <li><a href="https://github.com/PyCQA/flake8/commit/d56d569ce40a623a17c212ea7f2b306714f27f31"><code>d56d569</code></a> update versions of pycodestyle / pyflakes</li> <li><a href="https://github.com/PyCQA/flake8/commit/a7e8f6250c23e71546ca4cc35322bc06fe90f9f4"><code>a7e8f62</code></a> Merge pull request <a href="https://redirect.github.com/pycqa/flake8/issues/1973">#1973</a> from PyCQA/py39-plus</li> <li><a href="https://github.com/PyCQA/flake8/commit/9d55ccdb729d1255b9cf09438b6073b05b9ce52c"><code>9d55ccd</code></a> py39+</li> <li><a href="https://github.com/PyCQA/flake8/commit/e492aeb385f87c0520c65d32747763209ed1da21"><code>e492aeb</code></a> Merge pull request <a href="https://redirect.github.com/pycqa/flake8/issues/1967">#1967</a> from PyCQA/unnecessary-mocks</li> <li><a href="https://github.com/PyCQA/flake8/commit/fa2ed7145cdf80fd983c2a436226a074f9a9d664"><code>fa2ed71</code></a> remove a few unnecessary mocks in test_checker_manager</li> <li><a href="https://github.com/PyCQA/flake8/commit/fffee8ba9dc5903484f99390e6c7f4bbef59bda7"><code>fffee8b</code></a> Release 7.1.2</li> <li><a href="https://github.com/PyCQA/flake8/commit/19001f77f3a8edccfd2d4c71e3c0fd7ed7fcb329"><code>19001f7</code></a> Merge pull request <a href="https://redirect.github.com/pycqa/flake8/issues/1966">#1966</a> from PyCQA/limit-procs-to-file-count</li> <li><a href="https://github.com/PyCQA/flake8/commit/f35737a32d8283fd0d3456bd9919718ff2d1b077"><code>f35737a</code></a> avoid starting unnecessary processes when file count is limited</li> <li>See full diff in <a href="https://github.com/pycqa/flake8/compare/7.1.1...7.2.0">compare view</a></li> </ul> </details> <br /> Updates `mypy` from 1.14.1 to 1.15.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> <h3>Different Property Getter and Setter Types</h3> <p>Mypy now supports using different types for property getter and setter.</p> <pre lang="python"><code>class A: value: int <pre><code>@Property def f(self) -&amp;gt; int: return self.value @f.setter def f(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 'f'&amp;quot;) </code></pre> <p></code></pre></p> <p>Contributed by Ivan Levkivskyi (PR <a href="https://redirect.github.com/python/mypy/pull/18510">18510</a>)</p> <h3>Selectively Disable Deprecated Warnings</h3> <p>It's now possible to selectively disable warnings generated from <a href="https://docs.python.org/3/library/warnings.html#warnings.deprecated"><code>warnings.deprecated</code></a> using the <a href="https://mypy.readthedocs.io/en/stable/command_line.html#cmdoption-mypy-deprecated-calls-exclude"><code>--deprecated-calls-exclude</code></a> option.</p> <pre lang="python"><code># mypy --enable-error-code deprecated # --deprecated-calls-exclude=foo.A import foo <p>foo.A().func() # OK, the deprecated warning is ignored</p> <h1>file foo.py</h1> <p>from typing_extensions import deprecated<br /> class A:<br /> <a href="https://github.com/deprecated"><code>@​deprecated</code></a>(&quot;Use A.func2 instead&quot;)<br /> def func(self): pass<br /> </code></pre></p> <p>Contributed by Marc Mueller (PR <a href="https://redirect.github.com/python/mypy/pull/18641">18641</a>)</p> <h2>Mypy 1.15</h2> <p>We’ve just uploaded mypy 1.15 to the Python Package Index (<a href="https://pypi.org/project/mypy/">PyPI</a>).</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/python/mypy/commit/9397454fb5aead107461b089e7cf190bf538d20a"><code>9397454</code></a> remove +dev from version ahead of final release</li> <li><a href="https://github.com/python/mypy/commit/686b591a69db216f714ad50698db785f4ac63eb0"><code>686b591</code></a> remove &quot;unreleased&quot; from 1.15 changelog entry</li> <li><a href="https://github.com/python/mypy/commit/cb4b243a5d9e03173e3e7275e5b92b98afaefb60"><code>cb4b243</code></a> Various small updates to 1.15 changelog (<a href="https://redirect.github.com/python/mypy/issues/18599">#18599</a>)</li> <li><a href="https://github.com/python/mypy/commit/1a265024f901399c701a772e8c1f9e6e110f45e6"><code>1a26502</code></a> Prepare changelog for 1.15 release (<a href="https://redirect.github.com/python/mypy/issues/18583">#18583</a>)</li> <li><a href="https://github.com/python/mypy/commit/d4515e4ad3eee6318744c64cf2eab0ea0b5b7562"><code>d4515e4</code></a> Fix a few PR links in the changelog (<a href="https://redirect.github.com/python/mypy/issues/18586">#18586</a>)</li> <li><a href="https://github.com/python/mypy/commit/f83b6435b0c07a327f6b567dfb5e79ffa36708a2"><code>f83b643</code></a> Add object self-type to tuple test fixture (<a href="https://redirect.github.com/python/mypy/issues/18592">#18592</a>)</li> <li><a href="https://github.com/python/mypy/commit/ebc2cb8befbadfc10b962af018b3fa3842d3fd87"><code>ebc2cb8</code></a> Prevent crash on generic NamedTuple with unresolved typevar bound (<a href="https://redirect.github.com/python/mypy/issues/18585">#18585</a>)</li> <li><a href="https://github.com/python/mypy/commit/63c251e249e52256629dbe8b8334937a092f792d"><code>63c251e</code></a> empty commit to trigger wheel rebuild</li> <li><a href="https://github.com/python/mypy/commit/c30573e7b95eef9d057ff42ebfd326438dac3c42"><code>c30573e</code></a> Fix literal context for ternary expressions (for real) (<a href="https://redirect.github.com/python/mypy/issues/18545">#18545</a>)</li> <li><a href="https://github.com/python/mypy/commit/23d862dd6fbb905a69bcb31e88746dc7a1eb4a43"><code>23d862d</code></a> Fix isinstance with explicit (non generic) type alias (<a href="https://redirect.github.com/python/mypy/issues/18512">#18512</a>)</li> <li>Additional commits viewable in <a href="https://github.com/python/mypy/compare/v1.14.1...v1.15.0">compare view</a></li> </ul> </details> <br /> Updates `uv` from 0.5.26 to 0.6.11 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/astral-sh/uv/releases">uv's releases</a>.</em></p> <blockquote> <h2>0.6.11</h2> <h2>Release Notes</h2> <h3>Enhancements</h3> <ul> <li>Add dependents (&quot;via ...&quot; comments) in <code>uv export</code> command (<a href="https://redirect.github.com/astral-sh/uv/pull/12350">#12350</a>)</li> <li>Bump least-recent non-EOL macOS version to 13.0 (<a href="https://redirect.github.com/astral-sh/uv/pull/12518">#12518</a>)</li> <li>Support <code>--find-links</code>-style &quot;flat&quot; indexes in <code>[[tool.uv.index]]</code> (<a href="https://redirect.github.com/astral-sh/uv/pull/12407">#12407</a>)</li> <li>Distinguish between <code>-q</code> and <code>-qq</code> (<a href="https://redirect.github.com/astral-sh/uv/pull/12300">#12300</a>)</li> </ul> <h3>Configuration</h3> <ul> <li>Support <code>UV_PROJECT</code> environment to set project directory. (<a href="https://redirect.github.com/astral-sh/uv/pull/12327">#12327</a>)</li> </ul> <h3>Performance</h3> <ul> <li>Use a boxed slice for various requirement types (<a href="https://redirect.github.com/astral-sh/uv/pull/12514">#12514</a>)</li> </ul> <h3>Bug fixes</h3> <ul> <li>Add a newline after metadata when initializing scripts with other metadata blocks (<a href="https://redirect.github.com/astral-sh/uv/pull/12501">#12501</a>)</li> <li>Avoid writing empty <code>requires-python</code> to script blocks (<a href="https://redirect.github.com/astral-sh/uv/pull/12517">#12517</a>)</li> <li>Respect build constraints in <code>uv sync</code> (<a href="https://redirect.github.com/astral-sh/uv/pull/12502">#12502</a>)</li> <li>Respect transitive dependencies in <code>uv tree --only-group</code> (<a href="https://redirect.github.com/astral-sh/uv/pull/12560">#12560</a>)</li> </ul> <h1>uv 0.6.11</h1> <h2>Install uv 0.6.11</h2> <h3>Install prebuilt binaries via shell script</h3> <pre lang="sh"><code>curl --proto '=https' --tlsv1.2 -LsSf https://github.com/astral-sh/uv/releases/download/0.6.11/uv-installer.sh | sh </code></pre> <h3>Install prebuilt binaries via powershell script</h3> <pre lang="sh"><code>powershell -ExecutionPolicy Bypass -c &quot;irm https://github.com/astral-sh/uv/releases/download/0.6.11/uv-installer.ps1 | iex&quot; </code></pre> <h2>Download uv 0.6.11</h2> <table> <thead> <tr> <th>File</th> <th>Platform</th> <th>Checksum</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/astral-sh/uv/releases/download/0.6.11/uv-aarch64-apple-darwin.tar.gz">uv-aarch64-apple-darwin.tar.gz</a></td> <td>Apple Silicon macOS</td> <td><a href="https://github.com/astral-sh/uv/releases/download/0.6.11/uv-aarch64-apple-darwin.tar.gz.sha256">checksum</a></td> </tr> <tr> <td><a href="https://github.com/astral-sh/uv/releases/download/0.6.11/uv-x86_64-apple-darwin.tar.gz">uv-x86_64-apple-darwin.tar.gz</a></td> <td>Intel macOS</td> <td><a href="https://github.com/astral-sh/uv/releases/download/0.6.11/uv-x86_64-apple-darwin.tar.gz.sha256">checksum</a></td> </tr> <tr> <td><a href="https://github.com/astral-sh/uv/releases/download/0.6.11/uv-aarch64-pc-windows-msvc.zip">uv-aarch64-pc-windows-msvc.zip</a></td> <td>ARM64 Windows</td> <td><a href="https://github.com/astral-sh/uv/releases/download/0.6.11/uv-aarch64-pc-windows-msvc.zip.sha256">checksum</a></td> </tr> <tr> <td><a href="https://github.com/astral-sh/uv/releases/download/0.6.11/uv-i686-pc-windows-msvc.zip">uv-i686-pc-windows-msvc.zip</a></td> <td>x86 Windows</td> <td><a href="https://github.com/astral-sh/uv/releases/download/0.6.11/uv-i686-pc-windows-msvc.zip.sha256">checksum</a></td> </tr> <tr> <td><a href="https://github.com/astral-sh/uv/releases/download/0.6.11/uv-x86_64-pc-windows-msvc.zip">uv-x86_64-pc-windows-msvc.zip</a></td> <td>x64 Windows</td> <td><a href="https://github.com/astral-sh/uv/releases/download/0.6.11/uv-x86_64-pc-windows-msvc.zip.sha256">checksum</a></td> </tr> </tbody> </table> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/astral-sh/uv/blob/main/CHANGELOG.md">uv's changelog</a>.</em></p> <blockquote> <h2>0.6.11</h2> <h3>Enhancements</h3> <ul> <li>Add dependents (&quot;via ...&quot; comments) in <code>uv export</code> command (<a href="https://redirect.github.com/astral-sh/uv/pull/12350">#12350</a>)</li> <li>Bump least-recent non-EOL macOS version to 13.0 (<a href="https://redirect.github.com/astral-sh/uv/pull/12518">#12518</a>)</li> <li>Support <code>--find-links</code>-style &quot;flat&quot; indexes in <code>[[tool.uv.index]]</code> (<a href="https://redirect.github.com/astral-sh/uv/pull/12407">#12407</a>)</li> <li>Distinguish between <code>-q</code> and <code>-qq</code> (<a href="https://redirect.github.com/astral-sh/uv/pull/12300">#12300</a>)</li> </ul> <h3>Configuration</h3> <ul> <li>Support <code>UV_PROJECT</code> environment to set project directory. (<a href="https://redirect.github.com/astral-sh/uv/pull/12327">#12327</a>)</li> </ul> <h3>Performance</h3> <ul> <li>Use a boxed slice for various requirement types (<a href="https://redirect.github.com/astral-sh/uv/pull/12514">#12514</a>)</li> </ul> <h3>Bug fixes</h3> <ul> <li>Add a newline after metadata when initializing scripts with other metadata blocks (<a href="https://redirect.github.com/astral-sh/uv/pull/12501">#12501</a>)</li> <li>Avoid writing empty <code>requires-python</code> to script blocks (<a href="https://redirect.github.com/astral-sh/uv/pull/12517">#12517</a>)</li> <li>Respect build constraints in <code>uv sync</code> (<a href="https://redirect.github.com/astral-sh/uv/pull/12502">#12502</a>)</li> <li>Respect transitive dependencies in <code>uv tree --only-group</code> (<a href="https://redirect.github.com/astral-sh/uv/pull/12560">#12560</a>)</li> </ul> <h2>0.6.10</h2> <h3>Enhancements</h3> <ul> <li>Add <code>uv sync --check</code> flag (<a href="https://redirect.github.com/astral-sh/uv/pull/12342">#12342</a>)</li> <li>Add support for Python version requests in <code>uv python list</code> (<a href="https://redirect.github.com/astral-sh/uv/pull/12375">#12375</a>)</li> <li>Support <code>.env</code> files in <code>uv tool run</code> (<a href="https://redirect.github.com/astral-sh/uv/pull/12386">#12386</a>)</li> <li>Support <code>python find --script</code> (<a href="https://redirect.github.com/astral-sh/uv/pull/11891">#11891</a>)</li> </ul> <h3>Preview features</h3> <ul> <li>Check all compatible torch indexes when <code>--torch-backend</code> is enabled (<a href="https://redirect.github.com/astral-sh/uv/pull/12385">#12385</a>)</li> </ul> <h3>Performance</h3> <ul> <li>Use a boxed slice for extras and groups (<a href="https://redirect.github.com/astral-sh/uv/pull/12391">#12391</a>)</li> <li>Use small string for index name type (<a href="https://redirect.github.com/astral-sh/uv/pull/12355">#12355</a>)</li> </ul> <h3>Bug fixes</h3> <ul> <li>Allow virtual packages with <code>--no-build</code> (<a href="https://redirect.github.com/astral-sh/uv/pull/12314">#12314</a>)</li> <li>Ignore <code>--find-links</code> entries for pinned indexes (<a href="https://redirect.github.com/astral-sh/uv/pull/12396">#12396</a>)</li> <li>Omit wheels from lockfile based on <code>--exclude-newer</code> (<a href="https://redirect.github.com/astral-sh/uv/pull/12299">#12299</a>)</li> <li>Retain end-of-line comment position when adding dependency (<a href="https://redirect.github.com/astral-sh/uv/pull/12360">#12360</a>)</li> <li>Omit fragment when querying for wheels in Simple HTML API (<a href="https://redirect.github.com/astral-sh/uv/pull/12384">#12384</a>)</li> <li>Error on missing argument in <code>requirements.txt</code> (<a href="https://redirect.github.com/astral-sh/uv/pull/12354">#12354</a>)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/astral-sh/uv/commit/0632e24d156abe90749c46a50410b270beebd6a9"><code>0632e24</code></a> Add <code>UV_PROJECT</code> to changelog (<a href="https://redirect.github.com/astral-sh/uv/issues/12563">#12563</a>)</li> <li><a href="https://github.com/astral-sh/uv/commit/fe7fc323dd2471ea313b0e3b331785c11da71d8c"><code>fe7fc32</code></a> Bump version to v0.6.11 (<a href="https://redirect.github.com/astral-sh/uv/issues/12535">#12535</a>)</li> <li><a href="https://github.com/astral-sh/uv/commit/ac2dcd658e7e4d526b069c879325f37afb77d1f2"><code>ac2dcd6</code></a> Support <code>UV_PROJECT</code> environment to set project directory. (<a href="https://redirect.github.com/astral-sh/uv/issues/12327">#12327</a>)</li> <li><a href="https://github.com/astral-sh/uv/commit/56914c9c60b13139ce9a0294eef8da8bdb4ab4f7"><code>56914c9</code></a> Use <code>Entry</code> API in lockfile-to-requirements.txt construction (<a href="https://redirect.github.com/astral-sh/uv/issues/12561">#12561</a>)</li> <li><a href="https://github.com/astral-sh/uv/commit/2a28dacf28ee78f4d09690fd789f56790f1e7f28"><code>2a28dac</code></a> Respect transitive dependencies in <code>uv tree --only-group</code> (<a href="https://redirect.github.com/astral-sh/uv/issues/12560">#12560</a>)</li> <li><a href="https://github.com/astral-sh/uv/commit/4554ebbd53cda0495a4deeb39150ce5a8c36260e"><code>4554ebb</code></a> changed where the fish completions get installed to where fish docs recommend...</li> <li><a href="https://github.com/astral-sh/uv/commit/57c57d10117960ca2cda07e267b056fafbe77c54"><code>57c57d1</code></a> Fix statement in Required environments docs (<a href="https://redirect.github.com/astral-sh/uv/issues/12540">#12540</a>)</li> <li><a href="https://github.com/astral-sh/uv/commit/ab3bab14217d75c06c5d86e2ef1ba65c48091b23"><code>ab3bab1</code></a> Add dependents (&quot;via ...&quot; comments) in export command (<a href="https://redirect.github.com/astral-sh/uv/issues/12350">#12350</a>)</li> <li><a href="https://github.com/astral-sh/uv/commit/2d8c8071cbc5cf8c2913b68dc97b422a2959626e"><code>2d8c807</code></a> Remove dummy file (<a href="https://redirect.github.com/astral-sh/uv/issues/12530">#12530</a>)</li> <li><a href="https://github.com/astral-sh/uv/commit/c6fb1216ff6ca2e50b10ae5fe8fe49b1dbf97fc6"><code>c6fb121</code></a> Avoid writing empty <code>requires-python</code> to script blocks (<a href="https://redirect.github.com/astral-sh/uv/issues/12517">#12517</a>)</li> <li>Additional commits viewable in <a href="https://github.com/astral-sh/uv/compare/0.5.26...0.6.11">compare view</a></li> </ul> </details> <br /> Updates `setuptools-scm[toml]` from 8.1.0 to 8.2.0 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pypa/setuptools-scm/blob/main/CHANGELOG.md">setuptools-scm[toml]'s changelog</a>.</em></p> <blockquote> <h2>v8.2.0</h2> <h3>Added</h3> <ul> <li>fix <a href="https://redirect.github.com/pypa/setuptools-scm/issues/960">#960</a>: add a <code>--force-write-version-files</code> flag for the cli</li> </ul> <h3>Changed</h3> <ul> <li>fix <a href="https://redirect.github.com/pypa/setuptools-scm/issues/950">#950</a>: ensure to pass encodings to io usage</li> <li>fix <a href="https://redirect.github.com/pypa/setuptools-scm/issues/957">#957</a>: add subprocess timeout control env var</li> <li>add sp-repo-review pre-commit hook</li> </ul> <h3>Fixed</h3> <ul> <li>fix <a href="https://redirect.github.com/pypa/setuptools-scm/issues/1018">#1018</a>: allow non-normalized versions for semver</li> <li>fix <a href="https://redirect.github.com/pypa/setuptools-scm/issues/1103">#1103</a>: respect GIT_CEILING_DIRECTORIES when trying to find git toplevels</li> <li>fix <a href="https://redirect.github.com/pypa/setuptools-scm/issues/1081">#1081</a>: add name normalized pipx entrypoint</li> <li>fix <a href="https://redirect.github.com/pypa/setuptools-scm/issues/1080">#1080</a>: clean pdm from PYTHONPATH to protect mercurial</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pypa/setuptools-scm/commit/e554978c2fa77d187061ba2bfa2553b0a2d26a85"><code>e554978</code></a> complete changelog to reasonable accuracy for quick release</li> <li><a href="https://github.com/pypa/setuptools-scm/commit/260dcf09791193ed0f07f2026be0e7cb61ef370b"><code>260dcf0</code></a> chore: scriv collect</li> <li><a href="https://github.com/pypa/setuptools-scm/commit/836eb426d34f2f0eb149de0192da56e841f287b0"><code>836eb42</code></a> Merge pull request <a href="https://redirect.github.com/pypa/setuptools-scm/issues/1096">#1096</a> from DimitriPapadopoulos/ruff_0.9.1</li> <li><a href="https://github.com/pypa/setuptools-scm/commit/98b70785ab99ee32b6863c32d0fc844cd2c3dd95"><code>98b7078</code></a> Merge pull request <a href="https://redirect.github.com/pypa/setuptools-scm/issues/1106">#1106</a> from Ecordonnier/eco/git-ceiling-directories</li> <li><a href="https://github.com/pypa/setuptools-scm/commit/7d4e94c915077a06b6a419533e77ea919b6c45a1"><code>7d4e94c</code></a> Merge pull request <a href="https://redirect.github.com/pypa/setuptools-scm/issues/1104">#1104</a> from jezdez/patch-1</li> <li><a href="https://github.com/pypa/setuptools-scm/commit/0b82e5d134d6ddf118969319e30db9997f0acd75"><code>0b82e5d</code></a> [pre-commit.ci] auto fixes from pre-commit.com hooks</li> <li><a href="https://github.com/pypa/setuptools-scm/commit/979d79301da678d305c12e5c4bdee139705fcc14"><code>979d793</code></a> respect GIT_CEILING_DIRECTORIES</li> <li><a href="https://github.com/pypa/setuptools-scm/commit/68c6b2069576c6cbf2cf2e1b95b4e39656ffee4e"><code>68c6b20</code></a> Add missing code block end.</li> <li><a href="https://github.com/pypa/setuptools-scm/commit/9b6f0319c8f87342224150a482999953132c54bd"><code>9b6f031</code></a> Merge pull request <a href="https://redirect.github.com/pypa/setuptools-scm/issues/1102">#1102</a> from paugier/error-message-env-var</li> <li><a href="https://github.com/pypa/setuptools-scm/commit/2b0722fafa8b11b69a65073e13a00caf6b86a75b"><code>2b0722f</code></a> Mention SETUPTOOLS_SCM_PRETEND_VERSION_FOR in error message</li> <li>Additional commits viewable in <a href="https://github.com/pypa/setuptools-scm/compare/v8.1.0...v8.2.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 729e18e + 51af446 commit 8300c42

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
@@ -4,7 +4,7 @@
44
[build-system]
55
requires = [
66
"setuptools == 75.8.0",
7-
"setuptools_scm[toml] == 8.1.0",
7+
"setuptools_scm[toml] == 8.2.0",
88
"frequenz-repo-config[lib] == 0.13.1",
99
]
1010
build-backend = "setuptools.build_meta"
@@ -50,7 +50,7 @@ email = "[email protected]"
5050

5151
[project.optional-dependencies]
5252
dev-flake8 = [
53-
"flake8 == 7.1.1",
53+
"flake8 == 7.2.0",
5454
"flake8-docstrings == 1.7.0",
5555
"flake8-pyproject == 1.2.3", # For reading the flake8 config from pyproject.toml
5656
"pydoclint == 0.6.0",
@@ -70,15 +70,15 @@ dev-mkdocs = [
7070
"frequenz-repo-config[lib] == 0.13.1",
7171
]
7272
dev-mypy = [
73-
"mypy == 1.14.1",
73+
"mypy == 1.15.0",
7474
# This dependency introduces breaking changes in patch releases
7575
"grpc-stubs == 1.53.0.5",
7676
"types-Markdown == 3.7.0.20241204",
7777
# For checking the noxfile, docs/ script, and tests
7878
"frequenz-dispatch[dev-mkdocs,dev-noxfile,dev-pytest]",
7979
]
8080
dev-noxfile = [
81-
"uv == 0.5.26",
81+
"uv == 0.6.11",
8282
"nox == 2025.2.9",
8383
"frequenz-repo-config[lib] == 0.13.1",
8484
]

0 commit comments

Comments
 (0)