Skip to content

Commit

Permalink
Bump the required group with 10 updates (#43)
Browse files Browse the repository at this point in the history
Bumps the required group with 10 updates:

| Package | From | To |
| --- | --- | --- |
| [pydoclint](https://github.com/jsh9/pydoclint) | `0.5.3` | `0.5.6` |
| [mkdocs-material](https://github.com/squidfunk/mkdocs-material) |
`9.5.27` | `9.5.30` |
| [mkdocstrings[python]](https://github.com/mkdocstrings/mkdocstrings) |
`0.25.1` | `0.25.2` |
|
[frequenz-repo-config[lib]](https://github.com/frequenz-floss/frequenz-repo-config-python)
| `0.9.2` | `0.10.0` |
| [mypy](https://github.com/python/mypy) | `1.10.1` | `1.11.1` |
| [uv](https://github.com/astral-sh/uv) | `0.2.18` | `0.2.32` |
| [pylint](https://github.com/pylint-dev/pylint) | `3.2.5` | `3.2.6` |
| [pytest](https://github.com/pytest-dev/pytest) | `8.2.2` | `8.3.2` |
|
[frequenz-repo-config[extra-lint-examples]](https://github.com/frequenz-floss/frequenz-repo-config-python)
| `0.9.2` | `0.10.0` |
| [pytest-asyncio](https://github.com/pytest-dev/pytest-asyncio) |
`0.23.7` | `0.23.8` |

Updates `pydoclint` from 0.5.3 to 0.5.6
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/jsh9/pydoclint/releases">pydoclint's
releases</a>.</em></p>
<blockquote>
<h2>0.5.6</h2>
<h2>What's Changed</h2>
<ul>
<li>Stop trying to check folder with names ending in <code>.py</code> by
<a href="https://github.com/jsh9"><code>@​jsh9</code></a> in <a
href="https://github.com/jsh9/pydoclint/pull/155">jsh9/pydoclint#155</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/jsh9/pydoclint/compare/0.5.5...0.5.6">https://github.com/jsh9/pydoclint/compare/0.5.5...0.5.6</a></p>
<h2>0.5.5</h2>
<h2>What's Changed</h2>
<ul>
<li>Improve class attr comparison logic by <a
href="https://github.com/jsh9"><code>@​jsh9</code></a> in <a
href="https://github.com/jsh9/pydoclint/pull/154">jsh9/pydoclint#154</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/jsh9/pydoclint/compare/0.5.4...0.5.5">https://github.com/jsh9/pydoclint/compare/0.5.4...0.5.5</a></p>
<h2>0.5.4</h2>
<h2>What's Changed</h2>
<ul>
<li>Add an option for private class attributes by <a
href="https://github.com/jsh9"><code>@​jsh9</code></a> in <a
href="https://github.com/jsh9/pydoclint/pull/149">jsh9/pydoclint#149</a></li>
<li>Add option to treat property methods as class attributes by <a
href="https://github.com/jsh9"><code>@​jsh9</code></a> in <a
href="https://github.com/jsh9/pydoclint/pull/153">jsh9/pydoclint#153</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/jsh9/pydoclint/compare/0.5.3...0.5.4">https://github.com/jsh9/pydoclint/compare/0.5.3...0.5.4</a></p>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/jsh9/pydoclint/blob/main/CHANGELOG.md">pydoclint's
changelog</a>.</em></p>
<blockquote>
<h2>[0.5.6] - 2024-07-17</h2>
<ul>
<li>
<p>Fixed</p>
<ul>
<li>Fixed a bug where <em>pydoclint</em> treats folders whose names end
with <code>.py</code> as
files</li>
</ul>
</li>
<li>
<p>Full diff</p>
<ul>
<li><a
href="https://github.com/jsh9/pydoclint/compare/0.5.5...0.5.6">https://github.com/jsh9/pydoclint/compare/0.5.5...0.5.6</a></li>
</ul>
</li>
</ul>
<h2>[0.5.5] - 2024-07-15</h2>
<ul>
<li>
<p>Fixed</p>
<ul>
<li>Fixed a bug where <code>a = b = c = 1</code> style cannot be
properly parsed
(<a
href="https://github.com/jsh9/pydoclint/issues/151">jsh9/pydoclint#151</a>)</li>
</ul>
</li>
<li>
<p>Changed</p>
<ul>
<li>Changed the default of
<code>--treat-property-methods-as-class-attributes</code> to
<code>False</code> to restore backward compatibility</li>
</ul>
</li>
<li>
<p>Full diff</p>
<ul>
<li><a
href="https://github.com/jsh9/pydoclint/compare/0.5.4...0.5.5">https://github.com/jsh9/pydoclint/compare/0.5.4...0.5.5</a></li>
</ul>
</li>
</ul>
<h2>[0.5.4] - 2024-07-14</h2>
<ul>
<li>
<p>Added</p>
<ul>
<li>An option <code>--should-document-private-class-attributes</code>
(if False, private
class attributes should not appear in the docstring)</li>
<li>An option <code>--treat-property-methods-as-class-attributes</code>
(if True,
<code>@property</code> methods are treated like class attributes and
need to be
documented in the class docstring)</li>
</ul>
</li>
<li>
<p>Full diff</p>
<ul>
<li><a
href="https://github.com/jsh9/pydoclint/compare/0.5.3...0.5.4">https://github.com/jsh9/pydoclint/compare/0.5.3...0.5.4</a></li>
</ul>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/jsh9/pydoclint/commit/94efc5f989adbea30f3534b476b2931a02c1af90"><code>94efc5f</code></a>
Stop trying to check folder with names ending in <code>.py</code> (<a
href="https://github.com/jsh9/pydoclint/issues/155">#155</a>)</li>
<li><a
href="https://github.com/jsh9/pydoclint/commit/0247ef500a398aa283bb454b234ecb7c4f923e1f"><code>0247ef5</code></a>
Improve class attr comparison logic (<a
href="https://github.com/jsh9/pydoclint/issues/154">#154</a>)</li>
<li><a
href="https://github.com/jsh9/pydoclint/commit/0b750d55f76db945902c60ea450ff7a7da3e65c5"><code>0b750d5</code></a>
Add option to treat property methods as class attributes (<a
href="https://github.com/jsh9/pydoclint/issues/153">#153</a>)</li>
<li><a
href="https://github.com/jsh9/pydoclint/commit/3c39d2e09226450bb61914e1f6ded07a892f1055"><code>3c39d2e</code></a>
Add an option for private class attributes (<a
href="https://github.com/jsh9/pydoclint/issues/149">#149</a>)</li>
<li>See full diff in <a
href="https://github.com/jsh9/pydoclint/compare/0.5.3...0.5.6">compare
view</a></li>
</ul>
</details>
<br />

Updates `mkdocs-material` from 9.5.27 to 9.5.30
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/squidfunk/mkdocs-material/releases">mkdocs-material's
releases</a>.</em></p>
<blockquote>
<h2>mkdocs-material-9.5.30</h2>
<ul>
<li>Fixed <a
href="https://github.com/squidfunk/mkdocs-material/issues/7380">#7380</a>:
Navigation icons disappearing on hover in Safari</li>
<li>Fixed <a
href="https://github.com/squidfunk/mkdocs-material/issues/7367">#7367</a>:
Blog readtime computation includes SVG text content</li>
</ul>
<p>Thanks go to <a
href="https://github.com/sisp"><code>@​sisp</code></a> for their
contributions</p>
<h2>mkdocs-material-9.5.29</h2>
<ul>
<li>Updated Galician translations</li>
<li>Fixed <a
href="https://github.com/squidfunk/mkdocs-material/issues/7362">#7362</a>:
Annotations in figure captions rendering incorrectly</li>
</ul>
<p>Thanks go to <a
href="https://github.com/mmontes11"><code>@​mmontes11</code></a> for
their contributions</p>
<h2>mkdocs-material-9.5.28</h2>
<ul>
<li>Fixed <a
href="https://github.com/squidfunk/mkdocs-material/issues/7313">#7313</a>:
Improved tooltips mounted in sidebar when feature is disabled</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/squidfunk/mkdocs-material/blob/master/CHANGELOG">mkdocs-material's
changelog</a>.</em></p>
<blockquote>
<p>mkdocs-material-9.5.30 (2024-07-23)</p>
<ul>
<li>Fixed <a
href="https://github.com/squidfunk/mkdocs-material/issues/7380">#7380</a>:
Navigation icons disappearing on hover in Safari</li>
<li>Fixed <a
href="https://github.com/squidfunk/mkdocs-material/issues/7367">#7367</a>:
Blog readtime computation includes SVG text content</li>
</ul>
<p>mkdocs-material-9.5.29 (2024-07-14)</p>
<ul>
<li>Updated Galician translations</li>
<li>Fixed <a
href="https://github.com/squidfunk/mkdocs-material/issues/7362">#7362</a>:
Annotations in figure captions rendering incorrectly</li>
</ul>
<p>mkdocs-material-9.5.28 (2024-07-02)</p>
<ul>
<li>Fixed <a
href="https://github.com/squidfunk/mkdocs-material/issues/7313">#7313</a>:
Improved tooltips mounted in sidebar when feature is disabled</li>
</ul>
<p>mkdocs-material-9.5.27 (2024-06-16)</p>
<ul>
<li>Updated Estonian translations</li>
</ul>
<p>mkdocs-material-9.5.26 (2024-06-06)</p>
<ul>
<li>Fixed <a
href="https://github.com/squidfunk/mkdocs-material/issues/7232">#7232</a>:
Tab switches on scroll when linking tabs (9.5.19 regression)</li>
<li>Fixed <a
href="https://github.com/squidfunk/mkdocs-material/issues/7230">#7230</a>:
Blog author avatar broken when referring to local file</li>
</ul>
<p>mkdocs-material-9.5.25+insiders-4.53.11 (2024-05-27)</p>
<ul>
<li>Fixed projects plugin crashing when serving before building
subprojects</li>
</ul>
<p>mkdocs-material-9.5.25 (2024-05-27)</p>
<ul>
<li>Fixed <a
href="https://github.com/squidfunk/mkdocs-material/issues/7209">#7209</a>:
Tags plugin crashing on numeric tags</li>
</ul>
<p>mkdocs-material-9.5.24+insiders-4.53.10 (2024-05-20)</p>
<ul>
<li>Fixed projects plugin crashing in serve mode when disabled</li>
<li>Fixed projects plugin crashing when building nested projects</li>
</ul>
<p>mkdocs-material-9.5.24+insiders-4.53.9 (2024-05-20)</p>
<ul>
<li>Fixed <a
href="https://github.com/squidfunk/mkdocs-material/issues/7191">#7191</a>:
Tags listings not rendering when toc_depth is changed</li>
</ul>
<p>mkdocs-material-9.5.24 (2024-05-20)</p>
<ul>
<li>Fixed <a
href="https://github.com/squidfunk/mkdocs-material/issues/7187">#7187</a>:
Version selector title rendering issue</li>
</ul>
<p>mkdocs-material-9.5.23 (2024-05-15)</p>
<ul>
<li>Fixed <a
href="https://github.com/squidfunk/mkdocs-material/issues/7183">#7183</a>:
Edge case in anchor navigation when using instant navigation</li>
<li>Fixed <a
href="https://github.com/squidfunk/mkdocs-material/issues/6436">#6436</a>:
Version selector not showing version alias</li>
</ul>
<p>mkdocs-material-9.5.22 (2024-05-12)</p>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/squidfunk/mkdocs-material/commit/557a3d5d260e90d67fde5c7e3445e62fda8150e2"><code>557a3d5</code></a>
Prepare 9.5.30 release</li>
<li><a
href="https://github.com/squidfunk/mkdocs-material/commit/a798a0d0d282231aee563ea8f3b7de14554723d7"><code>a798a0d</code></a>
Fixed link in comment</li>
<li><a
href="https://github.com/squidfunk/mkdocs-material/commit/914bed290098dbac50e609657ec97776477375fe"><code>914bed2</code></a>
Updated dependencies</li>
<li><a
href="https://github.com/squidfunk/mkdocs-material/commit/906e966d6dcf77cce0ac4410d60c789007e8fd5a"><code>906e966</code></a>
Fixed navigation icons disappearing on hover in Safari</li>
<li><a
href="https://github.com/squidfunk/mkdocs-material/commit/6b13c560f5bf76889b1c603a5b83941892279c76"><code>6b13c56</code></a>
Fixed blog readtime calculation to ignore non-content text (<a
href="https://github.com/squidfunk/mkdocs-material/issues/7370">#7370</a>)</li>
<li><a
href="https://github.com/squidfunk/mkdocs-material/commit/4f8081c268d31bf74d546e600cadd0cff7dc89e8"><code>4f8081c</code></a>
Prepare 9.5.29 release</li>
<li><a
href="https://github.com/squidfunk/mkdocs-material/commit/33452c92eaa8f6b9d0ea0cdde08c7539d559db1c"><code>33452c9</code></a>
Fixed annotations in figure captions</li>
<li><a
href="https://github.com/squidfunk/mkdocs-material/commit/672c40333b576d9529bf7911e522f40c38df8cca"><code>672c403</code></a>
Documentation (<a
href="https://github.com/squidfunk/mkdocs-material/issues/7361">#7361</a>)</li>
<li><a
href="https://github.com/squidfunk/mkdocs-material/commit/c7c8fcb3af8390e15fc1de4cdf24bd28bf989f19"><code>c7c8fcb</code></a>
Updated Galician translations</li>
<li><a
href="https://github.com/squidfunk/mkdocs-material/commit/5d1f77cc3a0fccbd63ffea36fed2c1cc134976bb"><code>5d1f77c</code></a>
Documentation</li>
<li>Additional commits viewable in <a
href="https://github.com/squidfunk/mkdocs-material/compare/9.5.27...9.5.30">compare
view</a></li>
</ul>
</details>
<br />

Updates `mkdocstrings[python]` from 0.25.1 to 0.25.2
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/mkdocstrings/mkdocstrings/releases">mkdocstrings[python]'s
releases</a>.</em></p>
<blockquote>
<h2>0.25.2</h2>
<h2><a
href="https://github.com/mkdocstrings/mkdocstrings/releases/tag/0.25.2">0.25.2</a>
- 2024-07-25</h2>
<p><!-- raw HTML omitted --><a
href="https://github.com/mkdocstrings/mkdocstrings/compare/0.25.1...0.25.2">Compare
with 0.25.1</a><!-- raw HTML omitted --></p>
<h3>Code Refactoring</h3>
<ul>
<li>Give precedence to Markdown heading level (<code>##</code>) (<a
href="https://github.com/mkdocstrings/mkdocstrings/commit/2e5f89e8cef11e6447425d3700c29558cd6d241b">2e5f89e</a>
by Timothée Mazzucotelli).</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/mkdocstrings/mkdocstrings/blob/main/CHANGELOG.md">mkdocstrings[python]'s
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/mkdocstrings/mkdocstrings/releases/tag/0.25.2">0.25.2</a>
- 2024-07-25</h2>
<p><!-- raw HTML omitted --><a
href="https://github.com/mkdocstrings/mkdocstrings/compare/0.25.1...0.25.2">Compare
with 0.25.1</a><!-- raw HTML omitted --></p>
<h3>Code Refactoring</h3>
<ul>
<li>Give precedence to Markdown heading level (<code>##</code>) (<a
href="https://github.com/mkdocstrings/mkdocstrings/commit/2e5f89e8cef11e6447425d3700c29558cd6d241b">2e5f89e</a>
by Timothée Mazzucotelli).</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/mkdocstrings/mkdocstrings/commit/afb2a2fd27876d052b4a6c153aa5c42778c59a2e"><code>afb2a2f</code></a>
chore: Prepare release 0.25.2</li>
<li><a
href="https://github.com/mkdocstrings/mkdocstrings/commit/e7c8abdcfd016d1d5cc97643cfbebd5fce520adf"><code>e7c8abd</code></a>
tests: Ignore deprecation warnings for now</li>
<li><a
href="https://github.com/mkdocstrings/mkdocstrings/commit/924ecd818e69890708ec43bb88195c8a64dbab44"><code>924ecd8</code></a>
chore: Template upgrade</li>
<li><a
href="https://github.com/mkdocstrings/mkdocstrings/commit/da216b0af460681b6b9dc912837d68103f941479"><code>da216b0</code></a>
ci: Ignore unused arg</li>
<li><a
href="https://github.com/mkdocstrings/mkdocstrings/commit/80ab4981b92b69a14a72c5c4562145bdbad04ef1"><code>80ab498</code></a>
chore: Clean up pytest warning filters</li>
<li><a
href="https://github.com/mkdocstrings/mkdocstrings/commit/2e5f89e8cef11e6447425d3700c29558cd6d241b"><code>2e5f89e</code></a>
refactor: Give precedence to Markdown heading level
(<code>##</code>)</li>
<li><a
href="https://github.com/mkdocstrings/mkdocstrings/commit/fb194d8b32cd3494fedb1e9cbadaeccd76aa8b16"><code>fb194d8</code></a>
chore: Clean up <code>get_anchors</code></li>
<li><a
href="https://github.com/mkdocstrings/mkdocstrings/commit/64c5ff603f9c416ad1185e2fd1a960fe68ade728"><code>64c5ff6</code></a>
chore: Improve code comments</li>
<li><a
href="https://github.com/mkdocstrings/mkdocstrings/commit/8013be4f59f8d77f7d51adfe568edbbcd186ca04"><code>8013be4</code></a>
chore: Clean up unused condition</li>
<li>See full diff in <a
href="https://github.com/mkdocstrings/mkdocstrings/compare/0.25.1...0.25.2">compare
view</a></li>
</ul>
</details>
<br />

Updates `frequenz-repo-config[lib]` from 0.9.2 to 0.10.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/frequenz-floss/frequenz-repo-config-python/releases">frequenz-repo-config[lib]'s
releases</a>.</em></p>
<blockquote>
<h2>v0.10.0</h2>
<h1>Frequenz Repository Configuration Release Notes</h1>
<h2>Summary</h2>
<p>This release includes quite a few enhancements and bug fixes for the
cookiecutter template, but most importantly a new script for migrating
to new templates, generating the templates is no longer needed for
upgrading.</p>
<h2>Upgrading</h2>
<h3>Cookiecutter template</h3>
<ul>
<li>
<p>A new script for migrating to new templates (instead of regenerating
all files) is provided. It can't handle the upgrade 100% automatically,
but should make the migration process much easier and less error
prone.</p>
<p>To run it, the simplest way is to fetch it from GitHub and run it
directly:</p>
<pre lang="console"><code>curl -sSL
https://raw.githubusercontent.com/frequenz-floss/frequenz-repo-config-python/v0.10.0/cookiecutter/migrate.sh
| sh
</code></pre>
<p>Make sure the version you want to migrate to is correct in the
URL.</p>
<p>For jumping multiple versions you should run the script multiple
times, once for each version.</p>
<p>And remember to follow any manual instructions for each run.</p>
</li>
</ul>
<h2>New Features</h2>
<ul>
<li>A new GitHub ruleset is provided to configure the merge queue, so
branch protection rules are not needed anymore.</li>
</ul>
<h2>Enhancements</h2>
<ul>
<li>The generated docs now show the symbol type in the table of
contents.</li>
</ul>
<h3>Cookiecutter template</h3>
<ul>
<li>The <code>Markdown</code> dependency was bumped so we don't need to
add a <code>type: ignore</code> due to incorrect type hints.</li>
<li>The generated docs now show the symbol type in the table of
contents.</li>
<li>The dependecies were updated to the latest versions.</li>
<li>Disabled some <code>pylint</code> checks that are already checked by
other tools.</li>
<li>The generated documentation now uses symlinks for aliases, which
allows deep linking when using aliases too.</li>
</ul>
<h2>Bug Fixes</h2>
<ul>
<li>The code example extractor relied on a bug in the upstream sybil
project that was recently fixed, thus our code also needed to be
fixed.</li>
</ul>
<h3>Cookiecutter template</h3>
<ul>
<li>Fixed a bug where the pip cache post action fails in the CI workflow
because of permissions issues.</li>
<li>Make the <code>nox-cross-arch-all</code> job fail if any
<code>nox-cross-arch</code> matrix job fails.</li>
<li>Fix credentials not being passed to the
<code>test-installation</code> job in the CI workflow.</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/frequenz-floss/frequenz-repo-config-python/blob/v0.10.0/RELEASE_NOTES.md">frequenz-repo-config[lib]'s
changelog</a>.</em></p>
<blockquote>
<h1>Frequenz Repository Configuration Release Notes</h1>
<h2>Summary</h2>
<p>This release includes quite a few enhancements and bug fixes for the
cookiecutter template, but most importantly a new script for migrating
to new templates, generating the templates is no longer needed for
upgrading.</p>
<h2>Upgrading</h2>
<h3>Cookiecutter template</h3>
<ul>
<li>
<p>A new script for migrating to new templates (instead of regenerating
all files) is provided. It can't handle the upgrade 100% automatically,
but should make the migration process much easier and less error
prone.</p>
<p>To run it, the simplest way is to fetch it from GitHub and run it
directly:</p>
<pre lang="console"><code>curl -sSL
https://raw.githubusercontent.com/frequenz-floss/frequenz-repo-config-python/v0.10.0/cookiecutter/migrate.sh
| sh
</code></pre>
<p>Make sure the version you want to migrate to is correct in the
URL.</p>
<p>For jumping multiple versions you should run the script multiple
times, once for each version.</p>
<p>And remember to follow any manual instructions for each run.</p>
</li>
</ul>
<h2>New Features</h2>
<ul>
<li>A new GitHub ruleset is provided to configure the merge queue, so
branch protection rules are not needed anymore.</li>
</ul>
<h2>Enhancements</h2>
<ul>
<li>The generated docs now show the symbol type in the table of
contents.</li>
</ul>
<h3>Cookiecutter template</h3>
<ul>
<li>The <code>Markdown</code> dependency was bumped so we don't need to
add a <code>type: ignore</code> due to incorrect type hints.</li>
<li>The generated docs now show the symbol type in the table of
contents.</li>
<li>The dependecies were updated to the latest versions.</li>
<li>Disabled some <code>pylint</code> checks that are already checked by
other tools.</li>
<li>The generated documentation now uses symlinks for aliases, which
allows deep linking when using aliases too.</li>
</ul>
<h2>Bug Fixes</h2>
<ul>
<li>The code example extractor relied on a bug in the upstream sybil
project that was recently fixed, thus our code also needed to be
fixed.</li>
</ul>
<h3>Cookiecutter template</h3>
<ul>
<li>Fixed a bug where the pip cache post action fails in the CI workflow
because of permissions issues.</li>
<li>Make the <code>nox-cross-arch-all</code> job fail if any
<code>nox-cross-arch</code> matrix job fails.</li>
<li>Fix credentials not being passed to the
<code>test-installation</code> job in the CI workflow.</li>
<li>Make sure credentials are configured for all jobs that check out the
repository in the CI workflow.</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/frequenz-floss/frequenz-repo-config-python/commit/bfd45a8f5722578898d90448b326f80ba3f086a2"><code>bfd45a8</code></a>
Add pull-requests read permission to the release-notes-check workflow
(<a
href="https://github.com/frequenz-floss/frequenz-repo-config-python/issues/289">#289</a>)</li>
<li><a
href="https://github.com/frequenz-floss/frequenz-repo-config-python/commit/6aa6bc096b9f8da6039c484ceeb2a006249ece4e"><code>6aa6bc0</code></a>
Prepare for the v0.10.0 release (<a
href="https://github.com/frequenz-floss/frequenz-repo-config-python/issues/290">#290</a>)</li>
<li><a
href="https://github.com/frequenz-floss/frequenz-repo-config-python/commit/297b184200f3aa2d4ab1a117e00d4204d4149a35"><code>297b184</code></a>
Update version in the template pyproject.toml</li>
<li><a
href="https://github.com/frequenz-floss/frequenz-repo-config-python/commit/632283d1acb2a42194e1f7048e986437d5567060"><code>632283d</code></a>
Prepare the release notes for v0.10.0 release</li>
<li><a
href="https://github.com/frequenz-floss/frequenz-repo-config-python/commit/1778ff8cf0ec779e27668e949f253fdbbb4b1175"><code>1778ff8</code></a>
Add pull-requests read permission to the release-notes-check
workflow</li>
<li><a
href="https://github.com/frequenz-floss/frequenz-repo-config-python/commit/2ac253adb6dc36e672e91c805c1f28fe5e7426d1"><code>2ac253a</code></a>
Disable the new <code>check-class-attributes</code> check in pydoclint
0.5.3 (<a
href="https://github.com/frequenz-floss/frequenz-repo-config-python/issues/288">#288</a>)</li>
<li><a
href="https://github.com/frequenz-floss/frequenz-repo-config-python/commit/1660756b2f91f269e7d3da5f8d3e84557732e8b6"><code>1660756</code></a>
Disable the new <code>check-class-attributes</code> check in pydoclint
0.5.3</li>
<li><a
href="https://github.com/frequenz-floss/frequenz-repo-config-python/commit/327879b9b0e631e24194eb50a1fb31e9818a8ce8"><code>327879b</code></a>
Fix credentials not passed or configured the CI workflow (<a
href="https://github.com/frequenz-floss/frequenz-repo-config-python/issues/286">#286</a>)</li>
<li><a
href="https://github.com/frequenz-floss/frequenz-repo-config-python/commit/6195bc7818ddd3b3b9c6721982e3b9ea515eddc0"><code>6195bc7</code></a>
Update release notes</li>
<li><a
href="https://github.com/frequenz-floss/frequenz-repo-config-python/commit/bef233cd03a6945bcb716523df2da976afa02256"><code>bef233c</code></a>
Remove the TODOs from the migration</li>
<li>Additional commits viewable in <a
href="https://github.com/frequenz-floss/frequenz-repo-config-python/compare/v0.9.2...v0.10.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `mypy` from 1.10.1 to 1.11.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>
<h2>Mypy 1.11</h2>
<p>We’ve just uploaded mypy 1.11 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, performance
improvements 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>
<h4>Support Python 3.12 Syntax for Generics (PEP 695)</h4>
<p>Mypy now supports the new type parameter syntax introduced in Python
3.12 (<a href="https://peps.python.org/pep-0695/">PEP 695</a>).
This feature is still experimental and must be enabled with the
<code>--enable-incomplete-feature=NewGenericSyntax</code> flag, or with
<code>enable_incomplete_feature = NewGenericSyntax</code> in the mypy
configuration file.
We plan to enable this by default in the next mypy feature release.</p>
<p>This example demonstrates the new syntax:</p>
<pre lang="python"><code># Generic function
def f[T](https://github.com/python/mypy/blob/master/x: T) -&gt; T: ...
<p>reveal_type(f(1))  # Revealed type is 'int'</p>
<h1>Generic class</h1>
<p>class C[T]:
def <strong>init</strong>(self, x: T) -&gt; None:
self.x = x</p>
<p>c = C('a')
reveal_type(c.x)  # Revealed type is 'str'</p>
<h1>Type alias</h1>
<p>type A[T] = C[list[T]]
</code></pre></p>
<p>This feature was contributed by Jukka Lehtosalo.</p>
<h4>Support for <code>functools.partial</code></h4>
<p>Mypy now type checks uses of <code>functools.partial</code>.
Previously mypy would accept arbitrary arguments.</p>
<p>This example will now produce an error:</p>
<pre lang="python"><code>from functools import partial
&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/570b90a7a368f04c64f60af339d0ac1808c49c15"><code>570b90a</code></a>
Bump version to 1.11</li>
<li><a
href="https://github.com/python/mypy/commit/b3a102ef31f63a8a8ba32c8dbe160ddef3c43054"><code>b3a102e</code></a>
Fix <code>RawExpressionType.accept</code> crash with
<code>--cache-fine-grained</code> (<a
href="https://github.com/python/mypy/issues/17588">#17588</a>)</li>
<li><a
href="https://github.com/python/mypy/commit/aec04c74488d46a81a95ed3553b8e953a6ec59a7"><code>aec04c7</code></a>
Fix PEP 604 isinstance caching (<a
href="https://github.com/python/mypy/issues/17563">#17563</a>)</li>
<li><a
href="https://github.com/python/mypy/commit/cb44e4d8f18b9bc874f1076b33eec7ad67de165c"><code>cb44e4d</code></a>
Fix <code>typing.TypeAliasType</code> being undefined on python &lt;
3.12 (<a
href="https://github.com/python/mypy/issues/17558">#17558</a>)</li>
<li><a
href="https://github.com/python/mypy/commit/6cf9180e1411dab2ee91b57374f696d391eb24f4"><code>6cf9180</code></a>
Fix types.GenericAlias lookup crash (<a
href="https://github.com/python/mypy/issues/17543">#17543</a>)</li>
<li><a
href="https://github.com/python/mypy/commit/64c1ebf7cff51c13b1771174e3bb6bce9fe0d5dc"><code>64c1ebf</code></a>
Bump version to 1.11.1+dev</li>
<li><a
href="https://github.com/python/mypy/commit/dbd5f5cdb62b4dcd1e498c3a91c204b812609fdf"><code>dbd5f5c</code></a>
Remove +dev from version for 1.11 release</li>
<li><a
href="https://github.com/python/mypy/commit/f0a8c6931485364d918f7b4920e5f2832a6be22f"><code>f0a8c69</code></a>
Update CHANGELOG for mypy 1.11 (<a
href="https://github.com/python/mypy/issues/17540">#17540</a>)</li>
<li><a
href="https://github.com/python/mypy/commit/371f7801e9bff13803a228e6cc8dd4cee6c8e472"><code>371f780</code></a>
CHANGELOG.md update for 1.11 (<a
href="https://github.com/python/mypy/issues/17539">#17539</a>)</li>
<li><a
href="https://github.com/python/mypy/commit/2563da0c721a89725bfd009da12dd6378554bfc6"><code>2563da0</code></a>
Fix daemon crash on invalid type in TypedDict (<a
href="https://github.com/python/mypy/issues/17495">#17495</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/python/mypy/compare/v1.10.1...v1.11.1">compare
view</a></li>
</ul>
</details>
<br />

Updates `uv` from 0.2.18 to 0.2.32
<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.2.32</h2>
<h2>Release Notes</h2>
<h3>Enhancements</h3>
<ul>
<li>Deprecate the <code>--isolated</code> flag in favor of
<code>--no-config</code> (<a
href="https://github.com/astral-sh/uv/pull/5466">#5466</a>)</li>
<li>Re-enable <code>requires-python</code> narrowing in forks (<a
href="https://github.com/astral-sh/uv/pull/5583">#5583</a>)</li>
</ul>
<h3>Performance</h3>
<ul>
<li>Skip copying to empty entries in seekable zip (<a
href="https://github.com/astral-sh/uv/pull/5571">#5571</a>)</li>
<li>Use a consistent buffer size for downloads (<a
href="https://github.com/astral-sh/uv/pull/5569">#5569</a>)</li>
<li>Use a consistent buffer size when writing out zip files (<a
href="https://github.com/astral-sh/uv/pull/5570">#5570</a>)</li>
</ul>
<h3>Bug fixes</h3>
<ul>
<li>Avoid setting executable permissions on files we might not own (<a
href="https://github.com/astral-sh/uv/pull/5582">#5582</a>)</li>
<li>Statically link liblzma (<a
href="https://github.com/astral-sh/uv/pull/5577">#5577</a>)</li>
</ul>
<h2>Install uv 0.2.32</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.2.32/uv-installer.sh
| sh
</code></pre>
<h3>Install prebuilt binaries via powershell script</h3>
<pre lang="sh"><code>powershell -c &quot;irm
https://github.com/astral-sh/uv/releases/download/0.2.32/uv-installer.ps1
| iex&quot;
</code></pre>
<h2>Download uv 0.2.32</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.2.32/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.2.32/uv-aarch64-apple-darwin.tar.gz.sha256">checksum</a></td>
</tr>
<tr>
<td><a
href="https://github.com/astral-sh/uv/releases/download/0.2.32/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.2.32/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.2.32/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.2.32/uv-i686-pc-windows-msvc.zip.sha256">checksum</a></td>
</tr>
<tr>
<td><a
href="https://github.com/astral-sh/uv/releases/download/0.2.32/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.2.32/uv-x86_64-pc-windows-msvc.zip.sha256">checksum</a></td>
</tr>
<tr>
<td><a
href="https://github.com/astral-sh/uv/releases/download/0.2.32/uv-aarch64-unknown-linux-gnu.tar.gz">uv-aarch64-unknown-linux-gnu.tar.gz</a></td>
<td>ARM64 Linux</td>
<td><a
href="https://github.com/astral-sh/uv/releases/download/0.2.32/uv-aarch64-unknown-linux-gnu.tar.gz.sha256">checksum</a></td>
</tr>
<tr>
<td><a
href="https://github.com/astral-sh/uv/releases/download/0.2.32/uv-i686-unknown-linux-gnu.tar.gz">uv-i686-unknown-linux-gnu.tar.gz</a></td>
<td>x86 Linux</td>
<td><a
href="https://github.com/astral-sh/uv/releases/download/0.2.32/uv-i686-unknown-linux-gnu.tar.gz.sha256">checksum</a></td>
</tr>
<tr>
<td><a
href="https://github.com/astral-sh/uv/releases/download/0.2.32/uv-powerpc64-unknown-linux-gnu.tar.gz">uv-powerpc64-unknown-linux-gnu.tar.gz</a></td>
<td>PPC64 Linux</td>
<td><a
href="https://github.com/astral-sh/uv/releases/download/0.2.32/uv-powerpc64-unknown-linux-gnu.tar.gz.sha256">checksum</a></td>
</tr>
<tr>
<td><a
href="https://github.com/astral-sh/uv/releases/download/0.2.32/uv-powerpc64le-unknown-linux-gnu.tar.gz">uv-powerpc64le-unknown-linux-gnu.tar.gz</a></td>
<td>PPC64LE Linux</td>
<td><a
href="https://github.com/astral-sh/uv/releases/download/0.2.32/uv-powerpc64le-unknown-linux-gnu.tar.gz.sha256">checksum</a></td>
</tr>
<tr>
<td><a
href="https://github.com/astral-sh/uv/releases/download/0.2.32/uv-s390x-unknown-linux-gnu.tar.gz">uv-s390x-unknown-linux-gnu.tar.gz</a></td>
<td>S390x Linux</td>
<td><a
href="https://github.com/astral-sh/uv/releases/download/0.2.32/uv-s390x-unknown-linux-gnu.tar.gz.sha256">checksum</a></td>
</tr>
<tr>
<td><a
href="https://github.com/astral-sh/uv/releases/download/0.2.32/uv-x86_64-unknown-linux-gnu.tar.gz">uv-x86_64-unknown-linux-gnu.tar.gz</a></td>
<td>x64 Linux</td>
<td><a
href="https://github.com/astral-sh/uv/releases/download/0.2.32/uv-x86_64-unknown-linux-gnu.tar.gz.sha256">checksum</a></td>
</tr>
<tr>
<td><a
href="https://github.com/astral-sh/uv/releases/download/0.2.32/uv-armv7-unknown-linux-gnueabihf.tar.gz">uv-armv7-unknown-linux-gnueabihf.tar.gz</a></td>
<td>ARMv7 Linux</td>
<td><a
href="https://github.com/astral-sh/uv/releases/download/0.2.32/uv-armv7-unknown-linux-gnueabihf.tar.gz.sha256">checksum</a></td>
</tr>
<tr>
<td><a
href="https://github.com/astral-sh/uv/releases/download/0.2.32/uv-aarch64-unknown-linux-musl.tar.gz">uv-aarch64-unknown-linux-musl.tar.gz</a></td>
<td>ARM64 MUSL Linux</td>
<td><a
href="https://github.com/astral-sh/uv/releases/download/0.2.32/uv-aarch64-unknown-linux-musl.tar.gz.sha256">checksum</a></td>
</tr>
<tr>
<td><a
href="https://github.com/astral-sh/uv/releases/download/0.2.32/uv-i686-unknown-linux-musl.tar.gz">uv-i686-unknown-linux-musl.tar.gz</a></td>
<td>x86 MUSL Linux</td>
<td><a
href="https://github.com/astral-sh/uv/releases/download/0.2.32/uv-i686-unknown-linux-musl.tar.gz.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.2.32</h2>
<h3>Enhancements</h3>
<ul>
<li>Deprecate the <code>--isolated</code> flag in favor of
<code>--no-config</code> (<a
href="https://github.com/astral-sh/uv/pull/5466">#5466</a>)</li>
<li>Re-enable <code>requires-python</code> narrowing in forks (<a
href="https://github.com/astral-sh/uv/pull/5583">#5583</a>)</li>
</ul>
<h3>Performance</h3>
<ul>
<li>Skip copying to empty entries in seekable zip (<a
href="https://github.com/astral-sh/uv/pull/5571">#5571</a>)</li>
<li>Use a consistent buffer size for downloads (<a
href="https://github.com/astral-sh/uv/pull/5569">#5569</a>)</li>
<li>Use a consistent buffer size when writing out zip files (<a
href="https://github.com/astral-sh/uv/pull/5570">#5570</a>)</li>
</ul>
<h3>Bug fixes</h3>
<ul>
<li>Avoid setting executable permissions on files we might not own (<a
href="https://github.com/astral-sh/uv/pull/5582">#5582</a>)</li>
<li>Statically link liblzma (<a
href="https://github.com/astral-sh/uv/pull/5577">#5577</a>)</li>
</ul>
<h2>0.2.31</h2>
<h3>Enhancements</h3>
<ul>
<li>Add <code>--relocatable</code> flag to <code>uv venv</code> (<a
href="https://github.com/astral-sh/uv/pull/5515">#5515</a>)</li>
<li>Support <code>xz</code>-compressed packages (<a
href="https://github.com/astral-sh/uv/pull/5513">#5513</a>)</li>
<li>Warn, but don't error, when encountering tilde
<code>.dist-info</code> directories (<a
href="https://github.com/astral-sh/uv/pull/5520">#5520</a>)</li>
</ul>
<h3>Bug fixes</h3>
<ul>
<li>Make <code>pip list --editable</code> conflict with
<code>--exclude-editable</code> (<a
href="https://github.com/astral-sh/uv/pull/5506">#5506</a>)</li>
<li>Add some missing reinstall-refresh calls (<a
href="https://github.com/astral-sh/uv/pull/5497">#5497</a>)</li>
<li>Avoid warning users for missing self-extra lower bounds (<a
href="https://github.com/astral-sh/uv/pull/5518">#5518</a>)</li>
<li>Generate hashes for <code>--find-links</code> entries (<a
href="https://github.com/astral-sh/uv/pull/5544">#5544</a>)</li>
<li>Retain editable designation for cached wheel installs (<a
href="https://github.com/astral-sh/uv/pull/5545">#5545</a>)</li>
<li>Use 666 rather than 644 for default permissions (<a
href="https://github.com/astral-sh/uv/pull/5498">#5498</a>)</li>
<li>Retry on incomplete body (<a
href="https://github.com/astral-sh/uv/pull/5555">#5555</a>)</li>
<li>Ban <code>--no-cache</code> with <code>--link-mode=symlink</code>
(<a
href="https://github.com/astral-sh/uv/pull/5519">#5519</a>)</li>
</ul>
<h2>0.2.30</h2>
<h3>Enhancements</h3>
<ul>
<li>Infer missing <code>.exe</code> in Windows Python discovery (<a
href="https://github.com/astral-sh/uv/pull/5456">#5456</a>)</li>
<li>Make <code>--reinstall</code> imply <code>--refresh</code> (<a
href="https://github.com/astral-sh/uv/pull/5425">#5425</a>)</li>
</ul>
<h3>CLI</h3>
<ul>
<li>Add <code>--no-config</code> to replace <code>--isolated</code> (<a
href="https://github.com/astral-sh/uv/pull/5463">#5463</a>)</li>
<li>Cache metadata for source tree dependencies (<a
href="https://github.com/astral-sh/uv/pull/5423">#5423</a>)</li>
</ul>
<h3>Bug fixes</h3>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/astral-sh/uv/commit/38c232e466ea3aa373019f632f5f7d53721187ee"><code>38c232e</code></a>
Bump version to v0.2.32 (<a
href="https://github.com/astral-sh/uv/issues/5641">#5641</a>)</li>
<li><a
href="https://github.com/astral-sh/uv/commit/5d727cb0af37631225a94488744f88556d7d253f"><code>5d727cb</code></a>
Deprecate the <code>--isolated</code> flag (<a
href="https://github.com/astral-sh/uv/issues/5466">#5466</a>)</li>
<li><a
href="https://github.com/astral-sh/uv/commit/f971631adf8da6fb5f046e94d32462b83442677b"><code>f971631</code></a>
Wrap documentation at 100 characters (<a
href="https://github.com/astral-sh/uv/issues/5635">#5635</a>)</li>
<li><a
href="https://github.com/astral-sh/uv/commit/b081425a779415827906d100c799d8768ddcde70"><code>b081425</code></a>
Improvements to the project concept docs (<a
href="https://github.com/astral-sh/uv/issues/5634">#5634</a>)</li>
<li><a
href="https://github.com/astral-sh/uv/commit/67b3bfa2137e6e710b6647fef3b6b2d89c38917a"><code>67b3bfa</code></a>
Add <code>--isolated</code> support to <code>uv run</code> (<a
href="https://github.com/astral-sh/uv/issues/5471">#5471</a>)</li>
<li><a
href="https://github.com/astral-sh/uv/commit/ff3bcbb63914ef512030917840839d67f79942bb"><code>ff3bcbb</code></a>
Reframe use of <code>--isolated</code> in <code>tool run</code> (<a
href="https://github.com/astral-sh/uv/issues/5470">#5470</a>)</li>
<li><a
href="https://github.com/astral-sh/uv/commit/8545ae2312ffeac5bf6ee433c39770f9f85632d5"><code>8545ae2</code></a>
Rename more use of &quot;lock file&quot; to &quot;lockfile&quot; (<a
href="https://github.com/astral-sh/uv/issues/5629">#5629</a>)</li>
<li><a
href="https://github.com/astral-sh/uv/commit/d6c319a368c65cb66f36d4534d01f982d7a13477"><code>d6c319a</code></a>
Suppress resolver output by default in <code>uv run</code> and <code>uv
tool run</code> (<a
href="https://github.com/astral-sh/uv/issues/5580">#5580</a>)</li>
<li><a
href="https://github.com/astral-sh/uv/commit/f7494f24cf1d380c29cd6754ba3e225ebab3cc70"><code>f7494f2</code></a>
Remove <code>--isolated</code> usages from the <code>uv python</code>
API (<a
href="https://github.com/astral-sh/uv/issues/5468">#5468</a>)</li>
<li><a
href="https://github.com/astral-sh/uv/commit/5830a532efabd2e43410d4af766d9baffffa616a"><code>5830a53</code></a>
Add links to documentation footer (<a
href="https://github.com/astral-sh/uv/issues/5616">#5616</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/astral-sh/uv/compare/0.2.18...0.2.32">compare
view</a></li>
</ul>
</details>
<br />

Updates `pylint` from 3.2.5 to 3.2.6
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/pylint-dev/pylint/commit/da1956664d6be3d008a90ad3f72bdd9d8a7ecfaa"><code>da19566</code></a>
Bump pylint to 3.2.6, update changelog (<a
href="https://github.com/pylint-dev/pylint/issues/9825">#9825</a>)</li>
<li><a
href="https://github.com/pylint-dev/pylint/commit/810c59ce17a46fb83d5938b591420b906c7c84b5"><code>810c59c</code></a>
Update setuptools to &gt;=71.0.4 (<a
href="https://github.com/pylint-dev/pylint/issues/9812">#9812</a>)
(<a
href="https://github.com/pylint-dev/pylint/issues/9824">#9824</a>)</li>
<li><a
href="https://github.com/pylint-dev/pylint/commit/5f19cd5a12c25c6f0e02566ccfcde19c6fee3674"><code>5f19cd5</code></a>
Fix a crash when a subclass extends <code>__slots__</code> (<a
href="https://github.com/pylint-dev/pylint/issues/9817">#9817</a>)
(<a
href="https://github.com/pylint-dev/pylint/issues/9822">#9822</a>)</li>
<li><a
href="https://github.com/pylint-dev/pylint/commit/c0b1d2228b47e90f80cfb258ade9e23a5f36d153"><code>c0b1d22</code></a>
Bump astroid to 3.2.4 (<a
href="https://github.com/pylint-dev/pylint/issues/9816">#9816</a>)
(<a
href="https://github.com/pylint-dev/pylint/issues/9821">#9821</a>)</li>
<li><a
href="https://github.com/pylint-dev/pylint/commit/1d877de1f0f9889841d7e2a780ff2aad2f823213"><code>1d877de</code></a>
Fix consider-using-min-max-builtin (<a
href="https://github.com/pylint-dev/pylint/issues/9802">#9802</a>)
(<a
href="https://github.com/pylint-dev/pylint/issues/9803">#9803</a>)</li>
<li><a
href="https://github.com/pylint-dev/pylint/commit/8410f570a6b3601b108fe9773d70a9ad794018da"><code>8410f57</code></a>
Fix a false positive for <code>missing-param-doc</code> (<a
href="https://github.com/pylint-dev/pylint/issues/9740">#9740</a>)
(<a
href="https://github.com/pylint-dev/pylint/issues/9793">#9793</a>)</li>
<li><a
href="https://github.com/pylint-dev/pylint/commit/bd4c8f1a9b6b420ba3e3ad5afe265fb7bb6b2d15"><code>bd4c8f1</code></a>
Handle assert_never() when imported from typing_extensions (<a
href="https://github.com/pylint-dev/pylint/issues/9782">#9782</a>)
(<a
href="https://github.com/pylint-dev/pylint/issues/9790">#9790</a>)</li>
<li><a
href="https://github.com/pylint-dev/pylint/commit/8eb2c4d08201e31199d27a7b72fe57d185126648"><code>8eb2c4d</code></a>
Fix FP for <code>unexpected-keyword-arg</code> with ambiguous
constructors (<a
href="https://github.com/pylint-dev/pylint/issues/9785">#9785</a>)
(<a
href="https://github.com/pylint-dev/pylint/issues/9788">#9788</a>)</li>
<li><a
href="https://github.com/pylint-dev/pylint/commit/98825379da418eb0684f833ecfb9837f60560778"><code>9882537</code></a>
Bump astroid to 3.2.3 (<a
href="https://github.com/pylint-dev/pylint/issues/9787">#9787</a>)</li>
<li><a
href="https://github.com/pylint-dev/pylint/commit/aea868c9d01f93f2030c4624e97910dffc5bc090"><code>aea868c</code></a>
Fix <code>invalid-name</code> regression for class attributes in
subclasses (<a
href="https://github.com/pylint-dev/pylint/issues/9772">#9772</a>)
(<a
href="https://github.com/pylint-dev/pylint/issues/9775">#9775</a>)</li>
<li>See full diff in <a
href="https://github.com/pylint-dev/pylint/compare/v3.2.5...v3.2.6">compare
view</a></li>
</ul>
</details>
<br />

Updates `pytest` from 8.2.2 to 8.3.2
<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.3.2</h2>
<h1>pytest 8.3.2 (2024-07-24)</h1>
<h2>Bug fixes</h2>
<ul>
<li>
<p><a
href="https://github.com/pytest-dev/pytest/issues/12652">#12652</a>:
Resolve regression [conda]{.title-ref} environments where no longer
being automatically detected.</p>
<p>-- by <code>RonnyPfannschmidt</code>{.interpreted-text
role=&quot;user&quot;}</p>
</li>
</ul>
<h2>8.3.1</h2>
<h1>pytest 8.3.1 (2024-07-20)</h1>
<p>The 8.3.0 release failed to include the change notes and docs for the
release. This patch release remedies this. There are no other
changes.</p>
<h2>8.3.0</h2>
<h1>pytest 8.3.0 (2024-07-20)</h1>
<h2>New features</h2>
<ul>
<li>
<p><a
href="https://github.com/pytest-dev/pytest/issues/12231">#12231</a>:
Added [--xfail-tb]{.title-ref} flag, which turns on traceback output for
XFAIL results.</p>
<ul>
<li>If the [--xfail-tb]{.title-ref} flag is not given, tracebacks for
XFAIL results are NOT shown.</li>
<li>The style of traceback for XFAIL is set with [--tb]{.title-ref}, and
can be [auto|long|short|line|native|no]{.title-ref}.</li>
<li>Note: Even if you have [--xfail-tb]{.title-ref} set, you won't see
them if [--tb=no]{.title-ref}.</li>
</ul>
<p>Some history:</p>
<p>With pytest 8.0, [-rx]{.title-ref} or [-ra]{.title-ref} would not
only turn on summary reports for xfail, but also report the tracebacks
for xfail results. This caused issues with some projects that utilize
xfail, but don't want to see all of the xfail tracebacks.</p>
<p>This change detaches xfail tracebacks from [-rx]{.title-ref}, and now
we turn on xfail tracebacks with [--xfail-tb]{.title-ref}. With this,
the default [-rx]{.title-ref}/ [-ra]{.title-ref} behavior is identical
to pre-8.0 with respect to xfail tracebacks. While this is a behavior
change, it brings default behavior back to pre-8.0.0 behavior, which
ultimately was considered the better course of action.</p>
</li>
<li>
<p><a
href="https://github.com/pytest-dev/pytest/issues/12281">#12281</a>:
Added support for keyword matching in marker expressions.</p>
<p>Now tests can be selected by marker keyword arguments.
Supported values are <code>int</code>{.interpreted-text
role=&quot;class&quot;}, (unescaped) <code>str</code>{.interpreted-text
role=&quot;class&quot;}, <code>bool</code>{.interpreted-text
role=&quot;class&quot;} &amp; <code>None</code>{.interpreted-text
role=&quot;data&quot;}.</p>
<p>See <code>marker examples
&lt;marker_keyword_expression_example&gt;</code>{.interpreted-text
role=&quot;ref&quot;} for more information.</p>
<p>-- by <code>lovetheguitar</code>{.interpreted-text
role=&quot;user&quot;}</p>
</li>
<li>
<p><a
href="https://github.com/pytest-dev/pytest/issues/12567">#12567</a>:
Added <code>--no-fold-skipped</code> command line option.</p>
<p>If this option is set, then skipped tests in short summary are no
longer grouped
by reason but all tests are printed individually with their nodeid in
the same
way as other statuses.</p>
<p>-- by <code>pbrezina</code>{.interpreted-text
role=&quot;user&quot;}</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/bbcec9c46509c417ef58e4849847b4aa43f4591e"><code>bbcec9c</code></a>
Prepare release version 8.3.2</li>
<li><a
href="https://github.com/pytest-dev/pytest/commit/78fe8b61fa716cd9775f1e37b395bab7679734a6"><code>78fe8b6</code></a>
Merge pull request <a
href="https://github.com/pytest-dev/pytest/issues/12657">#12657</a>
from pytest-dev/patchback/backports/8.3.x/6c806b499...</li>
<li><a
href="https://github.com/pytest-dev/pytest/commit/238bad2d2a1f1dbb47d740c84b5b4f5224f8a965"><code>238bad2</code></a>
Merge pull request <a
href="https://github.com/pytest-dev/pytest/issues/12656">#12656</a>
from RonnyPfannschmidt/fix-12652-detect-conda-env</li>
<li><a
href="https://github.com/pytest-dev/pytest/commit/ae6034a781a50b572fa700911e5d8e0eb074ca17"><code>ae6034a</code></a>
Merge pull request <a
href="https://github.com/pytest-dev/pytest/issues/12641">#12641</a>
from pytest-dev/patchback/backports/8.3.x/c03989cee...</li>
<li><a
href="https://github.com/pytest-dev/pytest/commit/31337aba02a7698a87a6792eacf887fceff08af2"><code>31337ab</code></a>
Merge pull request <a
href="https://github.com/pytest-dev/pytest/issues/12640">#12640</a>
from pytest-dev/update-user</li>
<li><a
href="https://github.com/pytest-dev/pytest/commit/ca3070b1356e5edf43f085d8c4ec1b34627061dd"><code>ca3070b</code></a>
Merge pull request <a
href="https://github.com/pytest-dev/pytest/issues/12637">#12637</a>
from pytest-dev/release-8.3.1</li>
<li><a
href="https://github.com/pytest-dev/pytest/commit/de98446075cc07c768387cf64ba497dd75c205de"><code>de98446</code></a>
Prepare release version 8.3.1</li>
<li><a
href="https://github.com/pytest-dev/pytest/commit/bd0a0424037825bc23b9bf299115e92c53a67a9c"><code>bd0a042</code></a>
Merge pull request <a
href="https://github.com/pytest-dev/pytest/issues/12636">#12636</a>
from pytest-dev/update-release-notes</li>
<li><a
href="https://github.com/pytest-dev/pytest/commit/664325bc9fd90217f51fe7cc0e9fff2f29a41a15"><code>664325b</code></a>
doc/changelog: update 8.3.0 notes</li>
<li><a
href="https://github.com/pytest-dev/pytest/commit/19d225d0ab0f586a9a1fc878dff871495c12bd06"><code>19d225d</code></a>
Merge pull request <a
href="https://github.com/pytest-dev/pytest/issues/12635">#12635</a>
from pytest-dev/release-8.3.0</li>
<li>Additional commits viewable in <a
href="https://github.com/pytest-dev/pytest/compare/8.2.2...8.3.2">compare
view</a></li>
</ul>
</details>
<br />

Updates `frequenz-repo-config[extra-lint-examples]` from 0.9.2 to 0.10.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/frequenz-floss/frequenz-repo-config-python/releases">frequenz-repo-config[extra-lint-examples]'s
releases</a>.</em></p>
<blockquote>
<h2>v0.10.0</h2>
<h1>Frequenz Repository Configuration Release Notes</h1>
<h2>Summary</h2>
<p>This release includes quite a few enhancements and bug fixes for the
cookiecutter template, but most importantly a new script for migrating
to new templates, generating the templates is no longer needed for
upgrading.</p>
<h2>Upgrading</h2>
<h3>Cookiecutter template</h3>
<ul>
<li>
<p>A new script for migrating to new templates (instead of regenerating
all files) is provided. It can't handle the upgrade 100% automatically,
but should make the migration process much easier and less error
prone.</p>
<p>To run it, the simplest way is to fetch it from GitHub and run it
directly:</p>
<pre lang="console"><code>curl -sSL
https://raw.githubusercontent.com/frequenz-floss/frequenz-repo-config-python/v0.10.0/cookiecutter/migrate.sh
| sh
</code></pre>
<p>Make sure the version you want to migrate to is correct in the
URL.</p>
<p>For jumping multiple versions you should run the script multiple
times, once for each version.</p>
<p>And remember to follow any manual instructions for each run.</p>
</li>
</ul>
<h2>New Features</h2>
<ul>
<li>A new GitHub ruleset is provided to configure the merge queue, so
branch protection rules are not needed anymore.</li>
</ul>
<h2>Enhancements</h2>
<ul>
<li>The generated docs now show the symbol type in the table of
contents.</li>
</ul>
<h3>Cookiecutter template</h3>
<ul>
<li>The <code>Markdown</code> dependency was bumped so we don't need to
add a <code>type: ignore</code> due to incorrect type hints.</li>
<li>The generated docs now show the symbol type in the table of
contents.</li>
<li>The dependecies were updated to the latest versions.</li>
<li>Disabled some <code>pylint</code> checks that are already checked by
other tools.</li>
<li>The generated documentation now uses symlinks for aliases, which
allows deep linking when using aliases too.</li>
</ul>
<h2>Bug Fixes</h2>
<ul>
<li>The code example extractor relied on a bug in the upstream sybil
project that was recently fixed, thus our code also needed to be
fixed.</li>
</ul>
<h3>Cookiecutter template</h3>
<ul>
<li>Fixed a bug where the pip cache post action fails in the CI workflow
because of permissions issues.</li>
<li>Make the <code>nox-cross-arch-all</code> job fail if any
<code>nox-cross-arch</code> matrix job fails.</li>
<li>Fix credentials not being passed to the
<code>test-installation</code> job in the CI workflow.</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/frequenz-floss/frequenz-repo-config-python/blob/v0.10.0/RELEASE_NOTES.md">frequenz-repo-config[extra-lint-examples]'s
changelog</a>.</em></p>
<blockquote>
<h1>Frequenz Repository Configuration Release Notes</h1>
<h2>Summary</h2>
<p>This release includes quite a few enhancements and bug fixes for the
cookiecutter template, but most importantly a new script for migrating
to new templates, generating the templates is no longer needed for
upgrading.</p>
<h2>Upgrading</h2>
<h3>Cookiecutter template</h3>
<ul>
<li>
<p>A new script for migrating to new templates (instead of regenerating
all files) is provided. It can't handle the upgrade 100% automatically,
but should make the migration process much easier and less error
prone.</p>
<p>To run it, the simplest way is to fetch it from GitHub and run it
directly:</p>
<pre lang="console"><code>curl -sSL
https://raw.githubusercontent.com/frequenz-floss/frequenz-repo-config-python/v0.10.0/cookiecutter/migrate.sh
| sh
</code></pre>
<p>Make sure the version you want to migrate to is correct in the
URL.</p>
<p>For jumping multiple versions you should run the script multiple
times, once for each version.</p>
<p>And remember to follow any manual instructions for each run.</p>
</li>
</ul>
<h2>New Features</h2>
<ul>
<li>A new GitHub ruleset is provided to configure the merge queue, so
branch protection rules are not needed anymore.</li>
</ul>
<h2>Enhancements</h2>
<ul>
<li>The generated docs now show the symbol type in the table of
contents.</li>
</ul>
<h3>Cookiecutter template</h3>
<ul>
<li>The <code>Markdown</code> dependency was bumped so we don't need to
add a <code>type: ignore</code> due to incorrect type hints.</li>
<li>The generated docs now show the symbol type in the table of
contents.</li>
<li>The dependecies were updated to the latest versions.</li>
<li>Disabled some <code>pylint</code> checks that are already checked by
other tools.</li>
<li>The generated documentation now uses symlinks for aliases, which
allows deep linking when using aliases too.</li>
</ul>
<h2>Bug Fixes</h2>
<ul>
<li>The code example extractor relied on a bug in the upstream sybil
project that was recently fixed, thus our code also needed to be
fixed.</li>
</ul>
<h3>Cookiecutter template</h3>
<ul>
<li>Fixed a bug where the pip cache post action fails in the CI workflow
because of permissions issues.</li>
<li>Make the <code>nox-cross-arch-all</code> job fail if any
<code>nox-cross-arch</code> matrix job fails.</li>
<li>Fix credentials not being passed to the
<code>test-installation</code> job in the CI workflow.</li>
<li>Make sure credentials are configured for all jobs that check out the
repository in the CI workflow.</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/frequenz-floss/frequenz-repo-config-python/commit/bfd45a8f5722578898d90448b326f80ba3f086a2"><code>bfd45a8</code></a>
Add pull-requests read permission to the release-notes-check workflow
(<a
href="https://github.com/frequenz-floss/frequenz-repo-config-python/issues/289">#289</a>)</li>
<li><a
href="https://github.com/frequenz-floss/frequenz-repo-config-python/commit/6aa6bc096b9f8da6039c484ceeb2a006249ece4e"><code>6aa6bc0</code></a>
Prepare for the v0.10.0 release (<a
href="https://github.com/frequenz-floss/frequenz-repo-config-python/issues/290">#290</a>)</li>
<li><a
href="https://github.com/frequenz-floss/frequenz-repo-config-python/commit/297b184200f3aa2d4ab1a117e00d4204d4149a35"><code>297b184</code></a>
Update version in the template pyproject.toml</li>
<li><a
href="https://github.com/frequenz-floss/frequenz-repo-config-python/commit/632283d1acb2a42194e1f7048e986437d5567060"><code>632283d</code></a>
Prepare the release notes for v0.10.0 release</li>
<li><a
href="https://github.com/frequenz-floss/frequenz-repo-config-python/commit/1778ff8cf0ec779e27668e949f253fdbbb4b1175"><code>1778ff8</code></a>
Add pull-requests read permission to the release-notes-check
workflow</li>
<li><a
href="https://github.com/frequenz-floss/frequenz-repo-config-python/commit/2ac253adb6dc36e672e91c805c1f28fe5e7426d1"><code>2ac253a</code></a>
Disable the new <code>check-class-attributes</code> check in pydoclint
0.5.3 (<a
href="https://github.com/frequenz-floss/frequenz-repo-config-python/issues/288">#288</a>)</li>
<li><a
href="https://github.com/frequenz-floss/frequenz-repo-config-python/commit/1660756b2f91f269e7d3da5f8d3e84557732e8b6"><code>1660756</code></a>
Disable the new <code>check-class-attributes</code> check in pydoclint
0.5.3</li>
<li><a
href="https://github.com/frequenz-floss/frequenz-repo-config-python/commit/327879b9b0e631e24194eb50a1fb31e9818a8ce8"><code>327879b</code></a>
Fix credentials not passed or configured the CI workflow (<a
href="https://github.com/frequenz-floss/frequenz-repo-config-python/issues/286">#286</a>)</li>
<li><a
href="https://github.com/frequenz-floss/frequenz-repo-config-python/commit/6195bc7818ddd3b3b9c6721982e3b9ea515eddc0"><code>6195bc7</code></a>
Update release notes</li>
<li><a
href="https://github.com/frequenz-floss/frequenz-repo-config-python/commit/bef233cd03a6945bcb716523df2da976afa02256"><code>bef233c</code></a>
Remove the TODOs from the migration</li>
<li>Additional commits viewable in <a
href="https://github.com/frequenz-floss/frequenz-repo-config-python/compare/v0.9.2...v0.10.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `pytest-asyncio` from 0.23.7 to 0.23.8
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/pytest-dev/pytest-asyncio/releases">pytest-asyncio's
releases</a>.</em></p>
<blockquote>
<h2>pytest-asyncio 0.23.8</h2>
<h1>0.23.8 (2024-07-17)</h1>
<ul>
<li>Fixes a bug that caused duplicate markers in async tests <a
href="https://github.com/pytest-dev/pytest-asyncio/issues/813">#813</a></li>
</ul>
<h2>Known issues</h2>
<p>As of v0.23, pytest-asyncio attaches an asyncio event loop to each
item of the test suite (i.e. session, packages, modules, classes,
functions) and allows tests to be run in those loops when marked
accordingly. Pytest-asyncio currently assumes that async fixture scope
is correlated with the new event loop scope. This prevents fixtures from
being evaluated independently from the event loop scope and breaks some
existing test suites (see <a
href="https://github.com/pytest-dev/pytest-asyncio/issues/706">#706</a>).
For example, a test suite may require all fixtures and tests to run in
the same event loop, but have async fixtures that are set up and torn
down for each module. If you're affected by this issue, please continue
using the v0.21 release, until it is resolved.</p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/pytest-dev/pytest-asyncio/commit/4be86a5174f864f6098872fc9fdf0a557a1b50f8"><code>4be86a5</code></a>
docs: Prepare release of v0.23.8.</li>
<li><a
href="https://github.com/pytest-dev/pytest-asyncio/commit/74b3a0a2057b6faaaf2dfc2d1de785abcf145bcb"><code>74b3a0a</code></a>
Build(deps): Bump exceptiongroup in /dependencies/default</li>
<li><a
href="https://github.com/pytest-dev/pytest-asyncio/commit/b0009ca36ad66ec0bf40b2ad97edaa96fa39e510"><code>b0009ca</code></a>
[build] Declare support for Python 3.13.</li>
<li><a
href="https://github.com/pytest-dev/pytest-asyncio/commit/c747c7db7837d7cb7fef029af92092e20759e217"><code>c747c7d</code></a>
Build(deps): Bump coverage from 7.5.4 to 7.6.0 in
/dependencies/default</li>
<li><a
href="https://github.com/pytest-dev/pytest-asyncio/commit/5c40a1cf8b6f47f47596fcf1117420585517c627"><code>5c40a1c</code></a>
Build(deps): Bump hypothesis in /dependencies/default</li>
<li><a
href="https://github.com/pytest-dev/pytest-asyncio/commit/b735e8a8ef3118109521c7b058596cf7decb03d0"><code>b735e8a</code></a>
build: Remove development dependency on Docker.</li>
<li><a
href="https://github.com/pytest-dev/pytest-asyncio/commit/91171b41c2bd6714955cd3d72e07bd9091f909e2"><code>91171b4</code></a>
ci: Test with CPython 3.13.</li>
<li><a
href="https://github.com/pytest-dev/pytest-asyncio/commit/d572138e097f493c07c84151649d191df5e09ee0"><code>d572138</code></a>
Build(deps): Bump hypothesis in /dependencies/default</li>
<li><a
href="https://github.com/pytest-dev/pytest-asyncio/commit/a89e4d7a899d7587e1efa6cafe9e181b3e2a1d69"><code>a89e4d7</code></a>
Build(deps): Bump certifi in /dependencies/docs</li>
<li><a
href="https://github.com/pytest-dev/pytest-asyncio/commit/b646cc18a222c8043433c38a42c07245fe9735ce"><code>b646cc1</code></a>
[fix] Fixed a bug that causes markers to be duplicated for async test
functions.</li>
<li>Additional commits viewable in <a
href="https://github.com/pytest-dev/pytest-asyncio/compare/v0.23.7...v0.23.8">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>
  • Loading branch information
Marenz authored Aug 1, 2024
2 parents 7973f21 + 0e2238a commit e35ef57
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 17 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,14 @@ jobs:
# The job name should match the name of the `nox` job.
name: Test with nox
needs: ["nox"]
# We skip this job only if nox was also skipped
if: always() && needs.nox.result != 'skipped'
runs-on: ubuntu-20.04
env:
DEPS_RESULT: ${{ needs.nox.result }}
steps:
- name: Return true
run: "true"
- name: Check matrix job result
run: test "$DEPS_RESULT" = "success"

nox-cross-arch:
name: Cross-arch tests with nox
Expand Down Expand Up @@ -202,10 +206,14 @@ jobs:
# The job name should match the name of the `nox-cross-arch` job.
name: Cross-arch tests with nox
needs: ["nox-cross-arch"]
# We skip this job only if nox-cross-arch was also skipped
if: always() && needs.nox-cross-arch.result != 'skipped'
runs-on: ubuntu-20.04
env:
DEPS_RESULT: ${{ needs.nox-cross-arch.result }}
steps:
- name: Return true
run: "true"
- name: Check matrix job result
run: test "$DEPS_RESULT" = "success"

build:
name: Build distribution packages
Expand Down
3 changes: 2 additions & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ plugins:
- literate-nav:
nav_file: SUMMARY.md
- mike:
alias_type: redirect
alias_type: symlink
canonical_version: latest
- mkdocstrings:
default_handler: python
Expand All @@ -110,6 +110,7 @@ plugins:
show_root_members_full_path: true
show_signature_annotations: true
show_source: true
show_symbol_type_toc: true
signature_crossrefs: true
import:
# See https://mkdocstrings.github.io/python/usage/#import for details
Expand Down
29 changes: 17 additions & 12 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
requires = [
"setuptools == 68.1.0",
"setuptools_scm[toml] == 7.1.0",
"frequenz-repo-config[lib] == 0.9.2",
"frequenz-repo-config[lib] == 0.10.0",
]
build-backend = "setuptools.build_meta"

Expand Down Expand Up @@ -54,7 +54,7 @@ dev-flake8 = [
"flake8 == 7.1.0",
"flake8-docstrings == 1.7.0",
"flake8-pyproject == 1.2.3", # For reading the flake8 config from pyproject.toml
"pydoclint == 0.5.3",
"pydoclint == 0.5.6",
"pydocstyle == 6.3.0",
]
dev-formatting = ["black == 24.4.2", "isort == 5.13.2"]
Expand All @@ -65,32 +65,33 @@ dev-mkdocs = [
"mkdocs-gen-files == 0.5.0",
"mkdocs-literate-nav == 0.6.1",
"mkdocs-macros-plugin == 1.0.5",
"mkdocs-material == 9.5.27",
"mkdocstrings[python] == 0.25.1",
"frequenz-repo-config[lib] == 0.9.2",
"mkdocs-material == 9.5.30",
"mkdocstrings[python] == 0.25.2",
"mkdocstrings-python == 1.9.2",
"frequenz-repo-config[lib] == 0.10.0",
]
dev-mypy = [
"mypy == 1.10.1",
"mypy == 1.11.1",
"types-Markdown == 3.6.0.20240316",
"types-python-dateutil==2.9.0.20240316",
# For checking the noxfile, docs/ script, and tests
"frequenz-dispatch[dev-mkdocs,dev-noxfile,dev-pytest]",
]
dev-noxfile = [
"uv == 0.2.18",
"uv == 0.2.32",
"nox == 2024.4.15",
"frequenz-repo-config[lib] == 0.9.2",
"frequenz-repo-config[lib] == 0.10.0",
]
dev-pylint = [
"pylint == 3.2.5",
"pylint == 3.2.6",
# For checking the noxfile, docs/ script, and tests
"frequenz-dispatch[dev-mkdocs,dev-noxfile,dev-pytest]",
]
dev-pytest = [
"pytest == 8.2.2",
"frequenz-repo-config[extra-lint-examples] == 0.9.2",
"pytest == 8.3.2",
"frequenz-repo-config[extra-lint-examples] == 0.10.0",
"pytest-mock == 3.14.0",
"pytest-asyncio == 0.23.7",
"pytest-asyncio == 0.23.8",
"async-solipsism == 0.6",
"time-machine == 2.14.2",
]
Expand Down Expand Up @@ -148,8 +149,12 @@ disable = [
# pylint's unsubscriptable check is buggy and is not needed because
# it is a type-check, for which we already have mypy.
"unsubscriptable-object",
# Checked by mypy
"no-member",
# Checked by flake8
"f-string-without-interpolation",
"line-too-long",
"missing-function-docstring",
"redefined-outer-name",
"unnecessary-lambda-assignment",
"unused-import",
Expand Down

0 comments on commit e35ef57

Please sign in to comment.