-
Notifications
You must be signed in to change notification settings - Fork 72
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Set Py_GIL_DISABLED=1
for free threaded Python on Windows
#310
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
BTW I think we should release a new version that includes this PR ASAP. I think this issue have already been a block reason for the people who want to build free threading extension on windows |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In case it helps: this change looks correct to me, and is the right (and probably the only reasonable) choice to make in my opinion. We made the same change in Meson (xref mesonbuild/meson#13338) and have tested it pretty heavily by now - it's working as advertised, while without the Py_GIL_DISABLED
define, users are getting hard to understand errors at build time.
So +1 for merging this.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. It's unfortunate that we have to do that, but the fix looks good to me.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think the workaround is okay, but we should look into fixing the source of the issue.
The test failures seem unrelated. Unfortunately, they are also failing on |
When free threaded CPython is installed from the official Windows installer it doesn't have the macro `Py_GIL_DISABLED` properly set becuase its `pyconfig.h` file is shared across the co-installed default build. Define the macro when building free threaded Python extensions on Windows so that each individual C API extension doesn't have to work around this limitation. See pypa/setuptools#4662
407bd87
to
de1e624
Compare
The tests seem similar enough, I'll merge this and then see if I have time to fix the CI 🙃 |
I believe @zooba has already tried, and declared the approach in this PR as the solution to be able to build against the official CPython Windows installers until free-threaded becomes the default build - from https://discuss.python.org/t/windows-installer-freethreading-and-building-extension-modules/54391: "The multiple "It looks like you’re using setuptools. They can start detecting the variable and passing it themselves whenever they like." |
This specific issue is a symptom of Python not being designed to have paths shared between multiple builds. I think it makes sense to at least discuss in more depth how this could be avoided. |
Supporting the same set of headers for all platforms (or at minimum, all Windows architectures) and relying on preprocessor switches to choose the build options is a pretty standard way of doing this on Windows. I certainly wouldn't want to switch wholesale to a configure/make model for all Windows users just for the sake of a temporary flag. If there's a second feature that deserves this, we can consider it. |
Hey @FFY00! Are you going to merge this in pypa/setuptools as well? Having a released version of setuptools with this included would help a lot in unblocking CI for a lot of projects. |
Hey, sorry for the late reply, I am not a setuptools maintainer. cc @jaraco |
My new job has been keeping me busy, so I'm just getting caught up on this. Let's see... For future reference, I would have done the merge differently:
I'll get those things repaired and then get the latest changes merged into Setuptools. |
Set `Py_GIL_DISABLED=1` for free threaded Python on Windows.
Bumps [setuptools](https://github.com/pypa/setuptools) from 75.6.0 to 75.7.0. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pypa/setuptools/blob/main/NEWS.rst">setuptools's changelog</a>.</em></p> <blockquote> <h1>v75.7.0</h1> <h2>Features</h2> <ul> <li><code>pypa/distutils#310</code><a href="https://redirect.github.com/pypa/setuptools/issues/4478">#4478</a>)</li> <li>Synced with pypa/distutils@ff11eed0c including bugfix for duplicate CFLAGS and adaption to support Python 3.13 is_abs in the C compiler (<a href="https://redirect.github.com/pypa/setuptools/issues/4669">#4669</a>). (<a href="https://redirect.github.com/pypa/setuptools/issues/4790">#4790</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pypa/setuptools/commit/4e82e8b75c8bd8cba1232a107dc171b4fd2c588c"><code>4e82e8b</code></a> Bump version: 75.6.0 → 75.7.0</li> <li><a href="https://github.com/pypa/setuptools/commit/50b15dbedc3a5665717b9204cd85291152f5b314"><code>50b15db</code></a> Merge pull request <a href="https://redirect.github.com/pypa/setuptools/issues/4787">#4787</a> from Avasam/simplify-typed-assignements</li> <li><a href="https://github.com/pypa/setuptools/commit/86d8c992fc201fae91d135019e5abada183548e2"><code>86d8c99</code></a> Merge pull request <a href="https://redirect.github.com/pypa/setuptools/issues/4790">#4790</a> from pypa/feature/distutils-ff11eed0c</li> <li><a href="https://github.com/pypa/setuptools/commit/c384f184d20e8232a1ce73f88d151b9808b66949"><code>c384f18</code></a> Py_GIL_Disabled was handled previously.</li> <li><a href="https://github.com/pypa/setuptools/commit/fbe834af40de70c181cd2ff5395f8e3488177874"><code>fbe834a</code></a> Merge branch 'main' into feature/distutils-ff11eed0c</li> <li><a href="https://github.com/pypa/setuptools/commit/5ed9d93e77aa3e2c70d8cea1bfeb15549932169f"><code>5ed9d93</code></a> Add news fragment.</li> <li><a href="https://github.com/pypa/setuptools/commit/e94ce0d2aa2d38b67e5c7ee84ca53fde9d4b5b28"><code>e94ce0d</code></a> Merge with pypa/distutils.</li> <li><a href="https://github.com/pypa/setuptools/commit/ff11eed0c36b35bd68615a8ebf36763b7c8a6f28"><code>ff11eed</code></a> Merge pull request <a href="https://redirect.github.com/pypa/distutils/issues/325">pypa/distutils#325</a> from thesamesam/cflags</li> <li><a href="https://github.com/pypa/setuptools/commit/ebfebc096000e16f9d640660047eaec891a98529"><code>ebfebc0</code></a> Merge pull request <a href="https://redirect.github.com/pypa/distutils/issues/302">pypa/distutils#302</a> from adang1345/fix-python313-abs</li> <li><a href="https://github.com/pypa/setuptools/commit/36ce8b329524088cfa53b9a4bffcce3a8d233539"><code>36ce8b3</code></a> Refactor for simplicity.</li> <li>Additional commits viewable in <a href="https://github.com/pypa/setuptools/compare/v75.6.0...v75.7.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=setuptools&package-manager=pip&previous-version=75.6.0&new-version=75.7.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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 this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps [setuptools](https://github.com/pypa/setuptools) from 75.6.0 to 75.7.0. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pypa/setuptools/blob/main/NEWS.rst">setuptools's changelog</a>.</em></p> <blockquote> <h1>v75.7.0</h1> <h2>Features</h2> <ul> <li><code>pypa/distutils#310</code><a href="https://redirect.github.com/pypa/setuptools/issues/4478">#4478</a>)</li> <li>Synced with pypa/distutils@ff11eed0c including bugfix for duplicate CFLAGS and adaption to support Python 3.13 is_abs in the C compiler (<a href="https://redirect.github.com/pypa/setuptools/issues/4669">#4669</a>). (<a href="https://redirect.github.com/pypa/setuptools/issues/4790">#4790</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pypa/setuptools/commit/4e82e8b75c8bd8cba1232a107dc171b4fd2c588c"><code>4e82e8b</code></a> Bump version: 75.6.0 → 75.7.0</li> <li><a href="https://github.com/pypa/setuptools/commit/50b15dbedc3a5665717b9204cd85291152f5b314"><code>50b15db</code></a> Merge pull request <a href="https://redirect.github.com/pypa/setuptools/issues/4787">#4787</a> from Avasam/simplify-typed-assignements</li> <li><a href="https://github.com/pypa/setuptools/commit/86d8c992fc201fae91d135019e5abada183548e2"><code>86d8c99</code></a> Merge pull request <a href="https://redirect.github.com/pypa/setuptools/issues/4790">#4790</a> from pypa/feature/distutils-ff11eed0c</li> <li><a href="https://github.com/pypa/setuptools/commit/c384f184d20e8232a1ce73f88d151b9808b66949"><code>c384f18</code></a> Py_GIL_Disabled was handled previously.</li> <li><a href="https://github.com/pypa/setuptools/commit/fbe834af40de70c181cd2ff5395f8e3488177874"><code>fbe834a</code></a> Merge branch 'main' into feature/distutils-ff11eed0c</li> <li><a href="https://github.com/pypa/setuptools/commit/5ed9d93e77aa3e2c70d8cea1bfeb15549932169f"><code>5ed9d93</code></a> Add news fragment.</li> <li><a href="https://github.com/pypa/setuptools/commit/e94ce0d2aa2d38b67e5c7ee84ca53fde9d4b5b28"><code>e94ce0d</code></a> Merge with pypa/distutils.</li> <li><a href="https://github.com/pypa/setuptools/commit/ff11eed0c36b35bd68615a8ebf36763b7c8a6f28"><code>ff11eed</code></a> Merge pull request <a href="https://redirect.github.com/pypa/distutils/issues/325">pypa/distutils#325</a> from thesamesam/cflags</li> <li><a href="https://github.com/pypa/setuptools/commit/ebfebc096000e16f9d640660047eaec891a98529"><code>ebfebc0</code></a> Merge pull request <a href="https://redirect.github.com/pypa/distutils/issues/302">pypa/distutils#302</a> from adang1345/fix-python313-abs</li> <li><a href="https://github.com/pypa/setuptools/commit/36ce8b329524088cfa53b9a4bffcce3a8d233539"><code>36ce8b3</code></a> Refactor for simplicity.</li> <li>Additional commits viewable in <a href="https://github.com/pypa/setuptools/compare/v75.6.0...v75.7.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=setuptools&package-manager=pip&previous-version=75.6.0&new-version=75.7.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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 this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps the all group with 2 updates: ruamel-yaml and [setuptools](https://github.com/pypa/setuptools). Updates `ruamel-yaml` from 0.18.6 to 0.18.10 Updates `setuptools` from 75.6.0 to 75.7.0 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pypa/setuptools/blob/main/NEWS.rst">setuptools's changelog</a>.</em></p> <blockquote> <h1>v75.7.0</h1> <h2>Features</h2> <ul> <li><code>pypa/distutils#310</code><a href="https://redirect.github.com/pypa/setuptools/issues/4478">#4478</a>)</li> <li>Synced with pypa/distutils@ff11eed0c including bugfix for duplicate CFLAGS and adaption to support Python 3.13 is_abs in the C compiler (<a href="https://redirect.github.com/pypa/setuptools/issues/4669">#4669</a>). (<a href="https://redirect.github.com/pypa/setuptools/issues/4790">#4790</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pypa/setuptools/commit/4e82e8b75c8bd8cba1232a107dc171b4fd2c588c"><code>4e82e8b</code></a> Bump version: 75.6.0 → 75.7.0</li> <li><a href="https://github.com/pypa/setuptools/commit/50b15dbedc3a5665717b9204cd85291152f5b314"><code>50b15db</code></a> Merge pull request <a href="https://redirect.github.com/pypa/setuptools/issues/4787">#4787</a> from Avasam/simplify-typed-assignements</li> <li><a href="https://github.com/pypa/setuptools/commit/86d8c992fc201fae91d135019e5abada183548e2"><code>86d8c99</code></a> Merge pull request <a href="https://redirect.github.com/pypa/setuptools/issues/4790">#4790</a> from pypa/feature/distutils-ff11eed0c</li> <li><a href="https://github.com/pypa/setuptools/commit/c384f184d20e8232a1ce73f88d151b9808b66949"><code>c384f18</code></a> Py_GIL_Disabled was handled previously.</li> <li><a href="https://github.com/pypa/setuptools/commit/fbe834af40de70c181cd2ff5395f8e3488177874"><code>fbe834a</code></a> Merge branch 'main' into feature/distutils-ff11eed0c</li> <li><a href="https://github.com/pypa/setuptools/commit/5ed9d93e77aa3e2c70d8cea1bfeb15549932169f"><code>5ed9d93</code></a> Add news fragment.</li> <li><a href="https://github.com/pypa/setuptools/commit/e94ce0d2aa2d38b67e5c7ee84ca53fde9d4b5b28"><code>e94ce0d</code></a> Merge with pypa/distutils.</li> <li><a href="https://github.com/pypa/setuptools/commit/ff11eed0c36b35bd68615a8ebf36763b7c8a6f28"><code>ff11eed</code></a> Merge pull request <a href="https://redirect.github.com/pypa/distutils/issues/325">pypa/distutils#325</a> from thesamesam/cflags</li> <li><a href="https://github.com/pypa/setuptools/commit/ebfebc096000e16f9d640660047eaec891a98529"><code>ebfebc0</code></a> Merge pull request <a href="https://redirect.github.com/pypa/distutils/issues/302">pypa/distutils#302</a> from adang1345/fix-python313-abs</li> <li><a href="https://github.com/pypa/setuptools/commit/36ce8b329524088cfa53b9a4bffcce3a8d233539"><code>36ce8b3</code></a> Refactor for simplicity.</li> <li>Additional commits viewable in <a href="https://github.com/pypa/setuptools/compare/v75.6.0...v75.7.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>
Bumps [setuptools](https://github.com/pypa/setuptools) from 75.6.0 to 75.7.0. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pypa/setuptools/blob/main/NEWS.rst">setuptools's changelog</a>.</em></p> <blockquote> <h1>v75.7.0</h1> <h2>Features</h2> <ul> <li><code>pypa/distutils#310</code><a href="https://redirect.github.com/pypa/setuptools/issues/4478">#4478</a>)</li> <li>Synced with pypa/distutils@ff11eed0c including bugfix for duplicate CFLAGS and adaption to support Python 3.13 is_abs in the C compiler (<a href="https://redirect.github.com/pypa/setuptools/issues/4669">#4669</a>). (<a href="https://redirect.github.com/pypa/setuptools/issues/4790">#4790</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pypa/setuptools/commit/4e82e8b75c8bd8cba1232a107dc171b4fd2c588c"><code>4e82e8b</code></a> Bump version: 75.6.0 → 75.7.0</li> <li><a href="https://github.com/pypa/setuptools/commit/50b15dbedc3a5665717b9204cd85291152f5b314"><code>50b15db</code></a> Merge pull request <a href="https://redirect.github.com/pypa/setuptools/issues/4787">#4787</a> from Avasam/simplify-typed-assignements</li> <li><a href="https://github.com/pypa/setuptools/commit/86d8c992fc201fae91d135019e5abada183548e2"><code>86d8c99</code></a> Merge pull request <a href="https://redirect.github.com/pypa/setuptools/issues/4790">#4790</a> from pypa/feature/distutils-ff11eed0c</li> <li><a href="https://github.com/pypa/setuptools/commit/c384f184d20e8232a1ce73f88d151b9808b66949"><code>c384f18</code></a> Py_GIL_Disabled was handled previously.</li> <li><a href="https://github.com/pypa/setuptools/commit/fbe834af40de70c181cd2ff5395f8e3488177874"><code>fbe834a</code></a> Merge branch 'main' into feature/distutils-ff11eed0c</li> <li><a href="https://github.com/pypa/setuptools/commit/5ed9d93e77aa3e2c70d8cea1bfeb15549932169f"><code>5ed9d93</code></a> Add news fragment.</li> <li><a href="https://github.com/pypa/setuptools/commit/e94ce0d2aa2d38b67e5c7ee84ca53fde9d4b5b28"><code>e94ce0d</code></a> Merge with pypa/distutils.</li> <li><a href="https://github.com/pypa/setuptools/commit/ff11eed0c36b35bd68615a8ebf36763b7c8a6f28"><code>ff11eed</code></a> Merge pull request <a href="https://redirect.github.com/pypa/distutils/issues/325">pypa/distutils#325</a> from thesamesam/cflags</li> <li><a href="https://github.com/pypa/setuptools/commit/ebfebc096000e16f9d640660047eaec891a98529"><code>ebfebc0</code></a> Merge pull request <a href="https://redirect.github.com/pypa/distutils/issues/302">pypa/distutils#302</a> from adang1345/fix-python313-abs</li> <li><a href="https://github.com/pypa/setuptools/commit/36ce8b329524088cfa53b9a4bffcce3a8d233539"><code>36ce8b3</code></a> Refactor for simplicity.</li> <li>Additional commits viewable in <a href="https://github.com/pypa/setuptools/compare/v75.6.0...v75.7.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=setuptools&package-manager=pip&previous-version=75.6.0&new-version=75.7.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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 this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details>
Bumps [setuptools](https://github.com/pypa/setuptools) from 75.6.0 to 75.7.0. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pypa/setuptools/blob/main/NEWS.rst">setuptools's changelog</a>.</em></p> <blockquote> <h1>v75.7.0</h1> <h2>Features</h2> <ul> <li><code>pypa/distutils#310</code><a href="https://redirect.github.com/pypa/setuptools/issues/4478">#4478</a>)</li> <li>Synced with pypa/distutils@ff11eed0c including bugfix for duplicate CFLAGS and adaption to support Python 3.13 is_abs in the C compiler (<a href="https://redirect.github.com/pypa/setuptools/issues/4669">#4669</a>). (<a href="https://redirect.github.com/pypa/setuptools/issues/4790">#4790</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pypa/setuptools/commit/4e82e8b75c8bd8cba1232a107dc171b4fd2c588c"><code>4e82e8b</code></a> Bump version: 75.6.0 → 75.7.0</li> <li><a href="https://github.com/pypa/setuptools/commit/50b15dbedc3a5665717b9204cd85291152f5b314"><code>50b15db</code></a> Merge pull request <a href="https://redirect.github.com/pypa/setuptools/issues/4787">#4787</a> from Avasam/simplify-typed-assignements</li> <li><a href="https://github.com/pypa/setuptools/commit/86d8c992fc201fae91d135019e5abada183548e2"><code>86d8c99</code></a> Merge pull request <a href="https://redirect.github.com/pypa/setuptools/issues/4790">#4790</a> from pypa/feature/distutils-ff11eed0c</li> <li><a href="https://github.com/pypa/setuptools/commit/c384f184d20e8232a1ce73f88d151b9808b66949"><code>c384f18</code></a> Py_GIL_Disabled was handled previously.</li> <li><a href="https://github.com/pypa/setuptools/commit/fbe834af40de70c181cd2ff5395f8e3488177874"><code>fbe834a</code></a> Merge branch 'main' into feature/distutils-ff11eed0c</li> <li><a href="https://github.com/pypa/setuptools/commit/5ed9d93e77aa3e2c70d8cea1bfeb15549932169f"><code>5ed9d93</code></a> Add news fragment.</li> <li><a href="https://github.com/pypa/setuptools/commit/e94ce0d2aa2d38b67e5c7ee84ca53fde9d4b5b28"><code>e94ce0d</code></a> Merge with pypa/distutils.</li> <li><a href="https://github.com/pypa/setuptools/commit/ff11eed0c36b35bd68615a8ebf36763b7c8a6f28"><code>ff11eed</code></a> Merge pull request <a href="https://redirect.github.com/pypa/distutils/issues/325">pypa/distutils#325</a> from thesamesam/cflags</li> <li><a href="https://github.com/pypa/setuptools/commit/ebfebc096000e16f9d640660047eaec891a98529"><code>ebfebc0</code></a> Merge pull request <a href="https://redirect.github.com/pypa/distutils/issues/302">pypa/distutils#302</a> from adang1345/fix-python313-abs</li> <li><a href="https://github.com/pypa/setuptools/commit/36ce8b329524088cfa53b9a4bffcce3a8d233539"><code>36ce8b3</code></a> Refactor for simplicity.</li> <li>Additional commits viewable in <a href="https://github.com/pypa/setuptools/compare/v75.6.0...v75.7.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=setuptools&package-manager=pip&previous-version=75.6.0&new-version=75.7.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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 this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details>
…rc/bindings/python (#28319) Updates the requirements on [setuptools](https://github.com/pypa/setuptools) to permit the latest version. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pypa/setuptools/blob/main/NEWS.rst">setuptools's changelog</a>.</em></p> <blockquote> <h1>v75.7.0</h1> <h2>Features</h2> <ul> <li><code>pypa/distutils#310</code><a href="https://redirect.github.com/pypa/setuptools/issues/4478">#4478</a>)</li> <li>Synced with pypa/distutils@ff11eed0c including bugfix for duplicate CFLAGS and adaption to support Python 3.13 is_abs in the C compiler (<a href="https://redirect.github.com/pypa/setuptools/issues/4669">#4669</a>). (<a href="https://redirect.github.com/pypa/setuptools/issues/4790">#4790</a>)</li> </ul> <h1>v75.6.0</h1> <h2>Features</h2> <ul> <li>Preserve original <code>PKG-INFO</code> into <code>METADATA</code> when creating wheel (instead of calling <code>wheel.metadata.pkginfo_to_metadata</code>). This helps to be more compliant with the flow specified in PEP 517. (<a href="https://redirect.github.com/pypa/setuptools/issues/4701">#4701</a>)</li> <li>Changed the <code>WindowsSdkVersion</code>, <code>FrameworkVersion32</code> and <code>FrameworkVersion64</code> properties of <code>setuptools.msvc.PlatformInfo</code> to return an empty <code>tuple</code> instead of <code>None</code> as a fallthrough case -- by :user:<code>Avasam</code> (<a href="https://redirect.github.com/pypa/setuptools/issues/4754">#4754</a>)</li> </ul> <h1>v75.5.0</h1> <h2>Features</h2> <ul> <li>Removed support for <code>SETUPTOOLS_DANGEROUSLY_SKIP_PYPROJECT_VALIDATION</code>, as it is deemed prone to errors. (<a href="https://redirect.github.com/pypa/setuptools/issues/4746">#4746</a>)</li> </ul> <h1>v75.4.0</h1> <h2>Features</h2> <ul> <li> <p>Added support for the environment variable <code>SETUPTOOLS_DANGEROUSLY_SKIP_PYPROJECT_VALIDATION=true</code>, allowing users to bypass the validation of <code>pyproject.toml</code>. This option should be used only as a last resort when resolving dependency issues, as it may lead to improper functioning. Users who enable this setting are responsible for ensuring that <code>pyproject.toml</code> complies with setuptools requirements. (<a href="https://redirect.github.com/pypa/setuptools/issues/4611">#4611</a>)</p> <p>.. attention:: This environment variable was removed in a later version of <code>setuptools</code>.</p> </li> <li> <p>Require Python 3.9 or later. (<a href="https://redirect.github.com/pypa/setuptools/issues/4718">#4718</a>)</p> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pypa/setuptools/commit/4e82e8b75c8bd8cba1232a107dc171b4fd2c588c"><code>4e82e8b</code></a> Bump version: 75.6.0 → 75.7.0</li> <li><a href="https://github.com/pypa/setuptools/commit/50b15dbedc3a5665717b9204cd85291152f5b314"><code>50b15db</code></a> Merge pull request <a href="https://redirect.github.com/pypa/setuptools/issues/4787">#4787</a> from Avasam/simplify-typed-assignements</li> <li><a href="https://github.com/pypa/setuptools/commit/86d8c992fc201fae91d135019e5abada183548e2"><code>86d8c99</code></a> Merge pull request <a href="https://redirect.github.com/pypa/setuptools/issues/4790">#4790</a> from pypa/feature/distutils-ff11eed0c</li> <li><a href="https://github.com/pypa/setuptools/commit/c384f184d20e8232a1ce73f88d151b9808b66949"><code>c384f18</code></a> Py_GIL_Disabled was handled previously.</li> <li><a href="https://github.com/pypa/setuptools/commit/fbe834af40de70c181cd2ff5395f8e3488177874"><code>fbe834a</code></a> Merge branch 'main' into feature/distutils-ff11eed0c</li> <li><a href="https://github.com/pypa/setuptools/commit/5ed9d93e77aa3e2c70d8cea1bfeb15549932169f"><code>5ed9d93</code></a> Add news fragment.</li> <li><a href="https://github.com/pypa/setuptools/commit/e94ce0d2aa2d38b67e5c7ee84ca53fde9d4b5b28"><code>e94ce0d</code></a> Merge with pypa/distutils.</li> <li><a href="https://github.com/pypa/setuptools/commit/ff11eed0c36b35bd68615a8ebf36763b7c8a6f28"><code>ff11eed</code></a> Merge pull request <a href="https://redirect.github.com/pypa/distutils/issues/325">pypa/distutils#325</a> from thesamesam/cflags</li> <li><a href="https://github.com/pypa/setuptools/commit/ebfebc096000e16f9d640660047eaec891a98529"><code>ebfebc0</code></a> Merge pull request <a href="https://redirect.github.com/pypa/distutils/issues/302">pypa/distutils#302</a> from adang1345/fix-python313-abs</li> <li><a href="https://github.com/pypa/setuptools/commit/36ce8b329524088cfa53b9a4bffcce3a8d233539"><code>36ce8b3</code></a> Refactor for simplicity.</li> <li>Additional commits viewable in <a href="https://github.com/pypa/setuptools/compare/v70.1.0...v75.7.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 this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
…rc/bindings/python (#28369) Updates the requirements on [setuptools](https://github.com/pypa/setuptools) to permit the latest version. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pypa/setuptools/blob/main/NEWS.rst">setuptools's changelog</a>.</em></p> <blockquote> <h1>v75.8.0</h1> <h2>Features</h2> <ul> <li>Implemented <code>Dynamic</code> field for core metadata (as introduced in PEP 643). The existing implementation is currently experimental and the exact approach may change in future releases. (<a href="https://redirect.github.com/pypa/setuptools/issues/4698">#4698</a>)</li> </ul> <h1>v75.7.0</h1> <h2>Features</h2> <ul> <li><code>pypa/distutils#310</code><a href="https://redirect.github.com/pypa/setuptools/issues/4478">#4478</a>)</li> <li>Synced with pypa/distutils@ff11eed0c including bugfix for duplicate CFLAGS and adaption to support Python 3.13 is_abs in the C compiler (<a href="https://redirect.github.com/pypa/setuptools/issues/4669">#4669</a>). (<a href="https://redirect.github.com/pypa/setuptools/issues/4790">#4790</a>)</li> </ul> <h1>v75.6.0</h1> <h2>Features</h2> <ul> <li>Preserve original <code>PKG-INFO</code> into <code>METADATA</code> when creating wheel (instead of calling <code>wheel.metadata.pkginfo_to_metadata</code>). This helps to be more compliant with the flow specified in PEP 517. (<a href="https://redirect.github.com/pypa/setuptools/issues/4701">#4701</a>)</li> <li>Changed the <code>WindowsSdkVersion</code>, <code>FrameworkVersion32</code> and <code>FrameworkVersion64</code> properties of <code>setuptools.msvc.PlatformInfo</code> to return an empty <code>tuple</code> instead of <code>None</code> as a fallthrough case -- by :user:<code>Avasam</code> (<a href="https://redirect.github.com/pypa/setuptools/issues/4754">#4754</a>)</li> </ul> <h1>v75.5.0</h1> <h2>Features</h2> <ul> <li>Removed support for <code>SETUPTOOLS_DANGEROUSLY_SKIP_PYPROJECT_VALIDATION</code>, as it is deemed prone to errors. (<a href="https://redirect.github.com/pypa/setuptools/issues/4746">#4746</a>)</li> </ul> <h1>v75.4.0</h1> <h2>Features</h2> <ul> <li>Added support for the environment variable</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pypa/setuptools/commit/5c9d9809dec1b20e2a9da6b4a06355fd6f87a190"><code>5c9d980</code></a> Bump version: 75.7.0 → 75.8.0</li> <li><a href="https://github.com/pypa/setuptools/commit/72c422261b40f2b95a8be6605cc7dd93cec81794"><code>72c4222</code></a> Avoid using Any in function</li> <li><a href="https://github.com/pypa/setuptools/commit/1c61d4799438677c7cfaaccf281312bfb1aee9b3"><code>1c61d47</code></a> Add news fragments for PEP 643</li> <li><a href="https://github.com/pypa/setuptools/commit/f285d01e2661b01e4947a4dca7704790b65f2967"><code>f285d01</code></a> Implement PEP 643 (<code>Dynamic</code> field for core metadata) (<a href="https://redirect.github.com/pypa/setuptools/issues/4698">#4698</a>)</li> <li><a href="https://github.com/pypa/setuptools/commit/a50f6e2e1e8b4610adde709079bec17ad0944197"><code>a50f6e2</code></a> Fix _static.Dict.<strong>ior</strong> for Python 3.8</li> <li><a href="https://github.com/pypa/setuptools/commit/b055895fa337a6e03a29c2ea6493b6b778d2ba46"><code>b055895</code></a> Add extra tests for static/dynamic metadata</li> <li><a href="https://github.com/pypa/setuptools/commit/770b4fc8f6248d862629028f5ee4218975f9516b"><code>770b4fc</code></a> Remove test workaround for unmarked static values from pyproject.toml</li> <li><a href="https://github.com/pypa/setuptools/commit/8b22d73be5e23a9611398d81aedc5164115940ce"><code>8b22d73</code></a> Mark values from pyproject.toml as static</li> <li><a href="https://github.com/pypa/setuptools/commit/f699fd842e3ddedbe937ee33b0bd6ad28e735664"><code>f699fd8</code></a> Fix spelling error</li> <li><a href="https://github.com/pypa/setuptools/commit/8b4c8a3c95f43d771d0fa6e4ebceea3436bc70f7"><code>8b4c8a3</code></a> Add tests for static 'attr' directive</li> <li>Additional commits viewable in <a href="https://github.com/pypa/setuptools/compare/v70.1.0...v75.8.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 this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
…irectory with 2 updates (#435) Bumps the package-dependencies group with 2 updates in the /rats directory: [setuptools](https://github.com/pypa/setuptools) and [ruff](https://github.com/astral-sh/ruff). Updates `setuptools` from 75.6.0 to 75.8.0 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pypa/setuptools/blob/main/NEWS.rst">setuptools's changelog</a>.</em></p> <blockquote> <h1>v75.8.0</h1> <h2>Features</h2> <ul> <li>Implemented <code>Dynamic</code> field for core metadata (as introduced in PEP 643). The existing implementation is currently experimental and the exact approach may change in future releases. (<a href="https://redirect.github.com/pypa/setuptools/issues/4698">#4698</a>)</li> </ul> <h1>v75.7.0</h1> <h2>Features</h2> <ul> <li><code>pypa/distutils#310</code><a href="https://redirect.github.com/pypa/setuptools/issues/4478">#4478</a>)</li> <li>Synced with pypa/distutils@ff11eed0c including bugfix for duplicate CFLAGS and adaption to support Python 3.13 is_abs in the C compiler (<a href="https://redirect.github.com/pypa/setuptools/issues/4669">#4669</a>). (<a href="https://redirect.github.com/pypa/setuptools/issues/4790">#4790</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pypa/setuptools/commit/5c9d9809dec1b20e2a9da6b4a06355fd6f87a190"><code>5c9d980</code></a> Bump version: 75.7.0 → 75.8.0</li> <li><a href="https://github.com/pypa/setuptools/commit/72c422261b40f2b95a8be6605cc7dd93cec81794"><code>72c4222</code></a> Avoid using Any in function</li> <li><a href="https://github.com/pypa/setuptools/commit/1c61d4799438677c7cfaaccf281312bfb1aee9b3"><code>1c61d47</code></a> Add news fragments for PEP 643</li> <li><a href="https://github.com/pypa/setuptools/commit/f285d01e2661b01e4947a4dca7704790b65f2967"><code>f285d01</code></a> Implement PEP 643 (<code>Dynamic</code> field for core metadata) (<a href="https://redirect.github.com/pypa/setuptools/issues/4698">#4698</a>)</li> <li><a href="https://github.com/pypa/setuptools/commit/a50f6e2e1e8b4610adde709079bec17ad0944197"><code>a50f6e2</code></a> Fix _static.Dict.<strong>ior</strong> for Python 3.8</li> <li><a href="https://github.com/pypa/setuptools/commit/b055895fa337a6e03a29c2ea6493b6b778d2ba46"><code>b055895</code></a> Add extra tests for static/dynamic metadata</li> <li><a href="https://github.com/pypa/setuptools/commit/770b4fc8f6248d862629028f5ee4218975f9516b"><code>770b4fc</code></a> Remove test workaround for unmarked static values from pyproject.toml</li> <li><a href="https://github.com/pypa/setuptools/commit/8b22d73be5e23a9611398d81aedc5164115940ce"><code>8b22d73</code></a> Mark values from pyproject.toml as static</li> <li><a href="https://github.com/pypa/setuptools/commit/f699fd842e3ddedbe937ee33b0bd6ad28e735664"><code>f699fd8</code></a> Fix spelling error</li> <li><a href="https://github.com/pypa/setuptools/commit/8b4c8a3c95f43d771d0fa6e4ebceea3436bc70f7"><code>8b4c8a3</code></a> Add tests for static 'attr' directive</li> <li>Additional commits viewable in <a href="https://github.com/pypa/setuptools/compare/v75.6.0...v75.8.0">compare view</a></li> </ul> </details> <br /> Updates `ruff` from 0.8.5 to 0.9.1 <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.9.1</h2> <h2>Release Notes</h2> <h3>Preview features</h3> <ul> <li>[<code>pycodestyle</code>] Run <code>too-many-newlines-at-end-of-file</code> on each cell in notebooks (<code>W391</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/15308">#15308</a>)</li> <li>[<code>ruff</code>] Omit diagnostic for shadowed private function parameters in <code>used-dummy-variable</code> (<code>RUF052</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/15376">#15376</a>)</li> </ul> <h3>Rule changes</h3> <ul> <li>[<code>flake8-bugbear</code>] Improve <code>assert-raises-exception</code> message (<code>B017</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/15389">#15389</a>)</li> </ul> <h3>Formatter</h3> <ul> <li>Preserve trailing end-of line comments for the last string literal in implicitly concatenated strings (<a href="https://redirect.github.com/astral-sh/ruff/pull/15378">#15378</a>)</li> </ul> <h3>Server</h3> <ul> <li>Fix a bug where the server and client notebooks were out of sync after reordering cells (<a href="https://redirect.github.com/astral-sh/ruff/pull/15398">#15398</a>)</li> </ul> <h3>Bug fixes</h3> <ul> <li>[<code>flake8-pie</code>] Correctly remove wrapping parentheses (<code>PIE800</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/15394">#15394</a>)</li> <li>[<code>pyupgrade</code>] Handle comments and multiline expressions correctly (<code>UP037</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/15337">#15337</a>)</li> </ul> <h2>Contributors</h2> <ul> <li><a href="https://github.com/AntoineD"><code>@AntoineD</code></a></li> <li><a href="https://github.com/InSyncWithFoo"><code>@InSyncWithFoo</code></a></li> <li><a href="https://github.com/MichaReiser"><code>@MichaReiser</code></a></li> <li><a href="https://github.com/calumy"><code>@calumy</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/dylwil3"><code>@dylwil3</code></a></li> <li><a href="https://github.com/sharkdp"><code>@sharkdp</code></a></li> <li><a href="https://github.com/tjkuson"><code>@tjkuson</code></a></li> </ul> <h2>Install ruff 0.9.1</h2> <h3>Install prebuilt binaries via shell script</h3> <pre lang="sh"><code>curl --proto '=https' --tlsv1.2 -LsSf https://github.com/astral-sh/ruff/releases/download/0.9.1/ruff-installer.sh | sh </code></pre> <h3>Install prebuilt binaries via powershell script</h3> <pre lang="sh"><code>powershell -ExecutionPolicy ByPass -c "irm https://github.com/astral-sh/ruff/releases/download/0.9.1/ruff-installer.ps1 | iex" </code></pre> <!-- 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.9.1</h2> <h3>Preview features</h3> <ul> <li>[<code>pycodestyle</code>] Run <code>too-many-newlines-at-end-of-file</code> on each cell in notebooks (<code>W391</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/15308">#15308</a>)</li> <li>[<code>ruff</code>] Omit diagnostic for shadowed private function parameters in <code>used-dummy-variable</code> (<code>RUF052</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/15376">#15376</a>)</li> </ul> <h3>Rule changes</h3> <ul> <li>[<code>flake8-bugbear</code>] Improve <code>assert-raises-exception</code> message (<code>B017</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/15389">#15389</a>)</li> </ul> <h3>Formatter</h3> <ul> <li>Preserve trailing end-of line comments for the last string literal in implicitly concatenated strings (<a href="https://redirect.github.com/astral-sh/ruff/pull/15378">#15378</a>)</li> </ul> <h3>Server</h3> <ul> <li>Fix a bug where the server and client notebooks were out of sync after reordering cells (<a href="https://redirect.github.com/astral-sh/ruff/pull/15398">#15398</a>)</li> </ul> <h3>Bug fixes</h3> <ul> <li>[<code>flake8-pie</code>] Correctly remove wrapping parentheses (<code>PIE800</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/15394">#15394</a>)</li> <li>[<code>pyupgrade</code>] Handle comments and multiline expressions correctly (<code>UP037</code>) (<a href="https://redirect.github.com/astral-sh/ruff/pull/15337">#15337</a>)</li> </ul> <h2>0.9.0</h2> <p>Check out the <a href="https://astral.sh/blog/ruff-v0.9.0">blog post</a> for a migration guide and overview of the changes!</p> <h3>Breaking changes</h3> <p>Ruff now formats your code according to the 2025 style guide. As a result, your code might now get formatted differently. See the formatter section for a detailed list of changes.</p> <p>This release doesn’t remove or remap any existing stable rules.</p> <h3>Stabilization</h3> <p>The following rules have been stabilized and are no longer in preview:</p> <ul> <li><a href="https://docs.astral.sh/ruff/rules/stdlib-module-shadowing/"><code>stdlib-module-shadowing</code></a> (<code>A005</code>). This rule has also been renamed: previously, it was called <code>builtin-module-shadowing</code>.</li> <li><a href="https://docs.astral.sh/ruff/rules/builtin-lambda-argument-shadowing/"><code>builtin-lambda-argument-shadowing</code></a> (<code>A006</code>)</li> <li><a href="https://docs.astral.sh/ruff/rules/slice-to-remove-prefix-or-suffix/"><code>slice-to-remove-prefix-or-suffix</code></a> (<code>FURB188</code>)</li> <li><a href="https://docs.astral.sh/ruff/rules/boolean-chained-comparison/"><code>boolean-chained-comparison</code></a> (<code>PLR1716</code>)</li> <li><a href="https://docs.astral.sh/ruff/rules/decimal-from-float-literal/"><code>decimal-from-float-literal</code></a> (<code>RUF032</code>)</li> <li><a href="https://docs.astral.sh/ruff/rules/post-init-default/"><code>post-init-default</code></a> (<code>RUF033</code>)</li> <li><a href="https://docs.astral.sh/ruff/rules/useless-if-else/"><code>useless-if-else</code></a> (<code>RUF034</code>)</li> </ul> <p>The following behaviors have been stabilized:</p> <ul> <li><a href="https://docs.astral.sh/ruff/rules/pytest-parametrize-names-wrong-type/"><code>pytest-parametrize-names-wrong-type</code></a> (<code>PT006</code>): Detect <a href="https://docs.pytest.org/en/7.1.x/how-to/parametrize.html#parametrize"><code>pytest.parametrize</code></a> calls outside decorators and calls with keyword arguments.</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/astral-sh/ruff/commit/12f86f39a4691e44b62c11dd4bc376a16e358f43"><code>12f86f3</code></a> Ruff 0.9.1 (<a href="https://redirect.github.com/astral-sh/ruff/issues/15407">#15407</a>)</li> <li><a href="https://github.com/astral-sh/ruff/commit/2b28d566a4a891339a43a35c818f5b155c0b9edd"><code>2b28d56</code></a> Associate a trailing end-of-line comment in a parenthesized implicit concaten...</li> <li><a href="https://github.com/astral-sh/ruff/commit/adca7bd95cf315ca14e34ab3eac6deb73e154f1d"><code>adca7bd</code></a> Remove pygments pin (<a href="https://redirect.github.com/astral-sh/ruff/issues/15404">#15404</a>)</li> <li><a href="https://github.com/astral-sh/ruff/commit/6b98a26452ec1bde8b445c82c097d03c78213c1d"><code>6b98a26</code></a> [red-knot] Support <code>assert_type</code> (<a href="https://redirect.github.com/astral-sh/ruff/issues/15194">#15194</a>)</li> <li><a href="https://github.com/astral-sh/ruff/commit/c87463842a6e19976b6f3401137b6932e4a7bb71"><code>c874638</code></a> [red-knot] Move tuple-containing-Never tests to Markdown (<a href="https://redirect.github.com/astral-sh/ruff/issues/15402">#15402</a>)</li> <li><a href="https://github.com/astral-sh/ruff/commit/c364b586f9177a22f4556f86e434f21dfaf82c38"><code>c364b58</code></a> [<code>flake8-pie</code>] Correctly remove wrapping parentheses (<code>PIE800</code>) (<a href="https://redirect.github.com/astral-sh/ruff/issues/15394">#15394</a>)</li> <li><a href="https://github.com/astral-sh/ruff/commit/73d424ee5e6963d577e196d71c3b19c82e84e612"><code>73d424e</code></a> Fix outdated doc for handling the default file types with the pre-commit hook...</li> <li><a href="https://github.com/astral-sh/ruff/commit/6e9ff445fd8559972b423370de20563a9c2db8d4"><code>6e9ff44</code></a> Insert the cells from the <code>start</code> position (<a href="https://redirect.github.com/astral-sh/ruff/issues/15398">#15398</a>)</li> <li><a href="https://github.com/astral-sh/ruff/commit/f2c3ddc5eaa2ce107a200e134be82fc36afce06b"><code>f2c3ddc</code></a> [red-knot] Move intersection type tests to Markdown (<a href="https://redirect.github.com/astral-sh/ruff/issues/15396">#15396</a>)</li> <li><a href="https://github.com/astral-sh/ruff/commit/b861551b6ac928c25136d76151162f6fefc9cf71"><code>b861551</code></a> Remove unnecessary backticks (<a href="https://redirect.github.com/astral-sh/ruff/issues/15393">#15393</a>)</li> <li>Additional commits viewable in <a href="https://github.com/astral-sh/ruff/compare/0.8.5...0.9.1">compare view</a></li> </ul> </details> <br /> Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions </details> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
…rc/bindings/python (openvinotoolkit#28319) Updates the requirements on [setuptools](https://github.com/pypa/setuptools) to permit the latest version. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pypa/setuptools/blob/main/NEWS.rst">setuptools's changelog</a>.</em></p> <blockquote> <h1>v75.7.0</h1> <h2>Features</h2> <ul> <li><code>pypa/distutils#310</code><a href="https://redirect.github.com/pypa/setuptools/issues/4478">#4478</a>)</li> <li>Synced with pypa/distutils@ff11eed0c including bugfix for duplicate CFLAGS and adaption to support Python 3.13 is_abs in the C compiler (<a href="https://redirect.github.com/pypa/setuptools/issues/4669">#4669</a>). (<a href="https://redirect.github.com/pypa/setuptools/issues/4790">#4790</a>)</li> </ul> <h1>v75.6.0</h1> <h2>Features</h2> <ul> <li>Preserve original <code>PKG-INFO</code> into <code>METADATA</code> when creating wheel (instead of calling <code>wheel.metadata.pkginfo_to_metadata</code>). This helps to be more compliant with the flow specified in PEP 517. (<a href="https://redirect.github.com/pypa/setuptools/issues/4701">#4701</a>)</li> <li>Changed the <code>WindowsSdkVersion</code>, <code>FrameworkVersion32</code> and <code>FrameworkVersion64</code> properties of <code>setuptools.msvc.PlatformInfo</code> to return an empty <code>tuple</code> instead of <code>None</code> as a fallthrough case -- by :user:<code>Avasam</code> (<a href="https://redirect.github.com/pypa/setuptools/issues/4754">#4754</a>)</li> </ul> <h1>v75.5.0</h1> <h2>Features</h2> <ul> <li>Removed support for <code>SETUPTOOLS_DANGEROUSLY_SKIP_PYPROJECT_VALIDATION</code>, as it is deemed prone to errors. (<a href="https://redirect.github.com/pypa/setuptools/issues/4746">#4746</a>)</li> </ul> <h1>v75.4.0</h1> <h2>Features</h2> <ul> <li> <p>Added support for the environment variable <code>SETUPTOOLS_DANGEROUSLY_SKIP_PYPROJECT_VALIDATION=true</code>, allowing users to bypass the validation of <code>pyproject.toml</code>. This option should be used only as a last resort when resolving dependency issues, as it may lead to improper functioning. Users who enable this setting are responsible for ensuring that <code>pyproject.toml</code> complies with setuptools requirements. (<a href="https://redirect.github.com/pypa/setuptools/issues/4611">#4611</a>)</p> <p>.. attention:: This environment variable was removed in a later version of <code>setuptools</code>.</p> </li> <li> <p>Require Python 3.9 or later. (<a href="https://redirect.github.com/pypa/setuptools/issues/4718">#4718</a>)</p> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pypa/setuptools/commit/4e82e8b75c8bd8cba1232a107dc171b4fd2c588c"><code>4e82e8b</code></a> Bump version: 75.6.0 → 75.7.0</li> <li><a href="https://github.com/pypa/setuptools/commit/50b15dbedc3a5665717b9204cd85291152f5b314"><code>50b15db</code></a> Merge pull request <a href="https://redirect.github.com/pypa/setuptools/issues/4787">#4787</a> from Avasam/simplify-typed-assignements</li> <li><a href="https://github.com/pypa/setuptools/commit/86d8c992fc201fae91d135019e5abada183548e2"><code>86d8c99</code></a> Merge pull request <a href="https://redirect.github.com/pypa/setuptools/issues/4790">#4790</a> from pypa/feature/distutils-ff11eed0c</li> <li><a href="https://github.com/pypa/setuptools/commit/c384f184d20e8232a1ce73f88d151b9808b66949"><code>c384f18</code></a> Py_GIL_Disabled was handled previously.</li> <li><a href="https://github.com/pypa/setuptools/commit/fbe834af40de70c181cd2ff5395f8e3488177874"><code>fbe834a</code></a> Merge branch 'main' into feature/distutils-ff11eed0c</li> <li><a href="https://github.com/pypa/setuptools/commit/5ed9d93e77aa3e2c70d8cea1bfeb15549932169f"><code>5ed9d93</code></a> Add news fragment.</li> <li><a href="https://github.com/pypa/setuptools/commit/e94ce0d2aa2d38b67e5c7ee84ca53fde9d4b5b28"><code>e94ce0d</code></a> Merge with pypa/distutils.</li> <li><a href="https://github.com/pypa/setuptools/commit/ff11eed0c36b35bd68615a8ebf36763b7c8a6f28"><code>ff11eed</code></a> Merge pull request <a href="https://redirect.github.com/pypa/distutils/issues/325">pypa/distutils#325</a> from thesamesam/cflags</li> <li><a href="https://github.com/pypa/setuptools/commit/ebfebc096000e16f9d640660047eaec891a98529"><code>ebfebc0</code></a> Merge pull request <a href="https://redirect.github.com/pypa/distutils/issues/302">pypa/distutils#302</a> from adang1345/fix-python313-abs</li> <li><a href="https://github.com/pypa/setuptools/commit/36ce8b329524088cfa53b9a4bffcce3a8d233539"><code>36ce8b3</code></a> Refactor for simplicity.</li> <li>Additional commits viewable in <a href="https://github.com/pypa/setuptools/compare/v70.1.0...v75.7.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 this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
…rc/bindings/python (openvinotoolkit#28369) Updates the requirements on [setuptools](https://github.com/pypa/setuptools) to permit the latest version. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pypa/setuptools/blob/main/NEWS.rst">setuptools's changelog</a>.</em></p> <blockquote> <h1>v75.8.0</h1> <h2>Features</h2> <ul> <li>Implemented <code>Dynamic</code> field for core metadata (as introduced in PEP 643). The existing implementation is currently experimental and the exact approach may change in future releases. (<a href="https://redirect.github.com/pypa/setuptools/issues/4698">#4698</a>)</li> </ul> <h1>v75.7.0</h1> <h2>Features</h2> <ul> <li><code>pypa/distutils#310</code><a href="https://redirect.github.com/pypa/setuptools/issues/4478">#4478</a>)</li> <li>Synced with pypa/distutils@ff11eed0c including bugfix for duplicate CFLAGS and adaption to support Python 3.13 is_abs in the C compiler (<a href="https://redirect.github.com/pypa/setuptools/issues/4669">#4669</a>). (<a href="https://redirect.github.com/pypa/setuptools/issues/4790">#4790</a>)</li> </ul> <h1>v75.6.0</h1> <h2>Features</h2> <ul> <li>Preserve original <code>PKG-INFO</code> into <code>METADATA</code> when creating wheel (instead of calling <code>wheel.metadata.pkginfo_to_metadata</code>). This helps to be more compliant with the flow specified in PEP 517. (<a href="https://redirect.github.com/pypa/setuptools/issues/4701">#4701</a>)</li> <li>Changed the <code>WindowsSdkVersion</code>, <code>FrameworkVersion32</code> and <code>FrameworkVersion64</code> properties of <code>setuptools.msvc.PlatformInfo</code> to return an empty <code>tuple</code> instead of <code>None</code> as a fallthrough case -- by :user:<code>Avasam</code> (<a href="https://redirect.github.com/pypa/setuptools/issues/4754">#4754</a>)</li> </ul> <h1>v75.5.0</h1> <h2>Features</h2> <ul> <li>Removed support for <code>SETUPTOOLS_DANGEROUSLY_SKIP_PYPROJECT_VALIDATION</code>, as it is deemed prone to errors. (<a href="https://redirect.github.com/pypa/setuptools/issues/4746">#4746</a>)</li> </ul> <h1>v75.4.0</h1> <h2>Features</h2> <ul> <li>Added support for the environment variable</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pypa/setuptools/commit/5c9d9809dec1b20e2a9da6b4a06355fd6f87a190"><code>5c9d980</code></a> Bump version: 75.7.0 → 75.8.0</li> <li><a href="https://github.com/pypa/setuptools/commit/72c422261b40f2b95a8be6605cc7dd93cec81794"><code>72c4222</code></a> Avoid using Any in function</li> <li><a href="https://github.com/pypa/setuptools/commit/1c61d4799438677c7cfaaccf281312bfb1aee9b3"><code>1c61d47</code></a> Add news fragments for PEP 643</li> <li><a href="https://github.com/pypa/setuptools/commit/f285d01e2661b01e4947a4dca7704790b65f2967"><code>f285d01</code></a> Implement PEP 643 (<code>Dynamic</code> field for core metadata) (<a href="https://redirect.github.com/pypa/setuptools/issues/4698">#4698</a>)</li> <li><a href="https://github.com/pypa/setuptools/commit/a50f6e2e1e8b4610adde709079bec17ad0944197"><code>a50f6e2</code></a> Fix _static.Dict.<strong>ior</strong> for Python 3.8</li> <li><a href="https://github.com/pypa/setuptools/commit/b055895fa337a6e03a29c2ea6493b6b778d2ba46"><code>b055895</code></a> Add extra tests for static/dynamic metadata</li> <li><a href="https://github.com/pypa/setuptools/commit/770b4fc8f6248d862629028f5ee4218975f9516b"><code>770b4fc</code></a> Remove test workaround for unmarked static values from pyproject.toml</li> <li><a href="https://github.com/pypa/setuptools/commit/8b22d73be5e23a9611398d81aedc5164115940ce"><code>8b22d73</code></a> Mark values from pyproject.toml as static</li> <li><a href="https://github.com/pypa/setuptools/commit/f699fd842e3ddedbe937ee33b0bd6ad28e735664"><code>f699fd8</code></a> Fix spelling error</li> <li><a href="https://github.com/pypa/setuptools/commit/8b4c8a3c95f43d771d0fa6e4ebceea3436bc70f7"><code>8b4c8a3</code></a> Add tests for static 'attr' directive</li> <li>Additional commits viewable in <a href="https://github.com/pypa/setuptools/compare/v70.1.0...v75.8.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 this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps the required group with 6 updates: | Package | From | To | | --- | --- | --- | | [pydoclint](https://github.com/jsh9/pydoclint) | `0.5.14` | `0.6.0` | | [mkdocs-material](https://github.com/squidfunk/mkdocs-material) | `9.5.49` | `9.6.1` | | [pylint](https://github.com/pylint-dev/pylint) | `3.3.3` | `3.3.4` | | [hypothesis](https://github.com/HypothesisWorks/hypothesis) | `6.123.2` | `6.124.9` | | [pytest-asyncio](https://github.com/pytest-dev/pytest-asyncio) | `0.25.0` | `0.25.3` | | [setuptools](https://github.com/pypa/setuptools) | `75.6.0` | `75.8.0` | Updates `pydoclint` from 0.5.14 to 0.6.0 <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.6.0</h2> <h2>What's Changed</h2> <ul> <li>Add DOC003 to check docstring style mismatch by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/207">jsh9/pydoclint#207</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0">https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0</a></p> <h2>0.5.19</h2> <h2>What's Changed</h2> <ul> <li>Fix false positive DOC405 & DOC201 for bare returns by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/205">jsh9/pydoclint#205</a></li> <li>Add new config option for documenting star arguments by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/206">jsh9/pydoclint#206</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19">https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19</a></p> <h2>0.5.18</h2> <h2>What's Changed</h2> <ul> <li>Fix parsing and comparison of chained custom exceptions by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/203">jsh9/pydoclint#203</a></li> <li>Fix wording in DOC503 violation message by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/204">jsh9/pydoclint#204</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18">https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18</a></p> <h2>0.5.17</h2> <h2>What's Changed</h2> <ul> <li>Add an option to auto regenerate baseline by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/202">jsh9/pydoclint#202</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17">https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17</a></p> <h2>0.5.16</h2> <h2>What's Changed</h2> <ul> <li>👌 Add pre-commit-hook to run pydoclint via flake8 by <a href="https://github.com/s-weigand"><code>@s-weigand</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/200">jsh9/pydoclint#200</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16">https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16</a></p> <h2>0.5.15</h2> <h2>What's Changed</h2> <ul> <li>Throw DOC001 when docstring sections can't be parsed (numpy style) by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/199">jsh9/pydoclint#199</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.14...0.5.15">https://github.com/jsh9/pydoclint/compare/0.5.14...0.5.15</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.6.0] - 2025-01-13</h2> <ul> <li>Added <ul> <li>A new violation code, <code>DOC003</code>, to detect docstring style mismatch (when docstrings are written in the style different from specified)</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0">https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0</a></li> </ul> </li> </ul> <h2>[0.5.19] - 2025-01-12</h2> <ul> <li>Fixed <ul> <li>False positive DOC405 and DOC201 when we have bare return statements together with <code>yield</code> statements</li> </ul> </li> <li>Added <ul> <li>A new config option <code>--should-document-star-arguments</code> (if <code>False</code>, star arguments such as <code>*args</code> and <code>**kwargs</code> should not be documented in the docstring)</li> <li>A pre-commit step to check that "Full diff" is always added in CHANGELOG.md</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19">https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19</a></li> </ul> </li> </ul> <h2>[0.5.18] - 2025-01-12</h2> <ul> <li>Fixed <ul> <li>An issue where custom exceptions such as <code>a.b.c.MyException.from_str</code> cannot be properly parsed and compared</li> <li>A minor wording issue in DOC503 violation message</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18">https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18</a></li> </ul> </li> </ul> <h2>[0.5.17] - 2025-01-12</h2> <ul> <li>Added <ul> <li>A new config option <code>--auto-regenerate-baseline</code> to automatically regenerate the baseline file for every successful <em>pydoclint</em> run</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17">https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17</a></li> </ul> </li> </ul> <h2>[0.5.16] - 2025-01-11</h2> <ul> <li> <p>Added</p> <ul> <li>A pre-commit hook for using <em>pydoclint</em> as a flake8 plugin</li> </ul> </li> <li> <p>Full diff</p> <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16">https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16</a></li> </ul> </li> </ul> <h2>[0.5.15] - 2025-01-10</h2> <ul> <li>Changed</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/jsh9/pydoclint/commit/2e8af22f66de795a7bd0ac661353596e8847bbad"><code>2e8af22</code></a> Add DOC003 to check docstring style mismatch (<a href="https://redirect.github.com/jsh9/pydoclint/issues/207">#207</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/94039b23bedf98b6a6469312d04eecee9797a90f"><code>94039b2</code></a> Add new config option for documenting star arguments (<a href="https://redirect.github.com/jsh9/pydoclint/issues/206">#206</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/22b9b37b6ccda9c19be9757ee2c7e0a86a836b96"><code>22b9b37</code></a> Fix false positive DOC405 & DOC201 for bare returns (<a href="https://redirect.github.com/jsh9/pydoclint/issues/205">#205</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/1f2ea57d39bce59362382a739572504b6ee5dfb0"><code>1f2ea57</code></a> Fix wording in DOC503 violation message (<a href="https://redirect.github.com/jsh9/pydoclint/issues/204">#204</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/91263b841745adef4a052354bf4301107fc803ae"><code>91263b8</code></a> Fix parsing and comparison of chained custom exceptions (<a href="https://redirect.github.com/jsh9/pydoclint/issues/203">#203</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/64ef92306050cd21e51a99b1dccd87a41274f6e5"><code>64ef923</code></a> Add tips, tricks, and pitfalls to README</li> <li><a href="https://github.com/jsh9/pydoclint/commit/fe188f425eae9e77c74f169ff2d16e740e370d0b"><code>fe188f4</code></a> Add an option to auto regenerate baseline (<a href="https://redirect.github.com/jsh9/pydoclint/issues/202">#202</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/7282eb691ca4c1e4742c62fe7c3578bb9348f0fb"><code>7282eb6</code></a> 👌 Add pre-commit-hook to run pydoclint via flake8 (<a href="https://redirect.github.com/jsh9/pydoclint/issues/200">#200</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/4021d8d9b3216e2789bd5f28fa7c761228b9b3d4"><code>4021d8d</code></a> Throw DOC001 when docstring sections can't be parsed (numpy style) (<a href="https://redirect.github.com/jsh9/pydoclint/issues/199">#199</a>)</li> <li>See full diff in <a href="https://github.com/jsh9/pydoclint/compare/0.5.14...0.6.0">compare view</a></li> </ul> </details> <br /> Updates `mkdocs-material` from 9.5.49 to 9.6.1 <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.6.1</h2> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7943">#7943</a>: Tags plugin crashing due to merge error</li> </ul> <h2>mkdocs-material-9.6.0</h2> <ul> <li>Added meta plugin</li> <li>Rewrite of the tags plugin</li> <li>Added support for allow lists in tags plugin</li> <li>Added support for and custom sorting in tags plugin</li> <li>Added support for related links in blog plugin</li> <li>Added support for custom index pages in blog plugin</li> <li>Added support for navigation subtitles</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7924">#7924</a>: Anchors might require two clicks when using instant navigation</li> </ul> <h2>mkdocs-material-9.5.50</h2> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7913">#7913</a>: Social plugin renders attribute lists in page title</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.6.1 (2025-01-31)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7943">#7943</a>: Tags plugin crashing due to merge error</li> </ul> <p>mkdocs-material-9.6.0 (2025-01-31)</p> <ul> <li>Added meta plugin</li> <li>Rewrite of the tags plugin</li> <li>Added support for allow lists in tags plugin</li> <li>Added support for and custom sorting in tags plugin</li> <li>Added support for related links in blog plugin</li> <li>Added support for custom index pages in blog plugin</li> <li>Added support for navigation subtitles</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7924">#7924</a>: Anchors might require two clicks when using instant navigation</li> </ul> <p>mkdocs-material-9.5.50 (2025-01-18)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7913">#7913</a>: Social plugin renders attribute lists in page title</li> </ul> <p>mkdocs-material-9.5.49+insiders-4.53.15 (2025-01-15)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7896">#7896</a>: Scoped tags listings not rendering in subsections</li> </ul> <p>mkdocs-material-9.5.49 (2024-12-16)</p> <ul> <li>Adjusted title color in dark mode for all supported Mermaid.js diagrams</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7803">#7803</a>: Privacy plugin crashes on generated files</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7781">#7781</a>: Mermaid.js flow chart title not visible in dark mode</li> </ul> <p>mkdocs-material-9.5.48 (2024-12-08)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7774">#7774</a>: Disabling social cards doesn't work</li> </ul> <p>mkdocs-material-9.5.47 (2024-12-01)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7750">#7750</a>: Numeric tags break search</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7748">#7748</a>: Blog plugin breaks when using future drafts (9.5.45 regression)</li> </ul> <p>mkdocs-material-9.5.46 (2024-11-25)</p> <ul> <li>Added support for removing preload hints in privacy plugin</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7734">#7734</a>: Code blocks in h5 headlines are uppercased</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7725">#7725</a>: Blog plugin crashing on missing timezone (9.5.45 regression)</li> </ul> <p>mkdocs-material-9.5.45 (2024-11-20)</p> <ul> <li>Reduced size of Docker image through multi-stage build</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7708">#7708</a>: Blog plugin crashing on YAML dates with timezones</li> </ul> <p>mkdocs-material-9.5.44 (2024-11-05)</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/454af62a45622e3ebf14d25b3ab1ea69c1130e8f"><code>454af62</code></a> Prepare 9.6.1 release</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/2d147c72c02b842937320c58b98e20179742a7a6"><code>2d147c7</code></a> Fixed crashing tags plugin</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/34dc4feba7b45c892c3d6ec2c3d8413a5ebdac5f"><code>34dc4fe</code></a> Updated Premium sponsors</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/8edc6f8daaf0e1e7ebb94be99d3f10e46cd8bfbd"><code>8edc6f8</code></a> Updated Premium sponsors</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/0be1d6b3c8b9f3aff1f91be8f7050dcc96a40321"><code>0be1d6b</code></a> Documentation</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/34e301d311d2e753022e1ae23fd851cbfd73be6a"><code>34e301d</code></a> Fixed build badge</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/4ca5214ebf1665fff5de7be140ab6188eb0ec5a5"><code>4ca5214</code></a> Corrected position of related links in blog post</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/627737ae38905578d761fb7c916b5fdcf854973e"><code>627737a</code></a> Merge pull request <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7942">#7942</a> from squidfunk/merge/chipotle</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/49daf573f0cf01cd66a87f6bba3815b775280287"><code>49daf57</code></a> Updated dependencies</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/1416697c6b27725859d522c8763914c2b1fb1615"><code>1416697</code></a> Prepare 9.6.0 release</li> <li>Additional commits viewable in <a href="https://github.com/squidfunk/mkdocs-material/compare/9.5.49...9.6.1">compare view</a></li> </ul> </details> <br /> Updates `pylint` from 3.3.3 to 3.3.4 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pylint-dev/pylint/commit/c2b01c3d0b6410d4c93eb1f32fb28f2116b1e68f"><code>c2b01c3</code></a> Bump pylint to 3.3.4, update changelog</li> <li><a href="https://github.com/pylint-dev/pylint/commit/023cd4355c48e3e0c7702e65fde2d99794b25554"><code>023cd43</code></a> [isort] Permit to use isort 6 (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10204">#10204</a>)</li> <li><a href="https://github.com/pylint-dev/pylint/commit/050acfe49c525cd5e58f7c289d35aee1af4051e5"><code>050acfe</code></a> Calculate linter.config.jobs in cgroupsv2 environments (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10089">#10089</a>) (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10169">#10169</a>)</li> <li><a href="https://github.com/pylint-dev/pylint/commit/d6992b8cf993af7a94a9a3044185fb3ea838ac49"><code>d6992b8</code></a> fix "skipped files" count calculation (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10141">#10141</a>)</li> <li>See full diff in <a href="https://github.com/pylint-dev/pylint/compare/v3.3.3...v3.3.4">compare view</a></li> </ul> </details> <br /> Updates `hypothesis` from 6.123.2 to 6.124.9 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/HypothesisWorks/hypothesis/releases">hypothesis's releases</a>.</em></p> <blockquote> <h2>Hypothesis for Python - version 6.124.9</h2> <p>Registration of experimental Alternative backends for Hypothesis is now done via "hypothesis.internal.conjecture.providers.AVAILABLE_PROVIDERS" instead of "hypothesis.internal.conjecture.data.AVAILABLE_PROVIDERS".</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changes.html#v6-124-9">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.124.8</h2> <p>Refactor some internals for better type hinting.</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changes.html#v6-124-8">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.124.7</h2> <p>Internal renamings.</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changes.html#v6-124-7">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.124.6</h2> <p>More work on internal type hints.</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changes.html#v6-124-6">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.124.5</h2> <p>Internal refactoring to make some stateful internals easier to access.</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changes.html#v6-124-5">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.124.4</h2> <p>Refactoring of our internal input generation. This shouldn't lead to any changes in the distribution of test inputs. If you notice any, please open an issue!</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changes.html#v6-124-4">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.124.3</h2> <p>Some Hypothesis internals now use the number of choices as a yardstick of input size, rather than the entropy consumed by those choices. We don't expect this to cause significant behavioral changes.</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changes.html#v6-124-3">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.124.2</h2> <p>Improves our internal caching logic for test cases.</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changes.html#v6-124-2">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.124.1</h2> <p>fuzz_one_input is now implemented using an alternative backend. This brings the interpretation of the fuzzer-provided bytestring closer to</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/a25f7d94c76e27c56e86c37c9491919358f774e3"><code>a25f7d9</code></a> Bump hypothesis-python version to 6.124.9 and update changelog</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/63bb80c8a83a3f3a96443ed803f7179cfc9a6160"><code>63bb80c</code></a> Merge pull request <a href="https://redirect.github.com/HypothesisWorks/hypothesis/issues/4254">#4254</a> from tybug/tcs-cleanup</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/869e3de68bd1eab9d8e84d997159a86238ac0adc"><code>869e3de</code></a> reorganize code for the typed choice sequence</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/9d7e1d37b387023daca9b3e533e684c4850f96fe"><code>9d7e1d3</code></a> Bump hypothesis-python version to 6.124.8 and update changelog</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/ee494ea8918e8f7b33285ba90106a81e2e92ac3b"><code>ee494ea</code></a> Merge pull request <a href="https://redirect.github.com/HypothesisWorks/hypothesis/issues/4258">#4258</a> from tybug/typing</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/7dea49ddcfcfba9968cc8b5b75fd69ef8eafc504"><code>7dea49d</code></a> add more explicit coverage test</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/e55b6ddf606b5ba56effd263d61d0437134b45a5"><code>e55b6dd</code></a> remove unused tyoevar</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/d332a78aa3445540ff5474eb396abb53ec8d7f87"><code>d332a78</code></a> type shrinker and predicate, add some engine typing</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/5b0ec313540853b36f0b8afd0078f3db89521a97"><code>5b0ec31</code></a> type p_continue</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/46e9235ff91f02d4eddd636f8f8b3d26917bf351"><code>46e9235</code></a> bump black and use it to format</li> <li>Additional commits viewable in <a href="https://github.com/HypothesisWorks/hypothesis/compare/hypothesis-python-6.123.2...hypothesis-python-6.124.9">compare view</a></li> </ul> </details> <br /> Updates `pytest-asyncio` from 0.25.0 to 0.25.3 <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.25.3</h2> <ul> <li>Avoid errors in cleanup of async generators when event loop is already closed <a href="https://redirect.github.com/pytest-dev/pytest-asyncio/issues/1040">#1040</a></li> </ul> <h2>pytest-asyncio 0.25.2</h2> <ul> <li>Call <code>loop.shutdown_asyncgens()</code> before closing the event loop to ensure async generators are closed in the same manner as <code>asyncio.run</code> does <a href="https://redirect.github.com/pytest-dev/pytest-asyncio/pull/1034">#1034</a></li> </ul> <h2>pytest-asyncio 0.25.1</h2> <ul> <li>Fixes an issue that caused a broken event loop when a function-scoped test was executed in between two tests with wider loop scope <a href="https://redirect.github.com/pytest-dev/pytest-asyncio/issues/950">#950</a></li> <li>Improves test collection speed in auto mode <a href="https://redirect.github.com/pytest-dev/pytest-asyncio/pull/1020">#1020</a></li> <li>Corrects the warning that is emitted upon redefining the event_loop fixture</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/7c501923b00b4aeeb68d4b3b11065f0c3b5cba2c"><code>7c50192</code></a> fix: Avoid errors in cleanup of async generators when event loop is already c...</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/2188cdbbf7b47e653957d3f39aeb7d4d0de80bf4"><code>2188cdb</code></a> build: Prepare release of v0.25.2.</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/c3ad6340b8ad251f3c03d6bbe399f08434059bda"><code>c3ad634</code></a> fix: Shutdown generators before closing event loops.</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/e8ffb10528aaf578dc9ccc7ddbb1fadab56be8ac"><code>e8ffb10</code></a> [pre-commit.ci] pre-commit autoupdate</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/aae43d4f766dfd8f9a643faad41be411888a5d16"><code>aae43d4</code></a> Build(deps): Bump hypothesis in /dependencies/default</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/941e8b5104d86bb1b06b15fd3395f23120203c09"><code>941e8b5</code></a> Build(deps): Bump pygments from 2.18.0 to 2.19.1 in /dependencies/docs</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/623ab74b80b6f748e88254714f9b21a16eb7911e"><code>623ab74</code></a> docs: Prepare release of v0.25.1.</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/c236550e739b55ee62f3e6ec7f71b4f4231236d1"><code>c236550</code></a> docs: Fix broken link to the pytest.mark.asyncio reference.</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/41c645b3b79709c2812a3aa3b17943074bc33f48"><code>41c645b</code></a> fix: Correct warning message when redefining the event_loop fixture.</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/2fd10f824302d45da752341c60c8ddec48297a1b"><code>2fd10f8</code></a> docs: Clarify deprecation of event_loop fixture.</li> <li>Additional commits viewable in <a href="https://github.com/pytest-dev/pytest-asyncio/compare/v0.25.0...v0.25.3">compare view</a></li> </ul> </details> <br /> Updates `setuptools` from 75.6.0 to 75.8.0 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pypa/setuptools/blob/main/NEWS.rst">setuptools's changelog</a>.</em></p> <blockquote> <h1>v75.8.0</h1> <h2>Features</h2> <ul> <li>Implemented <code>Dynamic</code> field for core metadata (as introduced in PEP 643). The existing implementation is currently experimental and the exact approach may change in future releases. (<a href="https://redirect.github.com/pypa/setuptools/issues/4698">#4698</a>)</li> </ul> <h1>v75.7.0</h1> <h2>Features</h2> <ul> <li><code>pypa/distutils#310</code><a href="https://redirect.github.com/pypa/setuptools/issues/4478">#4478</a>)</li> <li>Synced with pypa/distutils@ff11eed0c including bugfix for duplicate CFLAGS and adaption to support Python 3.13 is_abs in the C compiler (<a href="https://redirect.github.com/pypa/setuptools/issues/4669">#4669</a>). (<a href="https://redirect.github.com/pypa/setuptools/issues/4790">#4790</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pypa/setuptools/commit/5c9d9809dec1b20e2a9da6b4a06355fd6f87a190"><code>5c9d980</code></a> Bump version: 75.7.0 → 75.8.0</li> <li><a href="https://github.com/pypa/setuptools/commit/72c422261b40f2b95a8be6605cc7dd93cec81794"><code>72c4222</code></a> Avoid using Any in function</li> <li><a href="https://github.com/pypa/setuptools/commit/1c61d4799438677c7cfaaccf281312bfb1aee9b3"><code>1c61d47</code></a> Add news fragments for PEP 643</li> <li><a href="https://github.com/pypa/setuptools/commit/f285d01e2661b01e4947a4dca7704790b65f2967"><code>f285d01</code></a> Implement PEP 643 (<code>Dynamic</code> field for core metadata) (<a href="https://redirect.github.com/pypa/setuptools/issues/4698">#4698</a>)</li> <li><a href="https://github.com/pypa/setuptools/commit/a50f6e2e1e8b4610adde709079bec17ad0944197"><code>a50f6e2</code></a> Fix _static.Dict.<strong>ior</strong> for Python 3.8</li> <li><a href="https://github.com/pypa/setuptools/commit/b055895fa337a6e03a29c2ea6493b6b778d2ba46"><code>b055895</code></a> Add extra tests for static/dynamic metadata</li> <li><a href="https://github.com/pypa/setuptools/commit/770b4fc8f6248d862629028f5ee4218975f9516b"><code>770b4fc</code></a> Remove test workaround for unmarked static values from pyproject.toml</li> <li><a href="https://github.com/pypa/setuptools/commit/8b22d73be5e23a9611398d81aedc5164115940ce"><code>8b22d73</code></a> Mark values from pyproject.toml as static</li> <li><a href="https://github.com/pypa/setuptools/commit/f699fd842e3ddedbe937ee33b0bd6ad28e735664"><code>f699fd8</code></a> Fix spelling error</li> <li><a href="https://github.com/pypa/setuptools/commit/8b4c8a3c95f43d771d0fa6e4ebceea3436bc70f7"><code>8b4c8a3</code></a> Add tests for static 'attr' directive</li> <li>Additional commits viewable in <a href="https://github.com/pypa/setuptools/compare/v75.6.0...v75.8.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>
Bumps the required group with 5 updates: | Package | From | To | | --- | --- | --- | | [pydoclint](https://github.com/jsh9/pydoclint) | `0.5.14` | `0.6.0` | | [mkdocs-material](https://github.com/squidfunk/mkdocs-material) | `9.5.49` | `9.6.1` | | [pylint](https://github.com/pylint-dev/pylint) | `3.3.3` | `3.3.4` | | [pytest-asyncio](https://github.com/pytest-dev/pytest-asyncio) | `0.25.1` | `0.25.3` | | [setuptools](https://github.com/pypa/setuptools) | `75.6.0` | `75.8.0` | Updates `pydoclint` from 0.5.14 to 0.6.0 <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.6.0</h2> <h2>What's Changed</h2> <ul> <li>Add DOC003 to check docstring style mismatch by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/207">jsh9/pydoclint#207</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0">https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0</a></p> <h2>0.5.19</h2> <h2>What's Changed</h2> <ul> <li>Fix false positive DOC405 & DOC201 for bare returns by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/205">jsh9/pydoclint#205</a></li> <li>Add new config option for documenting star arguments by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/206">jsh9/pydoclint#206</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19">https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19</a></p> <h2>0.5.18</h2> <h2>What's Changed</h2> <ul> <li>Fix parsing and comparison of chained custom exceptions by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/203">jsh9/pydoclint#203</a></li> <li>Fix wording in DOC503 violation message by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/204">jsh9/pydoclint#204</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18">https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18</a></p> <h2>0.5.17</h2> <h2>What's Changed</h2> <ul> <li>Add an option to auto regenerate baseline by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/202">jsh9/pydoclint#202</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17">https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17</a></p> <h2>0.5.16</h2> <h2>What's Changed</h2> <ul> <li>👌 Add pre-commit-hook to run pydoclint via flake8 by <a href="https://github.com/s-weigand"><code>@s-weigand</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/200">jsh9/pydoclint#200</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16">https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16</a></p> <h2>0.5.15</h2> <h2>What's Changed</h2> <ul> <li>Throw DOC001 when docstring sections can't be parsed (numpy style) by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/199">jsh9/pydoclint#199</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.14...0.5.15">https://github.com/jsh9/pydoclint/compare/0.5.14...0.5.15</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.6.0] - 2025-01-13</h2> <ul> <li>Added <ul> <li>A new violation code, <code>DOC003</code>, to detect docstring style mismatch (when docstrings are written in the style different from specified)</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0">https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0</a></li> </ul> </li> </ul> <h2>[0.5.19] - 2025-01-12</h2> <ul> <li>Fixed <ul> <li>False positive DOC405 and DOC201 when we have bare return statements together with <code>yield</code> statements</li> </ul> </li> <li>Added <ul> <li>A new config option <code>--should-document-star-arguments</code> (if <code>False</code>, star arguments such as <code>*args</code> and <code>**kwargs</code> should not be documented in the docstring)</li> <li>A pre-commit step to check that "Full diff" is always added in CHANGELOG.md</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19">https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19</a></li> </ul> </li> </ul> <h2>[0.5.18] - 2025-01-12</h2> <ul> <li>Fixed <ul> <li>An issue where custom exceptions such as <code>a.b.c.MyException.from_str</code> cannot be properly parsed and compared</li> <li>A minor wording issue in DOC503 violation message</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18">https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18</a></li> </ul> </li> </ul> <h2>[0.5.17] - 2025-01-12</h2> <ul> <li>Added <ul> <li>A new config option <code>--auto-regenerate-baseline</code> to automatically regenerate the baseline file for every successful <em>pydoclint</em> run</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17">https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17</a></li> </ul> </li> </ul> <h2>[0.5.16] - 2025-01-11</h2> <ul> <li> <p>Added</p> <ul> <li>A pre-commit hook for using <em>pydoclint</em> as a flake8 plugin</li> </ul> </li> <li> <p>Full diff</p> <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16">https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16</a></li> </ul> </li> </ul> <h2>[0.5.15] - 2025-01-10</h2> <ul> <li>Changed</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/jsh9/pydoclint/commit/2e8af22f66de795a7bd0ac661353596e8847bbad"><code>2e8af22</code></a> Add DOC003 to check docstring style mismatch (<a href="https://redirect.github.com/jsh9/pydoclint/issues/207">#207</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/94039b23bedf98b6a6469312d04eecee9797a90f"><code>94039b2</code></a> Add new config option for documenting star arguments (<a href="https://redirect.github.com/jsh9/pydoclint/issues/206">#206</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/22b9b37b6ccda9c19be9757ee2c7e0a86a836b96"><code>22b9b37</code></a> Fix false positive DOC405 & DOC201 for bare returns (<a href="https://redirect.github.com/jsh9/pydoclint/issues/205">#205</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/1f2ea57d39bce59362382a739572504b6ee5dfb0"><code>1f2ea57</code></a> Fix wording in DOC503 violation message (<a href="https://redirect.github.com/jsh9/pydoclint/issues/204">#204</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/91263b841745adef4a052354bf4301107fc803ae"><code>91263b8</code></a> Fix parsing and comparison of chained custom exceptions (<a href="https://redirect.github.com/jsh9/pydoclint/issues/203">#203</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/64ef92306050cd21e51a99b1dccd87a41274f6e5"><code>64ef923</code></a> Add tips, tricks, and pitfalls to README</li> <li><a href="https://github.com/jsh9/pydoclint/commit/fe188f425eae9e77c74f169ff2d16e740e370d0b"><code>fe188f4</code></a> Add an option to auto regenerate baseline (<a href="https://redirect.github.com/jsh9/pydoclint/issues/202">#202</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/7282eb691ca4c1e4742c62fe7c3578bb9348f0fb"><code>7282eb6</code></a> 👌 Add pre-commit-hook to run pydoclint via flake8 (<a href="https://redirect.github.com/jsh9/pydoclint/issues/200">#200</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/4021d8d9b3216e2789bd5f28fa7c761228b9b3d4"><code>4021d8d</code></a> Throw DOC001 when docstring sections can't be parsed (numpy style) (<a href="https://redirect.github.com/jsh9/pydoclint/issues/199">#199</a>)</li> <li>See full diff in <a href="https://github.com/jsh9/pydoclint/compare/0.5.14...0.6.0">compare view</a></li> </ul> </details> <br /> Updates `mkdocs-material` from 9.5.49 to 9.6.1 <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.6.1</h2> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7943">#7943</a>: Tags plugin crashing due to merge error</li> </ul> <h2>mkdocs-material-9.6.0</h2> <ul> <li>Added meta plugin</li> <li>Rewrite of the tags plugin</li> <li>Added support for allow lists in tags plugin</li> <li>Added support for and custom sorting in tags plugin</li> <li>Added support for related links in blog plugin</li> <li>Added support for custom index pages in blog plugin</li> <li>Added support for navigation subtitles</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7924">#7924</a>: Anchors might require two clicks when using instant navigation</li> </ul> <h2>mkdocs-material-9.5.50</h2> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7913">#7913</a>: Social plugin renders attribute lists in page title</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.6.1 (2025-01-31)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7943">#7943</a>: Tags plugin crashing due to merge error</li> </ul> <p>mkdocs-material-9.6.0 (2025-01-31)</p> <ul> <li>Added meta plugin</li> <li>Rewrite of the tags plugin</li> <li>Added support for allow lists in tags plugin</li> <li>Added support for and custom sorting in tags plugin</li> <li>Added support for related links in blog plugin</li> <li>Added support for custom index pages in blog plugin</li> <li>Added support for navigation subtitles</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7924">#7924</a>: Anchors might require two clicks when using instant navigation</li> </ul> <p>mkdocs-material-9.5.50 (2025-01-18)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7913">#7913</a>: Social plugin renders attribute lists in page title</li> </ul> <p>mkdocs-material-9.5.49+insiders-4.53.15 (2025-01-15)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7896">#7896</a>: Scoped tags listings not rendering in subsections</li> </ul> <p>mkdocs-material-9.5.49 (2024-12-16)</p> <ul> <li>Adjusted title color in dark mode for all supported Mermaid.js diagrams</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7803">#7803</a>: Privacy plugin crashes on generated files</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7781">#7781</a>: Mermaid.js flow chart title not visible in dark mode</li> </ul> <p>mkdocs-material-9.5.48 (2024-12-08)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7774">#7774</a>: Disabling social cards doesn't work</li> </ul> <p>mkdocs-material-9.5.47 (2024-12-01)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7750">#7750</a>: Numeric tags break search</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7748">#7748</a>: Blog plugin breaks when using future drafts (9.5.45 regression)</li> </ul> <p>mkdocs-material-9.5.46 (2024-11-25)</p> <ul> <li>Added support for removing preload hints in privacy plugin</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7734">#7734</a>: Code blocks in h5 headlines are uppercased</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7725">#7725</a>: Blog plugin crashing on missing timezone (9.5.45 regression)</li> </ul> <p>mkdocs-material-9.5.45 (2024-11-20)</p> <ul> <li>Reduced size of Docker image through multi-stage build</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7708">#7708</a>: Blog plugin crashing on YAML dates with timezones</li> </ul> <p>mkdocs-material-9.5.44 (2024-11-05)</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/454af62a45622e3ebf14d25b3ab1ea69c1130e8f"><code>454af62</code></a> Prepare 9.6.1 release</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/2d147c72c02b842937320c58b98e20179742a7a6"><code>2d147c7</code></a> Fixed crashing tags plugin</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/34dc4feba7b45c892c3d6ec2c3d8413a5ebdac5f"><code>34dc4fe</code></a> Updated Premium sponsors</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/8edc6f8daaf0e1e7ebb94be99d3f10e46cd8bfbd"><code>8edc6f8</code></a> Updated Premium sponsors</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/0be1d6b3c8b9f3aff1f91be8f7050dcc96a40321"><code>0be1d6b</code></a> Documentation</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/34e301d311d2e753022e1ae23fd851cbfd73be6a"><code>34e301d</code></a> Fixed build badge</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/4ca5214ebf1665fff5de7be140ab6188eb0ec5a5"><code>4ca5214</code></a> Corrected position of related links in blog post</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/627737ae38905578d761fb7c916b5fdcf854973e"><code>627737a</code></a> Merge pull request <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7942">#7942</a> from squidfunk/merge/chipotle</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/49daf573f0cf01cd66a87f6bba3815b775280287"><code>49daf57</code></a> Updated dependencies</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/1416697c6b27725859d522c8763914c2b1fb1615"><code>1416697</code></a> Prepare 9.6.0 release</li> <li>Additional commits viewable in <a href="https://github.com/squidfunk/mkdocs-material/compare/9.5.49...9.6.1">compare view</a></li> </ul> </details> <br /> Updates `pylint` from 3.3.3 to 3.3.4 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pylint-dev/pylint/commit/c2b01c3d0b6410d4c93eb1f32fb28f2116b1e68f"><code>c2b01c3</code></a> Bump pylint to 3.3.4, update changelog</li> <li><a href="https://github.com/pylint-dev/pylint/commit/023cd4355c48e3e0c7702e65fde2d99794b25554"><code>023cd43</code></a> [isort] Permit to use isort 6 (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10204">#10204</a>)</li> <li><a href="https://github.com/pylint-dev/pylint/commit/050acfe49c525cd5e58f7c289d35aee1af4051e5"><code>050acfe</code></a> Calculate linter.config.jobs in cgroupsv2 environments (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10089">#10089</a>) (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10169">#10169</a>)</li> <li><a href="https://github.com/pylint-dev/pylint/commit/d6992b8cf993af7a94a9a3044185fb3ea838ac49"><code>d6992b8</code></a> fix "skipped files" count calculation (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10141">#10141</a>)</li> <li>See full diff in <a href="https://github.com/pylint-dev/pylint/compare/v3.3.3...v3.3.4">compare view</a></li> </ul> </details> <br /> Updates `pytest-asyncio` from 0.25.1 to 0.25.3 <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.25.3</h2> <ul> <li>Avoid errors in cleanup of async generators when event loop is already closed <a href="https://redirect.github.com/pytest-dev/pytest-asyncio/issues/1040">#1040</a></li> </ul> <h2>pytest-asyncio 0.25.2</h2> <ul> <li>Call <code>loop.shutdown_asyncgens()</code> before closing the event loop to ensure async generators are closed in the same manner as <code>asyncio.run</code> does <a href="https://redirect.github.com/pytest-dev/pytest-asyncio/pull/1034">#1034</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/7c501923b00b4aeeb68d4b3b11065f0c3b5cba2c"><code>7c50192</code></a> fix: Avoid errors in cleanup of async generators when event loop is already c...</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/2188cdbbf7b47e653957d3f39aeb7d4d0de80bf4"><code>2188cdb</code></a> build: Prepare release of v0.25.2.</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/c3ad6340b8ad251f3c03d6bbe399f08434059bda"><code>c3ad634</code></a> fix: Shutdown generators before closing event loops.</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/e8ffb10528aaf578dc9ccc7ddbb1fadab56be8ac"><code>e8ffb10</code></a> [pre-commit.ci] pre-commit autoupdate</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/aae43d4f766dfd8f9a643faad41be411888a5d16"><code>aae43d4</code></a> Build(deps): Bump hypothesis in /dependencies/default</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/941e8b5104d86bb1b06b15fd3395f23120203c09"><code>941e8b5</code></a> Build(deps): Bump pygments from 2.18.0 to 2.19.1 in /dependencies/docs</li> <li>See full diff in <a href="https://github.com/pytest-dev/pytest-asyncio/compare/v0.25.1...v0.25.3">compare view</a></li> </ul> </details> <br /> Updates `setuptools` from 75.6.0 to 75.8.0 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pypa/setuptools/blob/main/NEWS.rst">setuptools's changelog</a>.</em></p> <blockquote> <h1>v75.8.0</h1> <h2>Features</h2> <ul> <li>Implemented <code>Dynamic</code> field for core metadata (as introduced in PEP 643). The existing implementation is currently experimental and the exact approach may change in future releases. (<a href="https://redirect.github.com/pypa/setuptools/issues/4698">#4698</a>)</li> </ul> <h1>v75.7.0</h1> <h2>Features</h2> <ul> <li><code>pypa/distutils#310</code><a href="https://redirect.github.com/pypa/setuptools/issues/4478">#4478</a>)</li> <li>Synced with pypa/distutils@ff11eed0c including bugfix for duplicate CFLAGS and adaption to support Python 3.13 is_abs in the C compiler (<a href="https://redirect.github.com/pypa/setuptools/issues/4669">#4669</a>). (<a href="https://redirect.github.com/pypa/setuptools/issues/4790">#4790</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pypa/setuptools/commit/5c9d9809dec1b20e2a9da6b4a06355fd6f87a190"><code>5c9d980</code></a> Bump version: 75.7.0 → 75.8.0</li> <li><a href="https://github.com/pypa/setuptools/commit/72c422261b40f2b95a8be6605cc7dd93cec81794"><code>72c4222</code></a> Avoid using Any in function</li> <li><a href="https://github.com/pypa/setuptools/commit/1c61d4799438677c7cfaaccf281312bfb1aee9b3"><code>1c61d47</code></a> Add news fragments for PEP 643</li> <li><a href="https://github.com/pypa/setuptools/commit/f285d01e2661b01e4947a4dca7704790b65f2967"><code>f285d01</code></a> Implement PEP 643 (<code>Dynamic</code> field for core metadata) (<a href="https://redirect.github.com/pypa/setuptools/issues/4698">#4698</a>)</li> <li><a href="https://github.com/pypa/setuptools/commit/a50f6e2e1e8b4610adde709079bec17ad0944197"><code>a50f6e2</code></a> Fix _static.Dict.<strong>ior</strong> for Python 3.8</li> <li><a href="https://github.com/pypa/setuptools/commit/b055895fa337a6e03a29c2ea6493b6b778d2ba46"><code>b055895</code></a> Add extra tests for static/dynamic metadata</li> <li><a href="https://github.com/pypa/setuptools/commit/770b4fc8f6248d862629028f5ee4218975f9516b"><code>770b4fc</code></a> Remove test workaround for unmarked static values from pyproject.toml</li> <li><a href="https://github.com/pypa/setuptools/commit/8b22d73be5e23a9611398d81aedc5164115940ce"><code>8b22d73</code></a> Mark values from pyproject.toml as static</li> <li><a href="https://github.com/pypa/setuptools/commit/f699fd842e3ddedbe937ee33b0bd6ad28e735664"><code>f699fd8</code></a> Fix spelling error</li> <li><a href="https://github.com/pypa/setuptools/commit/8b4c8a3c95f43d771d0fa6e4ebceea3436bc70f7"><code>8b4c8a3</code></a> Add tests for static 'attr' directive</li> <li>Additional commits viewable in <a href="https://github.com/pypa/setuptools/compare/v75.6.0...v75.8.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>
Bumps the required group with 7 updates: | Package | From | To | | --- | --- | --- | | [pydoclint](https://github.com/jsh9/pydoclint) | `0.5.14` | `0.6.0` | | [mkdocs-material](https://github.com/squidfunk/mkdocs-material) | `9.5.49` | `9.6.1` | | [types-setuptools](https://github.com/python/typeshed) | `75.6.0.20241223` | `75.8.0.20250110` | | [pylint](https://github.com/pylint-dev/pylint) | `3.3.3` | `3.3.4` | | [pytest-asyncio](https://github.com/pytest-dev/pytest-asyncio) | `0.25.1` | `0.25.3` | | [hypothesis](https://github.com/HypothesisWorks/hypothesis) | `6.123.2` | `6.124.9` | | [setuptools](https://github.com/pypa/setuptools) | `75.6.0` | `75.8.0` | Updates `pydoclint` from 0.5.14 to 0.6.0 <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.6.0</h2> <h2>What's Changed</h2> <ul> <li>Add DOC003 to check docstring style mismatch by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/207">jsh9/pydoclint#207</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0">https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0</a></p> <h2>0.5.19</h2> <h2>What's Changed</h2> <ul> <li>Fix false positive DOC405 & DOC201 for bare returns by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/205">jsh9/pydoclint#205</a></li> <li>Add new config option for documenting star arguments by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/206">jsh9/pydoclint#206</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19">https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19</a></p> <h2>0.5.18</h2> <h2>What's Changed</h2> <ul> <li>Fix parsing and comparison of chained custom exceptions by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/203">jsh9/pydoclint#203</a></li> <li>Fix wording in DOC503 violation message by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/204">jsh9/pydoclint#204</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18">https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18</a></p> <h2>0.5.17</h2> <h2>What's Changed</h2> <ul> <li>Add an option to auto regenerate baseline by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/202">jsh9/pydoclint#202</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17">https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17</a></p> <h2>0.5.16</h2> <h2>What's Changed</h2> <ul> <li>👌 Add pre-commit-hook to run pydoclint via flake8 by <a href="https://github.com/s-weigand"><code>@s-weigand</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/200">jsh9/pydoclint#200</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16">https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16</a></p> <h2>0.5.15</h2> <h2>What's Changed</h2> <ul> <li>Throw DOC001 when docstring sections can't be parsed (numpy style) by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/199">jsh9/pydoclint#199</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.14...0.5.15">https://github.com/jsh9/pydoclint/compare/0.5.14...0.5.15</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.6.0] - 2025-01-13</h2> <ul> <li>Added <ul> <li>A new violation code, <code>DOC003</code>, to detect docstring style mismatch (when docstrings are written in the style different from specified)</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0">https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0</a></li> </ul> </li> </ul> <h2>[0.5.19] - 2025-01-12</h2> <ul> <li>Fixed <ul> <li>False positive DOC405 and DOC201 when we have bare return statements together with <code>yield</code> statements</li> </ul> </li> <li>Added <ul> <li>A new config option <code>--should-document-star-arguments</code> (if <code>False</code>, star arguments such as <code>*args</code> and <code>**kwargs</code> should not be documented in the docstring)</li> <li>A pre-commit step to check that "Full diff" is always added in CHANGELOG.md</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19">https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19</a></li> </ul> </li> </ul> <h2>[0.5.18] - 2025-01-12</h2> <ul> <li>Fixed <ul> <li>An issue where custom exceptions such as <code>a.b.c.MyException.from_str</code> cannot be properly parsed and compared</li> <li>A minor wording issue in DOC503 violation message</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18">https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18</a></li> </ul> </li> </ul> <h2>[0.5.17] - 2025-01-12</h2> <ul> <li>Added <ul> <li>A new config option <code>--auto-regenerate-baseline</code> to automatically regenerate the baseline file for every successful <em>pydoclint</em> run</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17">https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17</a></li> </ul> </li> </ul> <h2>[0.5.16] - 2025-01-11</h2> <ul> <li> <p>Added</p> <ul> <li>A pre-commit hook for using <em>pydoclint</em> as a flake8 plugin</li> </ul> </li> <li> <p>Full diff</p> <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16">https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16</a></li> </ul> </li> </ul> <h2>[0.5.15] - 2025-01-10</h2> <ul> <li>Changed</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/jsh9/pydoclint/commit/2e8af22f66de795a7bd0ac661353596e8847bbad"><code>2e8af22</code></a> Add DOC003 to check docstring style mismatch (<a href="https://redirect.github.com/jsh9/pydoclint/issues/207">#207</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/94039b23bedf98b6a6469312d04eecee9797a90f"><code>94039b2</code></a> Add new config option for documenting star arguments (<a href="https://redirect.github.com/jsh9/pydoclint/issues/206">#206</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/22b9b37b6ccda9c19be9757ee2c7e0a86a836b96"><code>22b9b37</code></a> Fix false positive DOC405 & DOC201 for bare returns (<a href="https://redirect.github.com/jsh9/pydoclint/issues/205">#205</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/1f2ea57d39bce59362382a739572504b6ee5dfb0"><code>1f2ea57</code></a> Fix wording in DOC503 violation message (<a href="https://redirect.github.com/jsh9/pydoclint/issues/204">#204</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/91263b841745adef4a052354bf4301107fc803ae"><code>91263b8</code></a> Fix parsing and comparison of chained custom exceptions (<a href="https://redirect.github.com/jsh9/pydoclint/issues/203">#203</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/64ef92306050cd21e51a99b1dccd87a41274f6e5"><code>64ef923</code></a> Add tips, tricks, and pitfalls to README</li> <li><a href="https://github.com/jsh9/pydoclint/commit/fe188f425eae9e77c74f169ff2d16e740e370d0b"><code>fe188f4</code></a> Add an option to auto regenerate baseline (<a href="https://redirect.github.com/jsh9/pydoclint/issues/202">#202</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/7282eb691ca4c1e4742c62fe7c3578bb9348f0fb"><code>7282eb6</code></a> 👌 Add pre-commit-hook to run pydoclint via flake8 (<a href="https://redirect.github.com/jsh9/pydoclint/issues/200">#200</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/4021d8d9b3216e2789bd5f28fa7c761228b9b3d4"><code>4021d8d</code></a> Throw DOC001 when docstring sections can't be parsed (numpy style) (<a href="https://redirect.github.com/jsh9/pydoclint/issues/199">#199</a>)</li> <li>See full diff in <a href="https://github.com/jsh9/pydoclint/compare/0.5.14...0.6.0">compare view</a></li> </ul> </details> <br /> Updates `mkdocs-material` from 9.5.49 to 9.6.1 <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.6.1</h2> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7943">#7943</a>: Tags plugin crashing due to merge error</li> </ul> <h2>mkdocs-material-9.6.0</h2> <ul> <li>Added meta plugin</li> <li>Rewrite of the tags plugin</li> <li>Added support for allow lists in tags plugin</li> <li>Added support for and custom sorting in tags plugin</li> <li>Added support for related links in blog plugin</li> <li>Added support for custom index pages in blog plugin</li> <li>Added support for navigation subtitles</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7924">#7924</a>: Anchors might require two clicks when using instant navigation</li> </ul> <h2>mkdocs-material-9.5.50</h2> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7913">#7913</a>: Social plugin renders attribute lists in page title</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.6.1 (2025-01-31)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7943">#7943</a>: Tags plugin crashing due to merge error</li> </ul> <p>mkdocs-material-9.6.0 (2025-01-31)</p> <ul> <li>Added meta plugin</li> <li>Rewrite of the tags plugin</li> <li>Added support for allow lists in tags plugin</li> <li>Added support for and custom sorting in tags plugin</li> <li>Added support for related links in blog plugin</li> <li>Added support for custom index pages in blog plugin</li> <li>Added support for navigation subtitles</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7924">#7924</a>: Anchors might require two clicks when using instant navigation</li> </ul> <p>mkdocs-material-9.5.50 (2025-01-18)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7913">#7913</a>: Social plugin renders attribute lists in page title</li> </ul> <p>mkdocs-material-9.5.49+insiders-4.53.15 (2025-01-15)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7896">#7896</a>: Scoped tags listings not rendering in subsections</li> </ul> <p>mkdocs-material-9.5.49 (2024-12-16)</p> <ul> <li>Adjusted title color in dark mode for all supported Mermaid.js diagrams</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7803">#7803</a>: Privacy plugin crashes on generated files</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7781">#7781</a>: Mermaid.js flow chart title not visible in dark mode</li> </ul> <p>mkdocs-material-9.5.48 (2024-12-08)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7774">#7774</a>: Disabling social cards doesn't work</li> </ul> <p>mkdocs-material-9.5.47 (2024-12-01)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7750">#7750</a>: Numeric tags break search</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7748">#7748</a>: Blog plugin breaks when using future drafts (9.5.45 regression)</li> </ul> <p>mkdocs-material-9.5.46 (2024-11-25)</p> <ul> <li>Added support for removing preload hints in privacy plugin</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7734">#7734</a>: Code blocks in h5 headlines are uppercased</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7725">#7725</a>: Blog plugin crashing on missing timezone (9.5.45 regression)</li> </ul> <p>mkdocs-material-9.5.45 (2024-11-20)</p> <ul> <li>Reduced size of Docker image through multi-stage build</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7708">#7708</a>: Blog plugin crashing on YAML dates with timezones</li> </ul> <p>mkdocs-material-9.5.44 (2024-11-05)</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/454af62a45622e3ebf14d25b3ab1ea69c1130e8f"><code>454af62</code></a> Prepare 9.6.1 release</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/2d147c72c02b842937320c58b98e20179742a7a6"><code>2d147c7</code></a> Fixed crashing tags plugin</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/34dc4feba7b45c892c3d6ec2c3d8413a5ebdac5f"><code>34dc4fe</code></a> Updated Premium sponsors</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/8edc6f8daaf0e1e7ebb94be99d3f10e46cd8bfbd"><code>8edc6f8</code></a> Updated Premium sponsors</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/0be1d6b3c8b9f3aff1f91be8f7050dcc96a40321"><code>0be1d6b</code></a> Documentation</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/34e301d311d2e753022e1ae23fd851cbfd73be6a"><code>34e301d</code></a> Fixed build badge</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/4ca5214ebf1665fff5de7be140ab6188eb0ec5a5"><code>4ca5214</code></a> Corrected position of related links in blog post</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/627737ae38905578d761fb7c916b5fdcf854973e"><code>627737a</code></a> Merge pull request <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7942">#7942</a> from squidfunk/merge/chipotle</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/49daf573f0cf01cd66a87f6bba3815b775280287"><code>49daf57</code></a> Updated dependencies</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/1416697c6b27725859d522c8763914c2b1fb1615"><code>1416697</code></a> Prepare 9.6.0 release</li> <li>Additional commits viewable in <a href="https://github.com/squidfunk/mkdocs-material/compare/9.5.49...9.6.1">compare view</a></li> </ul> </details> <br /> Updates `types-setuptools` from 75.6.0.20241223 to 75.8.0.20250110 <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/python/typeshed/commits">compare view</a></li> </ul> </details> <br /> Updates `pylint` from 3.3.3 to 3.3.4 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pylint-dev/pylint/commit/c2b01c3d0b6410d4c93eb1f32fb28f2116b1e68f"><code>c2b01c3</code></a> Bump pylint to 3.3.4, update changelog</li> <li><a href="https://github.com/pylint-dev/pylint/commit/023cd4355c48e3e0c7702e65fde2d99794b25554"><code>023cd43</code></a> [isort] Permit to use isort 6 (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10204">#10204</a>)</li> <li><a href="https://github.com/pylint-dev/pylint/commit/050acfe49c525cd5e58f7c289d35aee1af4051e5"><code>050acfe</code></a> Calculate linter.config.jobs in cgroupsv2 environments (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10089">#10089</a>) (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10169">#10169</a>)</li> <li><a href="https://github.com/pylint-dev/pylint/commit/d6992b8cf993af7a94a9a3044185fb3ea838ac49"><code>d6992b8</code></a> fix "skipped files" count calculation (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10141">#10141</a>)</li> <li>See full diff in <a href="https://github.com/pylint-dev/pylint/compare/v3.3.3...v3.3.4">compare view</a></li> </ul> </details> <br /> Updates `pytest-asyncio` from 0.25.1 to 0.25.3 <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.25.3</h2> <ul> <li>Avoid errors in cleanup of async generators when event loop is already closed <a href="https://redirect.github.com/pytest-dev/pytest-asyncio/issues/1040">#1040</a></li> </ul> <h2>pytest-asyncio 0.25.2</h2> <ul> <li>Call <code>loop.shutdown_asyncgens()</code> before closing the event loop to ensure async generators are closed in the same manner as <code>asyncio.run</code> does <a href="https://redirect.github.com/pytest-dev/pytest-asyncio/pull/1034">#1034</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/7c501923b00b4aeeb68d4b3b11065f0c3b5cba2c"><code>7c50192</code></a> fix: Avoid errors in cleanup of async generators when event loop is already c...</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/2188cdbbf7b47e653957d3f39aeb7d4d0de80bf4"><code>2188cdb</code></a> build: Prepare release of v0.25.2.</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/c3ad6340b8ad251f3c03d6bbe399f08434059bda"><code>c3ad634</code></a> fix: Shutdown generators before closing event loops.</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/e8ffb10528aaf578dc9ccc7ddbb1fadab56be8ac"><code>e8ffb10</code></a> [pre-commit.ci] pre-commit autoupdate</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/aae43d4f766dfd8f9a643faad41be411888a5d16"><code>aae43d4</code></a> Build(deps): Bump hypothesis in /dependencies/default</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/941e8b5104d86bb1b06b15fd3395f23120203c09"><code>941e8b5</code></a> Build(deps): Bump pygments from 2.18.0 to 2.19.1 in /dependencies/docs</li> <li>See full diff in <a href="https://github.com/pytest-dev/pytest-asyncio/compare/v0.25.1...v0.25.3">compare view</a></li> </ul> </details> <br /> Updates `hypothesis` from 6.123.2 to 6.124.9 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/HypothesisWorks/hypothesis/releases">hypothesis's releases</a>.</em></p> <blockquote> <h2>Hypothesis for Python - version 6.124.9</h2> <p>Registration of experimental Alternative backends for Hypothesis is now done via "hypothesis.internal.conjecture.providers.AVAILABLE_PROVIDERS" instead of "hypothesis.internal.conjecture.data.AVAILABLE_PROVIDERS".</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changes.html#v6-124-9">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.124.8</h2> <p>Refactor some internals for better type hinting.</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changes.html#v6-124-8">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.124.7</h2> <p>Internal renamings.</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changes.html#v6-124-7">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.124.6</h2> <p>More work on internal type hints.</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changes.html#v6-124-6">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.124.5</h2> <p>Internal refactoring to make some stateful internals easier to access.</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changes.html#v6-124-5">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.124.4</h2> <p>Refactoring of our internal input generation. This shouldn't lead to any changes in the distribution of test inputs. If you notice any, please open an issue!</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changes.html#v6-124-4">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.124.3</h2> <p>Some Hypothesis internals now use the number of choices as a yardstick of input size, rather than the entropy consumed by those choices. We don't expect this to cause significant behavioral changes.</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changes.html#v6-124-3">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.124.2</h2> <p>Improves our internal caching logic for test cases.</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changes.html#v6-124-2">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.124.1</h2> <p>fuzz_one_input is now implemented using an alternative backend. This brings the interpretation of the fuzzer-provided bytestring closer to</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/a25f7d94c76e27c56e86c37c9491919358f774e3"><code>a25f7d9</code></a> Bump hypothesis-python version to 6.124.9 and update changelog</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/63bb80c8a83a3f3a96443ed803f7179cfc9a6160"><code>63bb80c</code></a> Merge pull request <a href="https://redirect.github.com/HypothesisWorks/hypothesis/issues/4254">#4254</a> from tybug/tcs-cleanup</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/869e3de68bd1eab9d8e84d997159a86238ac0adc"><code>869e3de</code></a> reorganize code for the typed choice sequence</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/9d7e1d37b387023daca9b3e533e684c4850f96fe"><code>9d7e1d3</code></a> Bump hypothesis-python version to 6.124.8 and update changelog</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/ee494ea8918e8f7b33285ba90106a81e2e92ac3b"><code>ee494ea</code></a> Merge pull request <a href="https://redirect.github.com/HypothesisWorks/hypothesis/issues/4258">#4258</a> from tybug/typing</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/7dea49ddcfcfba9968cc8b5b75fd69ef8eafc504"><code>7dea49d</code></a> add more explicit coverage test</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/e55b6ddf606b5ba56effd263d61d0437134b45a5"><code>e55b6dd</code></a> remove unused tyoevar</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/d332a78aa3445540ff5474eb396abb53ec8d7f87"><code>d332a78</code></a> type shrinker and predicate, add some engine typing</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/5b0ec313540853b36f0b8afd0078f3db89521a97"><code>5b0ec31</code></a> type p_continue</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/46e9235ff91f02d4eddd636f8f8b3d26917bf351"><code>46e9235</code></a> bump black and use it to format</li> <li>Additional commits viewable in <a href="https://github.com/HypothesisWorks/hypothesis/compare/hypothesis-python-6.123.2...hypothesis-python-6.124.9">compare view</a></li> </ul> </details> <br /> Updates `setuptools` from 75.6.0 to 75.8.0 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pypa/setuptools/blob/main/NEWS.rst">setuptools's changelog</a>.</em></p> <blockquote> <h1>v75.8.0</h1> <h2>Features</h2> <ul> <li>Implemented <code>Dynamic</code> field for core metadata (as introduced in PEP 643). The existing implementation is currently experimental and the exact approach may change in future releases. (<a href="https://redirect.github.com/pypa/setuptools/issues/4698">#4698</a>)</li> </ul> <h1>v75.7.0</h1> <h2>Features</h2> <ul> <li><code>pypa/distutils#310</code><a href="https://redirect.github.com/pypa/setuptools/issues/4478">#4478</a>)</li> <li>Synced with pypa/distutils@ff11eed0c including bugfix for duplicate CFLAGS and adaption to support Python 3.13 is_abs in the C compiler (<a href="https://redirect.github.com/pypa/setuptools/issues/4669">#4669</a>). (<a href="https://redirect.github.com/pypa/setuptools/issues/4790">#4790</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pypa/setuptools/commit/5c9d9809dec1b20e2a9da6b4a06355fd6f87a190"><code>5c9d980</code></a> Bump version: 75.7.0 → 75.8.0</li> <li><a href="https://github.com/pypa/setuptools/commit/72c422261b40f2b95a8be6605cc7dd93cec81794"><code>72c4222</code></a> Avoid using Any in function</li> <li><a href="https://github.com/pypa/setuptools/commit/1c61d4799438677c7cfaaccf281312bfb1aee9b3"><code>1c61d47</code></a> Add news fragments for PEP 643</li> <li><a href="https://github.com/pypa/setuptools/commit/f285d01e2661b01e4947a4dca7704790b65f2967"><code>f285d01</code></a> Implement PEP 643 (<code>Dynamic</code> field for core metadata) (<a href="https://redirect.github.com/pypa/setuptools/issues/4698">#4698</a>)</li> <li><a href="https://github.com/pypa/setuptools/commit/a50f6e2e1e8b4610adde709079bec17ad0944197"><code>a50f6e2</code></a> Fix _static.Dict.<strong>ior</strong> for Python 3.8</li> <li><a href="https://github.com/pypa/setuptools/commit/b055895fa337a6e03a29c2ea6493b6b778d2ba46"><code>b055895</code></a> Add extra tests for static/dynamic metadata</li> <li><a href="https://github.com/pypa/setuptools/commit/770b4fc8f6248d862629028f5ee4218975f9516b"><code>770b4fc</code></a> Remove test workaround for unmarked static values from pyproject.toml</li> <li><a href="https://github.com/pypa/setuptools/commit/8b22d73be5e23a9611398d81aedc5164115940ce"><code>8b22d73</code></a> Mark values from pyproject.toml as static</li> <li><a href="https://github.com/pypa/setuptools/commit/f699fd842e3ddedbe937ee33b0bd6ad28e735664"><code>f699fd8</code></a> Fix spelling error</li> <li><a href="https://github.com/pypa/setuptools/commit/8b4c8a3c95f43d771d0fa6e4ebceea3436bc70f7"><code>8b4c8a3</code></a> Add tests for static 'attr' directive</li> <li>Additional commits viewable in <a href="https://github.com/pypa/setuptools/compare/v75.6.0...v75.8.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>
Bumps the required group with 7 updates: | Package | From | To | | --- | --- | --- | | [protobuf](https://github.com/protocolbuffers/protobuf) | `5.29.2` | `5.29.3` | | [grpcio](https://github.com/grpc/grpc) | `1.68.1` | `1.70.0` | | [pydoclint](https://github.com/jsh9/pydoclint) | `0.5.14` | `0.6.0` | | [mkdocs-material](https://github.com/squidfunk/mkdocs-material) | `9.5.49` | `9.6.1` | | [pylint](https://github.com/pylint-dev/pylint) | `3.3.3` | `3.3.4` | | [setuptools](https://github.com/pypa/setuptools) | `75.6.0` | `75.8.0` | | [grpcio-tools](https://github.com/grpc/grpc) | `1.68.1` | `1.70.0` | Updates `protobuf` from 5.29.2 to 5.29.3 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/protocolbuffers/protobuf/commit/b407e8416e3893036aee5af9a12bd9b6a0e2b2e6"><code>b407e84</code></a> Updating version.json and repo version numbers to: 29.3</li> <li><a href="https://github.com/protocolbuffers/protobuf/commit/9a5d2c329c159e07f7da8ba5dfe0acc98dfb81a9"><code>9a5d2c3</code></a> Add .bazeliskrc for protobuf repo to tell bazelisk to use 7.1.2 by default. (...</li> <li><a href="https://github.com/protocolbuffers/protobuf/commit/1dc5842ebe7956e79d5dfee6d3589df02faa77fd"><code>1dc5842</code></a> Fix cmake installation location of java and go features (<a href="https://redirect.github.com/protocolbuffers/protobuf/issues/19773">#19773</a>)</li> <li><a href="https://github.com/protocolbuffers/protobuf/commit/8e7e6b026f0ef00fd0f3d3cbeb41a02f8621c785"><code>8e7e6b0</code></a> Update artifact actions to v4 (<a href="https://redirect.github.com/protocolbuffers/protobuf/issues/19703">#19703</a>)</li> <li><a href="https://github.com/protocolbuffers/protobuf/commit/cbdc8ab774aeb888f635a1f3d0bce206e173b276"><code>cbdc8ab</code></a> Merge pull request <a href="https://redirect.github.com/protocolbuffers/protobuf/issues/19719">#19719</a> from protocolbuffers/29.x-202412181411</li> <li><a href="https://github.com/protocolbuffers/protobuf/commit/5621748f97259be36587bf337aae554f6361cb22"><code>5621748</code></a> Updating version.json and repo version numbers to: 29.3-dev</li> <li>See full diff in <a href="https://github.com/protocolbuffers/protobuf/compare/v5.29.2...v5.29.3">compare view</a></li> </ul> </details> <br /> Updates `grpcio` from 1.68.1 to 1.70.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/grpc/grpc/releases">grpcio's releases</a>.</em></p> <blockquote> <h2>Release v1.70.0</h2> <p>This is release 1.70.0 (<a href="https://github.com/grpc/grpc/blob/master/doc/g_stands_for.md">genius</a>) of gRPC Core.</p> <p>For gRPC documentation, see <a href="https://grpc.io/">grpc.io</a>. For previous releases, see <a href="https://github.com/grpc/grpc/releases">Releases</a>.</p> <p>This release contains refinements, improvements, and bug fixes, with highlights listed below.</p> <h2>Core</h2> <ul> <li>[BoringSSL] Update third_party/boringssl-with-bazel. (<a href="https://redirect.github.com/grpc/grpc/issues/38274">#38274</a>)</li> </ul> <h2>C++</h2> <ul> <li>gRPC C++ begins to require C++17 or later to build and use gRPC C++. You may need the following settings: <ul> <li>CMake: Add CMAKE_CXX_STANDARD=17 to your CMake build command.</li> <li>Bazel: Add --cxxopt='/std:c++17' and --host_cxxopt='/std:c++17' to your Bazel build command.</li> <li>gRPC 1.69, the final version compatible with C++14, will be supported until December 10, 2025, according to <a href="https://github.com/grpc/proposal/blob/master/L120-requiring-cpp17.md">https://github.com/grpc/proposal/blob/master/L120-requiring-cpp17.md</a>.</li> </ul> </li> </ul> <h2>Release v1.70.0-pre1</h2> <p>This is a prerelease of gRPC Core 1.70.0 (genius).</p> <p>For gRPC documentation, see <a href="https://grpc.io/">grpc.io</a>. For previous releases, see <a href="https://github.com/grpc/grpc/releases">Releases</a>.</p> <p>This prerelease contains refinements, improvements, and bug fixes.</p> <h2>Release v1.69.0</h2> <p>This is release 1.69.0 (<a href="https://github.com/grpc/grpc/blob/master/doc/g_stands_for.md">gridiron</a>) of gRPC Core.</p> <p>For gRPC documentation, see <a href="https://grpc.io/">grpc.io</a>. For previous releases, see <a href="https://github.com/grpc/grpc/releases">Releases</a>.</p> <p>This release contains refinements, improvements, and bug fixes, with highlights listed below.</p> <h2>Core</h2> <ul> <li>[Alarm] Fix Alarm reuse on cancellation. (<a href="https://redirect.github.com/grpc/grpc/pull/38114">#38114</a>)</li> <li>[xDS RBAC] Support string_match in HeaderMatcher. (<a href="https://redirect.github.com/grpc/grpc/pull/38185">#38185</a>)</li> <li>[pick_first] fix shutdown bug in new PF impl. (<a href="https://redirect.github.com/grpc/grpc/pull/38144">#38144</a>)</li> <li>[c-ares] Fix inverted length check in GrpcPolledFdWindows. (<a href="https://redirect.github.com/grpc/grpc/pull/38101">#38101</a>)</li> <li>[RetryFilter] Copy the SliceBuffer from RetryFilter's cache to batch payload. (<a href="https://redirect.github.com/grpc/grpc/pull/38069">#38069</a>)</li> <li>[EventEngine] Add stronger wording on Endpoint::Read contract. (<a href="https://redirect.github.com/grpc/grpc/pull/38036">#38036</a>)</li> <li>[chttp2] Fix channelz address. (<a href="https://redirect.github.com/grpc/grpc/pull/38022">#38022</a>)</li> <li>[XdsClient] Add missing authority to XdsClient metrics scope. (<a href="https://redirect.github.com/grpc/grpc/pull/38009">#38009</a>)</li> <li>[EventEngine] API contract: Endpoint::Read will provide either an error or data, but never both. (<a href="https://redirect.github.com/grpc/grpc/pull/38019">#38019</a>)</li> <li>[Build] Dropped Bazel 6.x support. (<a href="https://redirect.github.com/grpc/grpc/pull/37979">#37979</a>)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/grpc/grpc/commit/93571f6142f823167d54bc1169fed567b2407d94"><code>93571f6</code></a> [Backport to 1.70.x] Updated python requirements (<a href="https://redirect.github.com/grpc/grpc/issues/38524">#38524</a>)</li> <li><a href="https://github.com/grpc/grpc/commit/9d3bef715bd77b60559398fc66402264bdf80ff7"><code>9d3bef7</code></a> [Revert] "[ruby] [backport-1.70.x] Build/test ruby 3.4 and build native gems ...</li> <li><a href="https://github.com/grpc/grpc/commit/6788979465fa78deff593e4abf59d385439b28c5"><code>6788979</code></a> [Release] Bump version to 1.70.0 (on v1.70.x branch) (<a href="https://redirect.github.com/grpc/grpc/issues/38509">#38509</a>)</li> <li><a href="https://github.com/grpc/grpc/commit/2d2d80ba0e914d4a6b53e9ecb8f068b81d6579e7"><code>2d2d80b</code></a> [Backport] Php & Dart interop test fixes (<a href="https://redirect.github.com/grpc/grpc/issues/38463">#38463</a>) (<a href="https://redirect.github.com/grpc/grpc/issues/38507">#38507</a>)</li> <li><a href="https://github.com/grpc/grpc/commit/ab2222db264057830e887ad3bbb04a4f178c3227"><code>ab2222d</code></a> [ruby] [backport-1.70.x] Build/test ruby 3.4 and build native gems with Ruby ...</li> <li><a href="https://github.com/grpc/grpc/commit/f1e4dfaca81edf0390c0c58cb51859b63b797123"><code>f1e4dfa</code></a> [Backport-to-1.70.x] Fix python build script to handle C and C++ std options ...</li> <li><a href="https://github.com/grpc/grpc/commit/6c8df892cd1dc596c07b82242754cd7dec6e656d"><code>6c8df89</code></a> [Release] Bump version to 1.70.0-pre1 (on v1.70.x branch) (<a href="https://redirect.github.com/grpc/grpc/issues/38407">#38407</a>)</li> <li><a href="https://github.com/grpc/grpc/commit/9eb9ebd19ef1f69f367ad68c41edb8bf9f4954c3"><code>9eb9ebd</code></a> [Release] Bump core version to 45.0.0 for upcoming release (<a href="https://redirect.github.com/grpc/grpc/issues/38403">#38403</a>)</li> <li><a href="https://github.com/grpc/grpc/commit/df95cf9de3733c2bdcb03d723e396c6fdee5b9d9"><code>df95cf9</code></a> [benchmark] Match case of excluded scenario. (<a href="https://redirect.github.com/grpc/grpc/issues/38390">#38390</a>)</li> <li><a href="https://github.com/grpc/grpc/commit/048ea424201ec6b69fe8eb1a1c13303074c8e917"><code>048ea42</code></a> [CI] Re-enabled modernize-unary-static-assert (<a href="https://redirect.github.com/grpc/grpc/issues/38333">#38333</a>)</li> <li>Additional commits viewable in <a href="https://github.com/grpc/grpc/compare/v1.68.1...v1.70.0">compare view</a></li> </ul> </details> <br /> Updates `pydoclint` from 0.5.14 to 0.6.0 <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.6.0</h2> <h2>What's Changed</h2> <ul> <li>Add DOC003 to check docstring style mismatch by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/207">jsh9/pydoclint#207</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0">https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0</a></p> <h2>0.5.19</h2> <h2>What's Changed</h2> <ul> <li>Fix false positive DOC405 & DOC201 for bare returns by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/205">jsh9/pydoclint#205</a></li> <li>Add new config option for documenting star arguments by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/206">jsh9/pydoclint#206</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19">https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19</a></p> <h2>0.5.18</h2> <h2>What's Changed</h2> <ul> <li>Fix parsing and comparison of chained custom exceptions by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/203">jsh9/pydoclint#203</a></li> <li>Fix wording in DOC503 violation message by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/204">jsh9/pydoclint#204</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18">https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18</a></p> <h2>0.5.17</h2> <h2>What's Changed</h2> <ul> <li>Add an option to auto regenerate baseline by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/202">jsh9/pydoclint#202</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17">https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17</a></p> <h2>0.5.16</h2> <h2>What's Changed</h2> <ul> <li>👌 Add pre-commit-hook to run pydoclint via flake8 by <a href="https://github.com/s-weigand"><code>@s-weigand</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/200">jsh9/pydoclint#200</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16">https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16</a></p> <h2>0.5.15</h2> <h2>What's Changed</h2> <ul> <li>Throw DOC001 when docstring sections can't be parsed (numpy style) by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/199">jsh9/pydoclint#199</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.14...0.5.15">https://github.com/jsh9/pydoclint/compare/0.5.14...0.5.15</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.6.0] - 2025-01-13</h2> <ul> <li>Added <ul> <li>A new violation code, <code>DOC003</code>, to detect docstring style mismatch (when docstrings are written in the style different from specified)</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0">https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0</a></li> </ul> </li> </ul> <h2>[0.5.19] - 2025-01-12</h2> <ul> <li>Fixed <ul> <li>False positive DOC405 and DOC201 when we have bare return statements together with <code>yield</code> statements</li> </ul> </li> <li>Added <ul> <li>A new config option <code>--should-document-star-arguments</code> (if <code>False</code>, star arguments such as <code>*args</code> and <code>**kwargs</code> should not be documented in the docstring)</li> <li>A pre-commit step to check that "Full diff" is always added in CHANGELOG.md</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19">https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19</a></li> </ul> </li> </ul> <h2>[0.5.18] - 2025-01-12</h2> <ul> <li>Fixed <ul> <li>An issue where custom exceptions such as <code>a.b.c.MyException.from_str</code> cannot be properly parsed and compared</li> <li>A minor wording issue in DOC503 violation message</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18">https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18</a></li> </ul> </li> </ul> <h2>[0.5.17] - 2025-01-12</h2> <ul> <li>Added <ul> <li>A new config option <code>--auto-regenerate-baseline</code> to automatically regenerate the baseline file for every successful <em>pydoclint</em> run</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17">https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17</a></li> </ul> </li> </ul> <h2>[0.5.16] - 2025-01-11</h2> <ul> <li> <p>Added</p> <ul> <li>A pre-commit hook for using <em>pydoclint</em> as a flake8 plugin</li> </ul> </li> <li> <p>Full diff</p> <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16">https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16</a></li> </ul> </li> </ul> <h2>[0.5.15] - 2025-01-10</h2> <ul> <li>Changed</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/jsh9/pydoclint/commit/2e8af22f66de795a7bd0ac661353596e8847bbad"><code>2e8af22</code></a> Add DOC003 to check docstring style mismatch (<a href="https://redirect.github.com/jsh9/pydoclint/issues/207">#207</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/94039b23bedf98b6a6469312d04eecee9797a90f"><code>94039b2</code></a> Add new config option for documenting star arguments (<a href="https://redirect.github.com/jsh9/pydoclint/issues/206">#206</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/22b9b37b6ccda9c19be9757ee2c7e0a86a836b96"><code>22b9b37</code></a> Fix false positive DOC405 & DOC201 for bare returns (<a href="https://redirect.github.com/jsh9/pydoclint/issues/205">#205</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/1f2ea57d39bce59362382a739572504b6ee5dfb0"><code>1f2ea57</code></a> Fix wording in DOC503 violation message (<a href="https://redirect.github.com/jsh9/pydoclint/issues/204">#204</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/91263b841745adef4a052354bf4301107fc803ae"><code>91263b8</code></a> Fix parsing and comparison of chained custom exceptions (<a href="https://redirect.github.com/jsh9/pydoclint/issues/203">#203</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/64ef92306050cd21e51a99b1dccd87a41274f6e5"><code>64ef923</code></a> Add tips, tricks, and pitfalls to README</li> <li><a href="https://github.com/jsh9/pydoclint/commit/fe188f425eae9e77c74f169ff2d16e740e370d0b"><code>fe188f4</code></a> Add an option to auto regenerate baseline (<a href="https://redirect.github.com/jsh9/pydoclint/issues/202">#202</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/7282eb691ca4c1e4742c62fe7c3578bb9348f0fb"><code>7282eb6</code></a> 👌 Add pre-commit-hook to run pydoclint via flake8 (<a href="https://redirect.github.com/jsh9/pydoclint/issues/200">#200</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/4021d8d9b3216e2789bd5f28fa7c761228b9b3d4"><code>4021d8d</code></a> Throw DOC001 when docstring sections can't be parsed (numpy style) (<a href="https://redirect.github.com/jsh9/pydoclint/issues/199">#199</a>)</li> <li>See full diff in <a href="https://github.com/jsh9/pydoclint/compare/0.5.14...0.6.0">compare view</a></li> </ul> </details> <br /> Updates `mkdocs-material` from 9.5.49 to 9.6.1 <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.6.1</h2> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7943">#7943</a>: Tags plugin crashing due to merge error</li> </ul> <h2>mkdocs-material-9.6.0</h2> <ul> <li>Added meta plugin</li> <li>Rewrite of the tags plugin</li> <li>Added support for allow lists in tags plugin</li> <li>Added support for and custom sorting in tags plugin</li> <li>Added support for related links in blog plugin</li> <li>Added support for custom index pages in blog plugin</li> <li>Added support for navigation subtitles</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7924">#7924</a>: Anchors might require two clicks when using instant navigation</li> </ul> <h2>mkdocs-material-9.5.50</h2> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7913">#7913</a>: Social plugin renders attribute lists in page title</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.6.1 (2025-01-31)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7943">#7943</a>: Tags plugin crashing due to merge error</li> </ul> <p>mkdocs-material-9.6.0 (2025-01-31)</p> <ul> <li>Added meta plugin</li> <li>Rewrite of the tags plugin</li> <li>Added support for allow lists in tags plugin</li> <li>Added support for and custom sorting in tags plugin</li> <li>Added support for related links in blog plugin</li> <li>Added support for custom index pages in blog plugin</li> <li>Added support for navigation subtitles</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7924">#7924</a>: Anchors might require two clicks when using instant navigation</li> </ul> <p>mkdocs-material-9.5.50 (2025-01-18)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7913">#7913</a>: Social plugin renders attribute lists in page title</li> </ul> <p>mkdocs-material-9.5.49+insiders-4.53.15 (2025-01-15)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7896">#7896</a>: Scoped tags listings not rendering in subsections</li> </ul> <p>mkdocs-material-9.5.49 (2024-12-16)</p> <ul> <li>Adjusted title color in dark mode for all supported Mermaid.js diagrams</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7803">#7803</a>: Privacy plugin crashes on generated files</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7781">#7781</a>: Mermaid.js flow chart title not visible in dark mode</li> </ul> <p>mkdocs-material-9.5.48 (2024-12-08)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7774">#7774</a>: Disabling social cards doesn't work</li> </ul> <p>mkdocs-material-9.5.47 (2024-12-01)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7750">#7750</a>: Numeric tags break search</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7748">#7748</a>: Blog plugin breaks when using future drafts (9.5.45 regression)</li> </ul> <p>mkdocs-material-9.5.46 (2024-11-25)</p> <ul> <li>Added support for removing preload hints in privacy plugin</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7734">#7734</a>: Code blocks in h5 headlines are uppercased</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7725">#7725</a>: Blog plugin crashing on missing timezone (9.5.45 regression)</li> </ul> <p>mkdocs-material-9.5.45 (2024-11-20)</p> <ul> <li>Reduced size of Docker image through multi-stage build</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7708">#7708</a>: Blog plugin crashing on YAML dates with timezones</li> </ul> <p>mkdocs-material-9.5.44 (2024-11-05)</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/454af62a45622e3ebf14d25b3ab1ea69c1130e8f"><code>454af62</code></a> Prepare 9.6.1 release</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/2d147c72c02b842937320c58b98e20179742a7a6"><code>2d147c7</code></a> Fixed crashing tags plugin</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/34dc4feba7b45c892c3d6ec2c3d8413a5ebdac5f"><code>34dc4fe</code></a> Updated Premium sponsors</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/8edc6f8daaf0e1e7ebb94be99d3f10e46cd8bfbd"><code>8edc6f8</code></a> Updated Premium sponsors</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/0be1d6b3c8b9f3aff1f91be8f7050dcc96a40321"><code>0be1d6b</code></a> Documentation</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/34e301d311d2e753022e1ae23fd851cbfd73be6a"><code>34e301d</code></a> Fixed build badge</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/4ca5214ebf1665fff5de7be140ab6188eb0ec5a5"><code>4ca5214</code></a> Corrected position of related links in blog post</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/627737ae38905578d761fb7c916b5fdcf854973e"><code>627737a</code></a> Merge pull request <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7942">#7942</a> from squidfunk/merge/chipotle</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/49daf573f0cf01cd66a87f6bba3815b775280287"><code>49daf57</code></a> Updated dependencies</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/1416697c6b27725859d522c8763914c2b1fb1615"><code>1416697</code></a> Prepare 9.6.0 release</li> <li>Additional commits viewable in <a href="https://github.com/squidfunk/mkdocs-material/compare/9.5.49...9.6.1">compare view</a></li> </ul> </details> <br /> Updates `pylint` from 3.3.3 to 3.3.4 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pylint-dev/pylint/commit/c2b01c3d0b6410d4c93eb1f32fb28f2116b1e68f"><code>c2b01c3</code></a> Bump pylint to 3.3.4, update changelog</li> <li><a href="https://github.com/pylint-dev/pylint/commit/023cd4355c48e3e0c7702e65fde2d99794b25554"><code>023cd43</code></a> [isort] Permit to use isort 6 (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10204">#10204</a>)</li> <li><a href="https://github.com/pylint-dev/pylint/commit/050acfe49c525cd5e58f7c289d35aee1af4051e5"><code>050acfe</code></a> Calculate linter.config.jobs in cgroupsv2 environments (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10089">#10089</a>) (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10169">#10169</a>)</li> <li><a href="https://github.com/pylint-dev/pylint/commit/d6992b8cf993af7a94a9a3044185fb3ea838ac49"><code>d6992b8</code></a> fix "skipped files" count calculation (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10141">#10141</a>)</li> <li>See full diff in <a href="https://github.com/pylint-dev/pylint/compare/v3.3.3...v3.3.4">compare view</a></li> </ul> </details> <br /> Updates `setuptools` from 75.6.0 to 75.8.0 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pypa/setuptools/blob/main/NEWS.rst">setuptools's changelog</a>.</em></p> <blockquote> <h1>v75.8.0</h1> <h2>Features</h2> <ul> <li>Implemented <code>Dynamic</code> field for core metadata (as introduced in PEP 643). The existing implementation is currently experimental and the exact approach may change in future releases. (<a href="https://redirect.github.com/pypa/setuptools/issues/4698">#4698</a>)</li> </ul> <h1>v75.7.0</h1> <h2>Features</h2> <ul> <li><code>pypa/distutils#310</code><a href="https://redirect.github.com/pypa/setuptools/issues/4478">#4478</a>)</li> <li>Synced with pypa/distutils@ff11eed0c including bugfix for duplicate CFLAGS and adaption to support Python 3.13 is_abs in the C compiler (<a href="https://redirect.github.com/pypa/setuptools/issues/4669">#4669</a>). (<a href="https://redirect.github.com/pypa/setuptools/issues/4790">#4790</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pypa/setuptools/commit/5c9d9809dec1b20e2a9da6b4a06355fd6f87a190"><code>5c9d980</code></a> Bump version: 75.7.0 → 75.8.0</li> <li><a href="https://github.com/pypa/setuptools/commit/72c422261b40f2b95a8be6605cc7dd93cec81794"><code>72c4222</code></a> Avoid using Any in function</li> <li><a href="https://github.com/pypa/setuptools/commit/1c61d4799438677c7cfaaccf281312bfb1aee9b3"><code>1c61d47</code></a> Add news fragments for PEP 643</li> <li><a href="https://github.com/pypa/setuptools/commit/f285d01e2661b01e4947a4dca7704790b65f2967"><code>f285d01</code></a> Implement PEP 643 (<code>Dynamic</code> field for core metadata) (<a href="https://redirect.github.com/pypa/setuptools/issues/4698">#4698</a>)</li> <li><a href="https://github.com/pypa/setuptools/commit/a50f6e2e1e8b4610adde709079bec17ad0944197"><code>a50f6e2</code></a> Fix _static.Dict.<strong>ior</strong> for Python 3.8</li> <li><a href="https://github.com/pypa/setuptools/commit/b055895fa337a6e03a29c2ea6493b6b778d2ba46"><code>b055895</code></a> Add extra tests for static/dynamic metadata</li> <li><a href="https://github.com/pypa/setuptools/commit/770b4fc8f6248d862629028f5ee4218975f9516b"><code>770b4fc</code></a> Remove test workaround for unmarked static values from pyproject.toml</li> <li><a href="https://github.com/pypa/setuptools/commit/8b22d73be5e23a9611398d81aedc5164115940ce"><code>8b22d73</code></a> Mark values from pyproject.toml as static</li> <li><a href="https://github.com/pypa/setuptools/commit/f699fd842e3ddedbe937ee33b0bd6ad28e735664"><code>f699fd8</code></a> Fix spelling error</li> <li><a href="https://github.com/pypa/setuptools/commit/8b4c8a3c95f43d771d0fa6e4ebceea3436bc70f7"><code>8b4c8a3</code></a> Add tests for static 'attr' directive</li> <li>Additional commits viewable in <a href="https://github.com/pypa/setuptools/compare/v75.6.0...v75.8.0">compare view</a></li> </ul> </details> <br /> Updates `grpcio-tools` from 1.68.1 to 1.70.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/grpc/grpc/releases">grpcio-tools's releases</a>.</em></p> <blockquote> <h2>Release v1.70.0</h2> <p>This is release 1.70.0 (<a href="https://github.com/grpc/grpc/blob/master/doc/g_stands_for.md">genius</a>) of gRPC Core.</p> <p>For gRPC documentation, see <a href="https://grpc.io/">grpc.io</a>. For previous releases, see <a href="https://github.com/grpc/grpc/releases">Releases</a>.</p> <p>This release contains refinements, improvements, and bug fixes, with highlights listed below.</p> <h2>Core</h2> <ul> <li>[BoringSSL] Update third_party/boringssl-with-bazel. (<a href="https://redirect.github.com/grpc/grpc/issues/38274">#38274</a>)</li> </ul> <h2>C++</h2> <ul> <li>gRPC C++ begins to require C++17 or later to build and use gRPC C++. You may need the following settings: <ul> <li>CMake: Add CMAKE_CXX_STANDARD=17 to your CMake build command.</li> <li>Bazel: Add --cxxopt='/std:c++17' and --host_cxxopt='/std:c++17' to your Bazel build command.</li> <li>gRPC 1.69, the final version compatible with C++14, will be supported until December 10, 2025, according to <a href="https://github.com/grpc/proposal/blob/master/L120-requiring-cpp17.md">https://github.com/grpc/proposal/blob/master/L120-requiring-cpp17.md</a>.</li> </ul> </li> </ul> <h2>Release v1.70.0-pre1</h2> <p>This is a prerelease of gRPC Core 1.70.0 (genius).</p> <p>For gRPC documentation, see <a href="https://grpc.io/">grpc.io</a>. For previous releases, see <a href="https://github.com/grpc/grpc/releases">Releases</a>.</p> <p>This prerelease contains refinements, improvements, and bug fixes.</p> <h2>Release v1.69.0</h2> <p>This is release 1.69.0 (<a href="https://github.com/grpc/grpc/blob/master/doc/g_stands_for.md">gridiron</a>) of gRPC Core.</p> <p>For gRPC documentation, see <a href="https://grpc.io/">grpc.io</a>. For previous releases, see <a href="https://github.com/grpc/grpc/releases">Releases</a>.</p> <p>This release contains refinements, improvements, and bug fixes, with highlights listed below.</p> <h2>Core</h2> <ul> <li>[Alarm] Fix Alarm reuse on cancellation. (<a href="https://redirect.github.com/grpc/grpc/pull/38114">#38114</a>)</li> <li>[xDS RBAC] Support string_match in HeaderMatcher. (<a href="https://redirect.github.com/grpc/grpc/pull/38185">#38185</a>)</li> <li>[pick_first] fix shutdown bug in new PF impl. (<a href="https://redirect.github.com/grpc/grpc/pull/38144">#38144</a>)</li> <li>[c-ares] Fix inverted length check in GrpcPolledFdWindows. (<a href="https://redirect.github.com/grpc/grpc/pull/38101">#38101</a>)</li> <li>[RetryFilter] Copy the SliceBuffer from RetryFilter's cache to batch payload. (<a href="https://redirect.github.com/grpc/grpc/pull/38069">#38069</a>)</li> <li>[EventEngine] Add stronger wording on Endpoint::Read contract. (<a href="https://redirect.github.com/grpc/grpc/pull/38036">#38036</a>)</li> <li>[chttp2] Fix channelz address. (<a href="https://redirect.github.com/grpc/grpc/pull/38022">#38022</a>)</li> <li>[XdsClient] Add missing authority to XdsClient metrics scope. (<a href="https://redirect.github.com/grpc/grpc/pull/38009">#38009</a>)</li> <li>[EventEngine] API contract: Endpoint::Read will provide either an error or data, but never both. (<a href="https://redirect.github.com/grpc/grpc/pull/38019">#38019</a>)</li> <li>[Build] Dropped Bazel 6.x support. (<a href="https://redirect.github.com/grpc/grpc/pull/37979">#37979</a>)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/grpc/grpc/commit/93571f6142f823167d54bc1169fed567b2407d94"><code>93571f6</code></a> [Backport to 1.70.x] Updated python requirements (<a href="https://redirect.github.com/grpc/grpc/issues/38524">#38524</a>)</li> <li><a href="https://github.com/grpc/grpc/commit/9d3bef715bd77b60559398fc66402264bdf80ff7"><code>9d3bef7</code></a> [Revert] "[ruby] [backport-1.70.x] Build/test ruby 3.4 and build native gems ...</li> <li><a href="https://github.com/grpc/grpc/commit/6788979465fa78deff593e4abf59d385439b28c5"><code>6788979</code></a> [Release] Bump version to 1.70.0 (on v1.70.x branch) (<a href="https://redirect.github.com/grpc/grpc/issues/38509">#38509</a>)</li> <li><a href="https://github.com/grpc/grpc/commit/2d2d80ba0e914d4a6b53e9ecb8f068b81d6579e7"><code>2d2d80b</code></a> [Backport] Php & Dart interop test fixes (<a href="https://redirect.github.com/grpc/grpc/issues/38463">#38463</a>) (<a href="https://redirect.github.com/grpc/grpc/issues/38507">#38507</a>)</li> <li><a href="https://github.com/grpc/grpc/commit/ab2222db264057830e887ad3bbb04a4f178c3227"><code>ab2222d</code></a> [ruby] [backport-1.70.x] Build/test ruby 3.4 and build native gems with Ruby ...</li> <li><a href="https://github.com/grpc/grpc/commit/f1e4dfaca81edf0390c0c58cb51859b63b797123"><code>f1e4dfa</code></a> [Backport-to-1.70.x] Fix python build script to handle C and C++ std options ...</li> <li><a href="https://github.com/grpc/grpc/commit/6c8df892cd1dc596c07b82242754cd7dec6e656d"><code>6c8df89</code></a> [Release] Bump version to 1.70.0-pre1 (on v1.70.x branch) (<a href="https://redirect.github.com/grpc/grpc/issues/38407">#38407</a>)</li> <li><a href="https://github.com/grpc/grpc/commit/9eb9ebd19ef1f69f367ad68c41edb8bf9f4954c3"><code>9eb9ebd</code></a> [Release] Bump core version to 45.0.0 for upcoming release (<a href="https://redirect.github.com/grpc/grpc/issues/38403">#38403</a>)</li> <li><a href="https://github.com/grpc/grpc/commit/df95cf9de3733c2bdcb03d723e396c6fdee5b9d9"><code>df95cf9</code></a> [benchmark] Match case of excluded scenario. (<a href="https://redirect.github.com/grpc/grpc/issues/38390">#38390</a>)</li> <li><a href="https://github.com/grpc/grpc/commit/048ea424201ec6b69fe8eb1a1c13303074c8e917"><code>048ea42</code></a> [CI] Re-enabled modernize-unary-static-assert (<a href="https://redirect.github.com/grpc/grpc/issues/38333">#38333</a>)</li> <li>Additional commits viewable in <a href="https://github.com/grpc/grpc/compare/v1.68.1...v1.70.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>
Bumps the required group with 6 updates: | Package | From | To | | --- | --- | --- | | [pydoclint](https://github.com/jsh9/pydoclint) | `0.5.14` | `0.6.0` | | [mkdocs-material](https://github.com/squidfunk/mkdocs-material) | `9.5.49` | `9.6.1` | | [uv](https://github.com/astral-sh/uv) | `0.5.13` | `0.5.26` | | [pylint](https://github.com/pylint-dev/pylint) | `3.3.3` | `3.3.4` | | [pytest-asyncio](https://github.com/pytest-dev/pytest-asyncio) | `0.25.1` | `0.25.3` | | [setuptools](https://github.com/pypa/setuptools) | `75.6.0` | `75.8.0` | Updates `pydoclint` from 0.5.14 to 0.6.0 <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.6.0</h2> <h2>What's Changed</h2> <ul> <li>Add DOC003 to check docstring style mismatch by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/207">jsh9/pydoclint#207</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0">https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0</a></p> <h2>0.5.19</h2> <h2>What's Changed</h2> <ul> <li>Fix false positive DOC405 & DOC201 for bare returns by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/205">jsh9/pydoclint#205</a></li> <li>Add new config option for documenting star arguments by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/206">jsh9/pydoclint#206</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19">https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19</a></p> <h2>0.5.18</h2> <h2>What's Changed</h2> <ul> <li>Fix parsing and comparison of chained custom exceptions by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/203">jsh9/pydoclint#203</a></li> <li>Fix wording in DOC503 violation message by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/204">jsh9/pydoclint#204</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18">https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18</a></p> <h2>0.5.17</h2> <h2>What's Changed</h2> <ul> <li>Add an option to auto regenerate baseline by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/202">jsh9/pydoclint#202</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17">https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17</a></p> <h2>0.5.16</h2> <h2>What's Changed</h2> <ul> <li>👌 Add pre-commit-hook to run pydoclint via flake8 by <a href="https://github.com/s-weigand"><code>@s-weigand</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/200">jsh9/pydoclint#200</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16">https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16</a></p> <h2>0.5.15</h2> <h2>What's Changed</h2> <ul> <li>Throw DOC001 when docstring sections can't be parsed (numpy style) by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/199">jsh9/pydoclint#199</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.14...0.5.15">https://github.com/jsh9/pydoclint/compare/0.5.14...0.5.15</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.6.0] - 2025-01-13</h2> <ul> <li>Added <ul> <li>A new violation code, <code>DOC003</code>, to detect docstring style mismatch (when docstrings are written in the style different from specified)</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0">https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0</a></li> </ul> </li> </ul> <h2>[0.5.19] - 2025-01-12</h2> <ul> <li>Fixed <ul> <li>False positive DOC405 and DOC201 when we have bare return statements together with <code>yield</code> statements</li> </ul> </li> <li>Added <ul> <li>A new config option <code>--should-document-star-arguments</code> (if <code>False</code>, star arguments such as <code>*args</code> and <code>**kwargs</code> should not be documented in the docstring)</li> <li>A pre-commit step to check that "Full diff" is always added in CHANGELOG.md</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19">https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19</a></li> </ul> </li> </ul> <h2>[0.5.18] - 2025-01-12</h2> <ul> <li>Fixed <ul> <li>An issue where custom exceptions such as <code>a.b.c.MyException.from_str</code> cannot be properly parsed and compared</li> <li>A minor wording issue in DOC503 violation message</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18">https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18</a></li> </ul> </li> </ul> <h2>[0.5.17] - 2025-01-12</h2> <ul> <li>Added <ul> <li>A new config option <code>--auto-regenerate-baseline</code> to automatically regenerate the baseline file for every successful <em>pydoclint</em> run</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17">https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17</a></li> </ul> </li> </ul> <h2>[0.5.16] - 2025-01-11</h2> <ul> <li> <p>Added</p> <ul> <li>A pre-commit hook for using <em>pydoclint</em> as a flake8 plugin</li> </ul> </li> <li> <p>Full diff</p> <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16">https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16</a></li> </ul> </li> </ul> <h2>[0.5.15] - 2025-01-10</h2> <ul> <li>Changed</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/jsh9/pydoclint/commit/2e8af22f66de795a7bd0ac661353596e8847bbad"><code>2e8af22</code></a> Add DOC003 to check docstring style mismatch (<a href="https://redirect.github.com/jsh9/pydoclint/issues/207">#207</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/94039b23bedf98b6a6469312d04eecee9797a90f"><code>94039b2</code></a> Add new config option for documenting star arguments (<a href="https://redirect.github.com/jsh9/pydoclint/issues/206">#206</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/22b9b37b6ccda9c19be9757ee2c7e0a86a836b96"><code>22b9b37</code></a> Fix false positive DOC405 & DOC201 for bare returns (<a href="https://redirect.github.com/jsh9/pydoclint/issues/205">#205</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/1f2ea57d39bce59362382a739572504b6ee5dfb0"><code>1f2ea57</code></a> Fix wording in DOC503 violation message (<a href="https://redirect.github.com/jsh9/pydoclint/issues/204">#204</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/91263b841745adef4a052354bf4301107fc803ae"><code>91263b8</code></a> Fix parsing and comparison of chained custom exceptions (<a href="https://redirect.github.com/jsh9/pydoclint/issues/203">#203</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/64ef92306050cd21e51a99b1dccd87a41274f6e5"><code>64ef923</code></a> Add tips, tricks, and pitfalls to README</li> <li><a href="https://github.com/jsh9/pydoclint/commit/fe188f425eae9e77c74f169ff2d16e740e370d0b"><code>fe188f4</code></a> Add an option to auto regenerate baseline (<a href="https://redirect.github.com/jsh9/pydoclint/issues/202">#202</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/7282eb691ca4c1e4742c62fe7c3578bb9348f0fb"><code>7282eb6</code></a> 👌 Add pre-commit-hook to run pydoclint via flake8 (<a href="https://redirect.github.com/jsh9/pydoclint/issues/200">#200</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/4021d8d9b3216e2789bd5f28fa7c761228b9b3d4"><code>4021d8d</code></a> Throw DOC001 when docstring sections can't be parsed (numpy style) (<a href="https://redirect.github.com/jsh9/pydoclint/issues/199">#199</a>)</li> <li>See full diff in <a href="https://github.com/jsh9/pydoclint/compare/0.5.14...0.6.0">compare view</a></li> </ul> </details> <br /> Updates `mkdocs-material` from 9.5.49 to 9.6.1 <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.6.1</h2> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7943">#7943</a>: Tags plugin crashing due to merge error</li> </ul> <h2>mkdocs-material-9.6.0</h2> <ul> <li>Added meta plugin</li> <li>Rewrite of the tags plugin</li> <li>Added support for allow lists in tags plugin</li> <li>Added support for and custom sorting in tags plugin</li> <li>Added support for related links in blog plugin</li> <li>Added support for custom index pages in blog plugin</li> <li>Added support for navigation subtitles</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7924">#7924</a>: Anchors might require two clicks when using instant navigation</li> </ul> <h2>mkdocs-material-9.5.50</h2> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7913">#7913</a>: Social plugin renders attribute lists in page title</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.6.1 (2025-01-31)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7943">#7943</a>: Tags plugin crashing due to merge error</li> </ul> <p>mkdocs-material-9.6.0 (2025-01-31)</p> <ul> <li>Added meta plugin</li> <li>Rewrite of the tags plugin</li> <li>Added support for allow lists in tags plugin</li> <li>Added support for and custom sorting in tags plugin</li> <li>Added support for related links in blog plugin</li> <li>Added support for custom index pages in blog plugin</li> <li>Added support for navigation subtitles</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7924">#7924</a>: Anchors might require two clicks when using instant navigation</li> </ul> <p>mkdocs-material-9.5.50 (2025-01-18)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7913">#7913</a>: Social plugin renders attribute lists in page title</li> </ul> <p>mkdocs-material-9.5.49+insiders-4.53.15 (2025-01-15)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7896">#7896</a>: Scoped tags listings not rendering in subsections</li> </ul> <p>mkdocs-material-9.5.49 (2024-12-16)</p> <ul> <li>Adjusted title color in dark mode for all supported Mermaid.js diagrams</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7803">#7803</a>: Privacy plugin crashes on generated files</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7781">#7781</a>: Mermaid.js flow chart title not visible in dark mode</li> </ul> <p>mkdocs-material-9.5.48 (2024-12-08)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7774">#7774</a>: Disabling social cards doesn't work</li> </ul> <p>mkdocs-material-9.5.47 (2024-12-01)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7750">#7750</a>: Numeric tags break search</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7748">#7748</a>: Blog plugin breaks when using future drafts (9.5.45 regression)</li> </ul> <p>mkdocs-material-9.5.46 (2024-11-25)</p> <ul> <li>Added support for removing preload hints in privacy plugin</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7734">#7734</a>: Code blocks in h5 headlines are uppercased</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7725">#7725</a>: Blog plugin crashing on missing timezone (9.5.45 regression)</li> </ul> <p>mkdocs-material-9.5.45 (2024-11-20)</p> <ul> <li>Reduced size of Docker image through multi-stage build</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7708">#7708</a>: Blog plugin crashing on YAML dates with timezones</li> </ul> <p>mkdocs-material-9.5.44 (2024-11-05)</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/454af62a45622e3ebf14d25b3ab1ea69c1130e8f"><code>454af62</code></a> Prepare 9.6.1 release</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/2d147c72c02b842937320c58b98e20179742a7a6"><code>2d147c7</code></a> Fixed crashing tags plugin</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/34dc4feba7b45c892c3d6ec2c3d8413a5ebdac5f"><code>34dc4fe</code></a> Updated Premium sponsors</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/8edc6f8daaf0e1e7ebb94be99d3f10e46cd8bfbd"><code>8edc6f8</code></a> Updated Premium sponsors</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/0be1d6b3c8b9f3aff1f91be8f7050dcc96a40321"><code>0be1d6b</code></a> Documentation</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/34e301d311d2e753022e1ae23fd851cbfd73be6a"><code>34e301d</code></a> Fixed build badge</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/4ca5214ebf1665fff5de7be140ab6188eb0ec5a5"><code>4ca5214</code></a> Corrected position of related links in blog post</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/627737ae38905578d761fb7c916b5fdcf854973e"><code>627737a</code></a> Merge pull request <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7942">#7942</a> from squidfunk/merge/chipotle</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/49daf573f0cf01cd66a87f6bba3815b775280287"><code>49daf57</code></a> Updated dependencies</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/1416697c6b27725859d522c8763914c2b1fb1615"><code>1416697</code></a> Prepare 9.6.0 release</li> <li>Additional commits viewable in <a href="https://github.com/squidfunk/mkdocs-material/compare/9.5.49...9.6.1">compare view</a></li> </ul> </details> <br /> Updates `uv` from 0.5.13 to 0.5.26 <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.5.26</h2> <h2>Release Notes</h2> <h3>Enhancements</h3> <ul> <li>Add support for <code>uvx python</code> (<a href="https://redirect.github.com/astral-sh/uv/pull/11076">#11076</a>)</li> <li>Allow <code>--no-dev --invert</code> in <code>uv tree</code> (<a href="https://redirect.github.com/astral-sh/uv/pull/11068">#11068</a>)</li> <li>Update <code>uv python install --reinstall</code> to reinstall all previous versions (<a href="https://redirect.github.com/astral-sh/uv/pull/11072">#11072</a>)</li> <li>Consistently write log messages with capitalized first word (<a href="https://redirect.github.com/astral-sh/uv/pull/11111">#11111</a>)</li> <li>Suggest <code>--build-backend</code> when <code>--backend</code> is passed to <code>uv init</code> (<a href="https://redirect.github.com/astral-sh/uv/pull/10958">#10958</a>)</li> <li>Improve retry trace message (<a href="https://redirect.github.com/astral-sh/uv/pull/11108">#11108</a>)</li> </ul> <h3>Performance</h3> <ul> <li>Remove unnecessary UTF-8 conversion in hash parsing (<a href="https://redirect.github.com/astral-sh/uv/pull/11110">#11110</a>)</li> </ul> <h3>Bug fixes</h3> <ul> <li>Ignore non-hash fragments in HTML API responses (<a href="https://redirect.github.com/astral-sh/uv/pull/11107">#11107</a>)</li> <li>Avoid resolving symbolic links when querying Python interpreters (<a href="https://redirect.github.com/astral-sh/uv/pull/11083">#11083</a>)</li> <li>Avoid sharing state between universal and non-universal resolves (<a href="https://redirect.github.com/astral-sh/uv/pull/11051">#11051</a>)</li> <li>Error when <code>--script</code> is passing a non-PEP 723 script (<a href="https://redirect.github.com/astral-sh/uv/pull/11118">#11118</a>)</li> <li>Make metadata deserialization failures non-fatal in the cache (<a href="https://redirect.github.com/astral-sh/uv/pull/11105">#11105</a>)</li> <li>Mark metadata as dynamic when reading from built wheel cache (<a href="https://redirect.github.com/astral-sh/uv/pull/11046">#11046</a>)</li> <li>Propagate credentials for <code><index>/simple</code> to <code><index>/...</code> endpoints (<a href="https://redirect.github.com/astral-sh/uv/pull/11074">#11074</a>)</li> <li>Fix conflicting extra bug during <code>uv sync</code> (<a href="https://redirect.github.com/astral-sh/uv/pull/11075">#11075</a>)</li> </ul> <h3>Documentation</h3> <ul> <li>Add PyTorch XPU instructions to the PyTorch guide (<a href="https://redirect.github.com/astral-sh/uv/pull/11109">#11109</a>)</li> <li>Add docs for signal handling (<a href="https://redirect.github.com/astral-sh/uv/pull/11041">#11041</a>)</li> <li>Explain build frontend vs. build backend (<a href="https://redirect.github.com/astral-sh/uv/pull/11094">#11094</a>)</li> <li>Fix formatting of <code>RUST_LOG</code> documentation (<a href="https://redirect.github.com/astral-sh/uv/pull/10053">#10053</a>)</li> <li>Fix typo in <code>--no-deps</code> description (<a href="https://redirect.github.com/astral-sh/uv/pull/11073">#11073</a>)</li> <li>Reflow CLI documentation comments (<a href="https://redirect.github.com/astral-sh/uv/pull/11040">#11040</a>)</li> <li>Shorten "Using existing Python versions" nav item so it fits on one line (<a href="https://redirect.github.com/astral-sh/uv/pull/11077">#11077</a>)</li> <li>Some minor touch-ups to the Python install guide (<a href="https://redirect.github.com/astral-sh/uv/pull/11116">#11116</a>)</li> <li>Update Dependabot tracking issue link (<a href="https://redirect.github.com/astral-sh/uv/pull/11054">#11054</a>)</li> <li>Update documentation for running in a container (<a href="https://redirect.github.com/astral-sh/uv/pull/11052">#11052</a>)</li> <li>Upgrade PyTorch version in documentation (<a href="https://redirect.github.com/astral-sh/uv/pull/11114">#11114</a>)</li> <li>Use <code>sys_platform</code> in lieu of <code>platform_system</code> in PyTorch docs (<a href="https://redirect.github.com/astral-sh/uv/pull/11113">#11113</a>)</li> <li>Use positive (rather than negative) markers in PyTorch examples (<a href="https://redirect.github.com/astral-sh/uv/pull/11112">#11112</a>)</li> <li>Fix unnecessary backslashes in brackets (<a href="https://redirect.github.com/astral-sh/uv/pull/11059">#11059</a>)</li> <li>Suggest setting copy link mode in GitLab integration guide (<a href="https://redirect.github.com/astral-sh/uv/pull/11067">#11067</a>)</li> </ul> <h2>Install uv 0.5.26</h2> <h3>Install prebuilt binaries via shell script</h3> <pre lang="sh"><code></tr></table> </code></pre> </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.5.26</h2> <h3>Enhancements</h3> <ul> <li>Add support for <code>uvx python</code> (<a href="https://redirect.github.com/astral-sh/uv/pull/11076">#11076</a>)</li> <li>Allow <code>--no-dev --invert</code> in <code>uv tree</code> (<a href="https://redirect.github.com/astral-sh/uv/pull/11068">#11068</a>)</li> <li>Update <code>uv python install --reinstall</code> to reinstall all previous versions (<a href="https://redirect.github.com/astral-sh/uv/pull/11072">#11072</a>)</li> <li>Consistently write log messages with capitalized first word (<a href="https://redirect.github.com/astral-sh/uv/pull/11111">#11111</a>)</li> <li>Suggest <code>--build-backend</code> when <code>--backend</code> is passed to <code>uv init</code> (<a href="https://redirect.github.com/astral-sh/uv/pull/10958">#10958</a>)</li> <li>Improve retry trace message (<a href="https://redirect.github.com/astral-sh/uv/pull/11108">#11108</a>)</li> </ul> <h3>Performance</h3> <ul> <li>Remove unnecessary UTF-8 conversion in hash parsing (<a href="https://redirect.github.com/astral-sh/uv/pull/11110">#11110</a>)</li> </ul> <h3>Bug fixes</h3> <ul> <li>Ignore non-hash fragments in HTML API responses (<a href="https://redirect.github.com/astral-sh/uv/pull/11107">#11107</a>)</li> <li>Avoid resolving symbolic links when querying Python interpreters (<a href="https://redirect.github.com/astral-sh/uv/pull/11083">#11083</a>)</li> <li>Avoid sharing state between universal and non-universal resolves (<a href="https://redirect.github.com/astral-sh/uv/pull/11051">#11051</a>)</li> <li>Error when <code>--script</code> is passing a non-PEP 723 script (<a href="https://redirect.github.com/astral-sh/uv/pull/11118">#11118</a>)</li> <li>Make metadata deserialization failures non-fatal in the cache (<a href="https://redirect.github.com/astral-sh/uv/pull/11105">#11105</a>)</li> <li>Mark metadata as dynamic when reading from built wheel cache (<a href="https://redirect.github.com/astral-sh/uv/pull/11046">#11046</a>)</li> <li>Propagate credentials for <code><index>/simple</code> to <code><index>/...</code> endpoints (<a href="https://redirect.github.com/astral-sh/uv/pull/11074">#11074</a>)</li> <li>Fix conflicting extra bug during <code>uv sync</code> (<a href="https://redirect.github.com/astral-sh/uv/pull/11075">#11075</a>)</li> </ul> <h3>Documentation</h3> <ul> <li>Add PyTorch XPU instructions to the PyTorch guide (<a href="https://redirect.github.com/astral-sh/uv/pull/11109">#11109</a>)</li> <li>Add docs for signal handling (<a href="https://redirect.github.com/astral-sh/uv/pull/11041">#11041</a>)</li> <li>Explain build frontend vs. build backend (<a href="https://redirect.github.com/astral-sh/uv/pull/11094">#11094</a>)</li> <li>Fix formatting of <code>RUST_LOG</code> documentation (<a href="https://redirect.github.com/astral-sh/uv/pull/10053">#10053</a>)</li> <li>Fix typo in <code>--no-deps</code> description (<a href="https://redirect.github.com/astral-sh/uv/pull/11073">#11073</a>)</li> <li>Reflow CLI documentation comments (<a href="https://redirect.github.com/astral-sh/uv/pull/11040">#11040</a>)</li> <li>Shorten "Using existing Python versions" nav item so it fits on one line (<a href="https://redirect.github.com/astral-sh/uv/pull/11077">#11077</a>)</li> <li>Some minor touch-ups to the Python install guide (<a href="https://redirect.github.com/astral-sh/uv/pull/11116">#11116</a>)</li> <li>Update Dependabot tracking issue link (<a href="https://redirect.github.com/astral-sh/uv/pull/11054">#11054</a>)</li> <li>Update documentation for running in a container (<a href="https://redirect.github.com/astral-sh/uv/pull/11052">#11052</a>)</li> <li>Upgrade PyTorch version in documentation (<a href="https://redirect.github.com/astral-sh/uv/pull/11114">#11114</a>)</li> <li>Use <code>sys_platform</code> in lieu of <code>platform_system</code> in PyTorch docs (<a href="https://redirect.github.com/astral-sh/uv/pull/11113">#11113</a>)</li> <li>Use positive (rather than negative) markers in PyTorch examples (<a href="https://redirect.github.com/astral-sh/uv/pull/11112">#11112</a>)</li> <li>Fix unnecessary backslashes in brackets (<a href="https://redirect.github.com/astral-sh/uv/pull/11059">#11059</a>)</li> <li>Suggest setting copy link mode in GitLab integration guide (<a href="https://redirect.github.com/astral-sh/uv/pull/11067">#11067</a>)</li> </ul> <h2>0.5.25</h2> <h3>Enhancements</h3> <ul> <li>Allow installation of manylinux wheels on loongarch64 (<a href="https://redirect.github.com/astral-sh/uv/pull/10927">#10927</a>)</li> <li>Allow optional <code>=</code> for editables in <code>requirements.txt</code> (<a href="https://redirect.github.com/astral-sh/uv/pull/10954">#10954</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/5ef3d513903c623a0c2bec278ff087b5470c3930"><code>5ef3d51</code></a> Bump version to 0.5.26 (<a href="https://redirect.github.com/astral-sh/uv/issues/11119">#11119</a>)</li> <li><a href="https://github.com/astral-sh/uv/commit/bf9fe1d36d5ca98770d760b0f4c9e9c829d88eee"><code>bf9fe1d</code></a> Error when <code>--script</code> is passing a non-PEP 723 script (<a href="https://redirect.github.com/astral-sh/uv/issues/11118">#11118</a>)</li> <li><a href="https://github.com/astral-sh/uv/commit/e0a19be8252d2a1fa3a898cee1657a2ccbfb4581"><code>e0a19be</code></a> Touch-ups to the Python install guide (<a href="https://redirect.github.com/astral-sh/uv/issues/11116">#11116</a>)</li> <li><a href="https://github.com/astral-sh/uv/commit/80d485d32a27688c547a7909d1014433561a3bbe"><code>80d485d</code></a> Explain build frontend vs. build backend (<a href="https://redirect.github.com/astral-sh/uv/issues/11094">#11094</a>)</li> <li><a href="https://github.com/astral-sh/uv/commit/7531bb866902aedd3095f8da9ed87a2ae0676d2f"><code>7531bb8</code></a> Upgrade PyTorch version in documentation (<a href="https://redirect.github.com/astral-sh/uv/issues/11114">#11114</a>)</li> <li><a href="https://github.com/astral-sh/uv/commit/658ca89fb16916c39397c881ff0ad82d3eecc73e"><code>658ca89</code></a> Use <code>sys_platform</code> in lieu of <code>platform_system</code> in PyTorch docs (<a href="https://redirect.github.com/astral-sh/uv/issues/11113">#11113</a>)</li> <li><a href="https://github.com/astral-sh/uv/commit/9f8cd92bd358116df66e86cf557ec45383b9788f"><code>9f8cd92</code></a> Use positive (rather than negative) markers in PyTorch examples (<a href="https://redirect.github.com/astral-sh/uv/issues/11112">#11112</a>)</li> <li><a href="https://github.com/astral-sh/uv/commit/5c0fdfd7ce15726e5b2c25309873329084dbc3a0"><code>5c0fdfd</code></a> Consistently write log messages with capitalized first word (<a href="https://redirect.github.com/astral-sh/uv/issues/11111">#11111</a>)</li> <li><a href="https://github.com/astral-sh/uv/commit/ee31e1f11ba49cfb7fe2020863b1e5571ffaf6bb"><code>ee31e1f</code></a> Remove unnecessary UTF-8 conversion in hash parsing (<a href="https://redirect.github.com/astral-sh/uv/issues/11110">#11110</a>)</li> <li><a href="https://github.com/astral-sh/uv/commit/d514743b1a132091e7a0f9eedd89e15adaf82e1a"><code>d514743</code></a> Improve retry trace message (<a href="https://redirect.github.com/astral-sh/uv/issues/11108">#11108</a>)</li> <li>Additional commits viewable in <a href="https://github.com/astral-sh/uv/compare/0.5.13...0.5.26">compare view</a></li> </ul> </details> <br /> Updates `pylint` from 3.3.3 to 3.3.4 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pylint-dev/pylint/commit/c2b01c3d0b6410d4c93eb1f32fb28f2116b1e68f"><code>c2b01c3</code></a> Bump pylint to 3.3.4, update changelog</li> <li><a href="https://github.com/pylint-dev/pylint/commit/023cd4355c48e3e0c7702e65fde2d99794b25554"><code>023cd43</code></a> [isort] Permit to use isort 6 (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10204">#10204</a>)</li> <li><a href="https://github.com/pylint-dev/pylint/commit/050acfe49c525cd5e58f7c289d35aee1af4051e5"><code>050acfe</code></a> Calculate linter.config.jobs in cgroupsv2 environments (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10089">#10089</a>) (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10169">#10169</a>)</li> <li><a href="https://github.com/pylint-dev/pylint/commit/d6992b8cf993af7a94a9a3044185fb3ea838ac49"><code>d6992b8</code></a> fix "skipped files" count calculation (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10141">#10141</a>)</li> <li>See full diff in <a href="https://github.com/pylint-dev/pylint/compare/v3.3.3...v3.3.4">compare view</a></li> </ul> </details> <br /> Updates `pytest-asyncio` from 0.25.1 to 0.25.3 <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.25.3</h2> <ul> <li>Avoid errors in cleanup of async generators when event loop is already closed <a href="https://redirect.github.com/pytest-dev/pytest-asyncio/issues/1040">#1040</a></li> </ul> <h2>pytest-asyncio 0.25.2</h2> <ul> <li>Call <code>loop.shutdown_asyncgens()</code> before closing the event loop to ensure async generators are closed in the same manner as <code>asyncio.run</code> does <a href="https://redirect.github.com/pytest-dev/pytest-asyncio/pull/1034">#1034</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/7c501923b00b4aeeb68d4b3b11065f0c3b5cba2c"><code>7c50192</code></a> fix: Avoid errors in cleanup of async generators when event loop is already c...</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/2188cdbbf7b47e653957d3f39aeb7d4d0de80bf4"><code>2188cdb</code></a> build: Prepare release of v0.25.2.</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/c3ad6340b8ad251f3c03d6bbe399f08434059bda"><code>c3ad634</code></a> fix: Shutdown generators before closing event loops.</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/e8ffb10528aaf578dc9ccc7ddbb1fadab56be8ac"><code>e8ffb10</code></a> [pre-commit.ci] pre-commit autoupdate</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/aae43d4f766dfd8f9a643faad41be411888a5d16"><code>aae43d4</code></a> Build(deps): Bump hypothesis in /dependencies/default</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/941e8b5104d86bb1b06b15fd3395f23120203c09"><code>941e8b5</code></a> Build(deps): Bump pygments from 2.18.0 to 2.19.1 in /dependencies/docs</li> <li>See full diff in <a href="https://github.com/pytest-dev/pytest-asyncio/compare/v0.25.1...v0.25.3">compare view</a></li> </ul> </details> <br /> Updates `setuptools` from 75.6.0 to 75.8.0 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pypa/setuptools/blob/main/NEWS.rst">setuptools's changelog</a>.</em></p> <blockquote> <h1>v75.8.0</h1> <h2>Features</h2> <ul> <li>Implemented <code>Dynamic</code> field for core metadata (as introduced in PEP 643). The existing implementation is currently experimental and the exact approach may change in future releases. (<a href="https://redirect.github.com/pypa/setuptools/issues/4698">#4698</a>)</li> </ul> <h1>v75.7.0</h1> <h2>Features</h2> <ul> <li><code>pypa/distutils#310</code><a href="https://redirect.github.com/pypa/setuptools/issues/4478">#4478</a>)</li> <li>Synced with pypa/distutils@ff11eed0c including bugfix for duplicate CFLAGS and adaption to support Python 3.13 is_abs in the C compiler (<a href="https://redirect.github.com/pypa/setuptools/issues/4669">#4669</a>). (<a href="https://redirect.github.com/pypa/setuptools/issues/4790">#4790</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pypa/setuptools/commit/5c9d9809dec1b20e2a9da6b4a06355fd6f87a190"><code>5c9d980</code></a> Bump version: 75.7.0 → 75.8.0</li> <li><a href="https://github.com/pypa/setuptools/commit/72c422261b40f2b95a8be6605cc7dd93cec81794"><code>72c4222</code></a> Avoid using Any in function</li> <li><a href="https://github.com/pypa/setuptools/commit/1c61d4799438677c7cfaaccf281312bfb1aee9b3"><code>1c61d47</code></a> Add news fragments for PEP 643</li> <li><a href="https://github.com/pypa/setuptools/commit/f285d01e2661b01e4947a4dca7704790b65f2967"><code>f285d01</code></a> Implement PEP 643 (<code>Dynamic</code> field for core metadata) (<a href="https://redirect.github.com/pypa/setuptools/issues/4698">#4698</a>)</li> <li><a href="https://github.com/pypa/setuptools/commit/a50f6e2e1e8b4610adde709079bec17ad0944197"><code>a50f6e2</code></a> Fix _static.Dict.<strong>ior</strong> for Python 3.8</li> <li><a href="https://github.com/pypa/setuptools/commit/b055895fa337a6e03a29c2ea6493b6b778d2ba46"><code>b055895</code></a> Add extra tests for static/dynamic metadata</li> <li><a href="https://github.com/pypa/setuptools/commit/770b4fc8f6248d862629028f5ee4218975f9516b"><code>770b4fc</code></a> Remove test workaround for unmarked static values from pyproject.toml</li> <li><a href="https://github.com/pypa/setuptools/commit/8b22d73be5e23a9611398d81aedc5164115940ce"><code>8b22d73</code></a> Mark values from pyproject.toml as static</li> <li><a href="https://github.com/pypa/setuptools/commit/f699fd842e3ddedbe937ee33b0bd6ad28e735664"><code>f699fd8</code></a> Fix spelling error</li> <li><a href="https://github.com/pypa/setuptools/commit/8b4c8a3c95f43d771d0fa6e4ebceea3436bc70f7"><code>8b4c8a3</code></a> Add tests for static 'attr' directive</li> <li>Additional commits viewable in <a href="https://github.com/pypa/setuptools/compare/v75.6.0...v75.8.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>
Bumps the required group with 6 updates: | Package | From | To | | --- | --- | --- | | [pydoclint](https://github.com/jsh9/pydoclint) | `0.5.14` | `0.6.0` | | [mkdocs-material](https://github.com/squidfunk/mkdocs-material) | `9.5.49` | `9.6.1` | | [uv](https://github.com/astral-sh/uv) | `0.5.13` | `0.5.26` | | [pylint](https://github.com/pylint-dev/pylint) | `3.3.3` | `3.3.4` | | [pytest-asyncio](https://github.com/pytest-dev/pytest-asyncio) | `0.25.1` | `0.25.3` | | [setuptools](https://github.com/pypa/setuptools) | `75.6.0` | `75.8.0` | Updates `pydoclint` from 0.5.14 to 0.6.0 <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.6.0</h2> <h2>What's Changed</h2> <ul> <li>Add DOC003 to check docstring style mismatch by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/207">jsh9/pydoclint#207</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0">https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0</a></p> <h2>0.5.19</h2> <h2>What's Changed</h2> <ul> <li>Fix false positive DOC405 & DOC201 for bare returns by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/205">jsh9/pydoclint#205</a></li> <li>Add new config option for documenting star arguments by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/206">jsh9/pydoclint#206</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19">https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19</a></p> <h2>0.5.18</h2> <h2>What's Changed</h2> <ul> <li>Fix parsing and comparison of chained custom exceptions by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/203">jsh9/pydoclint#203</a></li> <li>Fix wording in DOC503 violation message by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/204">jsh9/pydoclint#204</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18">https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18</a></p> <h2>0.5.17</h2> <h2>What's Changed</h2> <ul> <li>Add an option to auto regenerate baseline by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/202">jsh9/pydoclint#202</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17">https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17</a></p> <h2>0.5.16</h2> <h2>What's Changed</h2> <ul> <li>👌 Add pre-commit-hook to run pydoclint via flake8 by <a href="https://github.com/s-weigand"><code>@s-weigand</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/200">jsh9/pydoclint#200</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16">https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16</a></p> <h2>0.5.15</h2> <h2>What's Changed</h2> <ul> <li>Throw DOC001 when docstring sections can't be parsed (numpy style) by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/199">jsh9/pydoclint#199</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.14...0.5.15">https://github.com/jsh9/pydoclint/compare/0.5.14...0.5.15</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.6.0] - 2025-01-13</h2> <ul> <li>Added <ul> <li>A new violation code, <code>DOC003</code>, to detect docstring style mismatch (when docstrings are written in the style different from specified)</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0">https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0</a></li> </ul> </li> </ul> <h2>[0.5.19] - 2025-01-12</h2> <ul> <li>Fixed <ul> <li>False positive DOC405 and DOC201 when we have bare return statements together with <code>yield</code> statements</li> </ul> </li> <li>Added <ul> <li>A new config option <code>--should-document-star-arguments</code> (if <code>False</code>, star arguments such as <code>*args</code> and <code>**kwargs</code> should not be documented in the docstring)</li> <li>A pre-commit step to check that "Full diff" is always added in CHANGELOG.md</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19">https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19</a></li> </ul> </li> </ul> <h2>[0.5.18] - 2025-01-12</h2> <ul> <li>Fixed <ul> <li>An issue where custom exceptions such as <code>a.b.c.MyException.from_str</code> cannot be properly parsed and compared</li> <li>A minor wording issue in DOC503 violation message</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18">https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18</a></li> </ul> </li> </ul> <h2>[0.5.17] - 2025-01-12</h2> <ul> <li>Added <ul> <li>A new config option <code>--auto-regenerate-baseline</code> to automatically regenerate the baseline file for every successful <em>pydoclint</em> run</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17">https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17</a></li> </ul> </li> </ul> <h2>[0.5.16] - 2025-01-11</h2> <ul> <li> <p>Added</p> <ul> <li>A pre-commit hook for using <em>pydoclint</em> as a flake8 plugin</li> </ul> </li> <li> <p>Full diff</p> <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16">https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16</a></li> </ul> </li> </ul> <h2>[0.5.15] - 2025-01-10</h2> <ul> <li>Changed</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/jsh9/pydoclint/commit/2e8af22f66de795a7bd0ac661353596e8847bbad"><code>2e8af22</code></a> Add DOC003 to check docstring style mismatch (<a href="https://redirect.github.com/jsh9/pydoclint/issues/207">#207</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/94039b23bedf98b6a6469312d04eecee9797a90f"><code>94039b2</code></a> Add new config option for documenting star arguments (<a href="https://redirect.github.com/jsh9/pydoclint/issues/206">#206</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/22b9b37b6ccda9c19be9757ee2c7e0a86a836b96"><code>22b9b37</code></a> Fix false positive DOC405 & DOC201 for bare returns (<a href="https://redirect.github.com/jsh9/pydoclint/issues/205">#205</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/1f2ea57d39bce59362382a739572504b6ee5dfb0"><code>1f2ea57</code></a> Fix wording in DOC503 violation message (<a href="https://redirect.github.com/jsh9/pydoclint/issues/204">#204</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/91263b841745adef4a052354bf4301107fc803ae"><code>91263b8</code></a> Fix parsing and comparison of chained custom exceptions (<a href="https://redirect.github.com/jsh9/pydoclint/issues/203">#203</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/64ef92306050cd21e51a99b1dccd87a41274f6e5"><code>64ef923</code></a> Add tips, tricks, and pitfalls to README</li> <li><a href="https://github.com/jsh9/pydoclint/commit/fe188f425eae9e77c74f169ff2d16e740e370d0b"><code>fe188f4</code></a> Add an option to auto regenerate baseline (<a href="https://redirect.github.com/jsh9/pydoclint/issues/202">#202</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/7282eb691ca4c1e4742c62fe7c3578bb9348f0fb"><code>7282eb6</code></a> 👌 Add pre-commit-hook to run pydoclint via flake8 (<a href="https://redirect.github.com/jsh9/pydoclint/issues/200">#200</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/4021d8d9b3216e2789bd5f28fa7c761228b9b3d4"><code>4021d8d</code></a> Throw DOC001 when docstring sections can't be parsed (numpy style) (<a href="https://redirect.github.com/jsh9/pydoclint/issues/199">#199</a>)</li> <li>See full diff in <a href="https://github.com/jsh9/pydoclint/compare/0.5.14...0.6.0">compare view</a></li> </ul> </details> <br /> Updates `mkdocs-material` from 9.5.49 to 9.6.1 <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.6.1</h2> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7943">#7943</a>: Tags plugin crashing due to merge error</li> </ul> <h2>mkdocs-material-9.6.0</h2> <ul> <li>Added meta plugin</li> <li>Rewrite of the tags plugin</li> <li>Added support for allow lists in tags plugin</li> <li>Added support for and custom sorting in tags plugin</li> <li>Added support for related links in blog plugin</li> <li>Added support for custom index pages in blog plugin</li> <li>Added support for navigation subtitles</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7924">#7924</a>: Anchors might require two clicks when using instant navigation</li> </ul> <h2>mkdocs-material-9.5.50</h2> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7913">#7913</a>: Social plugin renders attribute lists in page title</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.6.1 (2025-01-31)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7943">#7943</a>: Tags plugin crashing due to merge error</li> </ul> <p>mkdocs-material-9.6.0 (2025-01-31)</p> <ul> <li>Added meta plugin</li> <li>Rewrite of the tags plugin</li> <li>Added support for allow lists in tags plugin</li> <li>Added support for and custom sorting in tags plugin</li> <li>Added support for related links in blog plugin</li> <li>Added support for custom index pages in blog plugin</li> <li>Added support for navigation subtitles</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7924">#7924</a>: Anchors might require two clicks when using instant navigation</li> </ul> <p>mkdocs-material-9.5.50 (2025-01-18)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7913">#7913</a>: Social plugin renders attribute lists in page title</li> </ul> <p>mkdocs-material-9.5.49+insiders-4.53.15 (2025-01-15)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7896">#7896</a>: Scoped tags listings not rendering in subsections</li> </ul> <p>mkdocs-material-9.5.49 (2024-12-16)</p> <ul> <li>Adjusted title color in dark mode for all supported Mermaid.js diagrams</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7803">#7803</a>: Privacy plugin crashes on generated files</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7781">#7781</a>: Mermaid.js flow chart title not visible in dark mode</li> </ul> <p>mkdocs-material-9.5.48 (2024-12-08)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7774">#7774</a>: Disabling social cards doesn't work</li> </ul> <p>mkdocs-material-9.5.47 (2024-12-01)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7750">#7750</a>: Numeric tags break search</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7748">#7748</a>: Blog plugin breaks when using future drafts (9.5.45 regression)</li> </ul> <p>mkdocs-material-9.5.46 (2024-11-25)</p> <ul> <li>Added support for removing preload hints in privacy plugin</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7734">#7734</a>: Code blocks in h5 headlines are uppercased</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7725">#7725</a>: Blog plugin crashing on missing timezone (9.5.45 regression)</li> </ul> <p>mkdocs-material-9.5.45 (2024-11-20)</p> <ul> <li>Reduced size of Docker image through multi-stage build</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7708">#7708</a>: Blog plugin crashing on YAML dates with timezones</li> </ul> <p>mkdocs-material-9.5.44 (2024-11-05)</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/454af62a45622e3ebf14d25b3ab1ea69c1130e8f"><code>454af62</code></a> Prepare 9.6.1 release</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/2d147c72c02b842937320c58b98e20179742a7a6"><code>2d147c7</code></a> Fixed crashing tags plugin</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/34dc4feba7b45c892c3d6ec2c3d8413a5ebdac5f"><code>34dc4fe</code></a> Updated Premium sponsors</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/8edc6f8daaf0e1e7ebb94be99d3f10e46cd8bfbd"><code>8edc6f8</code></a> Updated Premium sponsors</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/0be1d6b3c8b9f3aff1f91be8f7050dcc96a40321"><code>0be1d6b</code></a> Documentation</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/34e301d311d2e753022e1ae23fd851cbfd73be6a"><code>34e301d</code></a> Fixed build badge</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/4ca5214ebf1665fff5de7be140ab6188eb0ec5a5"><code>4ca5214</code></a> Corrected position of related links in blog post</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/627737ae38905578d761fb7c916b5fdcf854973e"><code>627737a</code></a> Merge pull request <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7942">#7942</a> from squidfunk/merge/chipotle</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/49daf573f0cf01cd66a87f6bba3815b775280287"><code>49daf57</code></a> Updated dependencies</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/1416697c6b27725859d522c8763914c2b1fb1615"><code>1416697</code></a> Prepare 9.6.0 release</li> <li>Additional commits viewable in <a href="https://github.com/squidfunk/mkdocs-material/compare/9.5.49...9.6.1">compare view</a></li> </ul> </details> <br /> Updates `uv` from 0.5.13 to 0.5.26 <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.5.26</h2> <h2>Release Notes</h2> <h3>Enhancements</h3> <ul> <li>Add support for <code>uvx python</code> (<a href="https://redirect.github.com/astral-sh/uv/pull/11076">#11076</a>)</li> <li>Allow <code>--no-dev --invert</code> in <code>uv tree</code> (<a href="https://redirect.github.com/astral-sh/uv/pull/11068">#11068</a>)</li> <li>Update <code>uv python install --reinstall</code> to reinstall all previous versions (<a href="https://redirect.github.com/astral-sh/uv/pull/11072">#11072</a>)</li> <li>Consistently write log messages with capitalized first word (<a href="https://redirect.github.com/astral-sh/uv/pull/11111">#11111</a>)</li> <li>Suggest <code>--build-backend</code> when <code>--backend</code> is passed to <code>uv init</code> (<a href="https://redirect.github.com/astral-sh/uv/pull/10958">#10958</a>)</li> <li>Improve retry trace message (<a href="https://redirect.github.com/astral-sh/uv/pull/11108">#11108</a>)</li> </ul> <h3>Performance</h3> <ul> <li>Remove unnecessary UTF-8 conversion in hash parsing (<a href="https://redirect.github.com/astral-sh/uv/pull/11110">#11110</a>)</li> </ul> <h3>Bug fixes</h3> <ul> <li>Ignore non-hash fragments in HTML API responses (<a href="https://redirect.github.com/astral-sh/uv/pull/11107">#11107</a>)</li> <li>Avoid resolving symbolic links when querying Python interpreters (<a href="https://redirect.github.com/astral-sh/uv/pull/11083">#11083</a>)</li> <li>Avoid sharing state between universal and non-universal resolves (<a href="https://redirect.github.com/astral-sh/uv/pull/11051">#11051</a>)</li> <li>Error when <code>--script</code> is passing a non-PEP 723 script (<a href="https://redirect.github.com/astral-sh/uv/pull/11118">#11118</a>)</li> <li>Make metadata deserialization failures non-fatal in the cache (<a href="https://redirect.github.com/astral-sh/uv/pull/11105">#11105</a>)</li> <li>Mark metadata as dynamic when reading from built wheel cache (<a href="https://redirect.github.com/astral-sh/uv/pull/11046">#11046</a>)</li> <li>Propagate credentials for <code><index>/simple</code> to <code><index>/...</code> endpoints (<a href="https://redirect.github.com/astral-sh/uv/pull/11074">#11074</a>)</li> <li>Fix conflicting extra bug during <code>uv sync</code> (<a href="https://redirect.github.com/astral-sh/uv/pull/11075">#11075</a>)</li> </ul> <h3>Documentation</h3> <ul> <li>Add PyTorch XPU instructions to the PyTorch guide (<a href="https://redirect.github.com/astral-sh/uv/pull/11109">#11109</a>)</li> <li>Add docs for signal handling (<a href="https://redirect.github.com/astral-sh/uv/pull/11041">#11041</a>)</li> <li>Explain build frontend vs. build backend (<a href="https://redirect.github.com/astral-sh/uv/pull/11094">#11094</a>)</li> <li>Fix formatting of <code>RUST_LOG</code> documentation (<a href="https://redirect.github.com/astral-sh/uv/pull/10053">#10053</a>)</li> <li>Fix typo in <code>--no-deps</code> description (<a href="https://redirect.github.com/astral-sh/uv/pull/11073">#11073</a>)</li> <li>Reflow CLI documentation comments (<a href="https://redirect.github.com/astral-sh/uv/pull/11040">#11040</a>)</li> <li>Shorten "Using existing Python versions" nav item so it fits on one line (<a href="https://redirect.github.com/astral-sh/uv/pull/11077">#11077</a>)</li> <li>Some minor touch-ups to the Python install guide (<a href="https://redirect.github.com/astral-sh/uv/pull/11116">#11116</a>)</li> <li>Update Dependabot tracking issue link (<a href="https://redirect.github.com/astral-sh/uv/pull/11054">#11054</a>)</li> <li>Update documentation for running in a container (<a href="https://redirect.github.com/astral-sh/uv/pull/11052">#11052</a>)</li> <li>Upgrade PyTorch version in documentation (<a href="https://redirect.github.com/astral-sh/uv/pull/11114">#11114</a>)</li> <li>Use <code>sys_platform</code> in lieu of <code>platform_system</code> in PyTorch docs (<a href="https://redirect.github.com/astral-sh/uv/pull/11113">#11113</a>)</li> <li>Use positive (rather than negative) markers in PyTorch examples (<a href="https://redirect.github.com/astral-sh/uv/pull/11112">#11112</a>)</li> <li>Fix unnecessary backslashes in brackets (<a href="https://redirect.github.com/astral-sh/uv/pull/11059">#11059</a>)</li> <li>Suggest setting copy link mode in GitLab integration guide (<a href="https://redirect.github.com/astral-sh/uv/pull/11067">#11067</a>)</li> </ul> <h2>Install uv 0.5.26</h2> <h3>Install prebuilt binaries via shell script</h3> <pre lang="sh"><code></tr></table> </code></pre> </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.5.26</h2> <h3>Enhancements</h3> <ul> <li>Add support for <code>uvx python</code> (<a href="https://redirect.github.com/astral-sh/uv/pull/11076">#11076</a>)</li> <li>Allow <code>--no-dev --invert</code> in <code>uv tree</code> (<a href="https://redirect.github.com/astral-sh/uv/pull/11068">#11068</a>)</li> <li>Update <code>uv python install --reinstall</code> to reinstall all previous versions (<a href="https://redirect.github.com/astral-sh/uv/pull/11072">#11072</a>)</li> <li>Consistently write log messages with capitalized first word (<a href="https://redirect.github.com/astral-sh/uv/pull/11111">#11111</a>)</li> <li>Suggest <code>--build-backend</code> when <code>--backend</code> is passed to <code>uv init</code> (<a href="https://redirect.github.com/astral-sh/uv/pull/10958">#10958</a>)</li> <li>Improve retry trace message (<a href="https://redirect.github.com/astral-sh/uv/pull/11108">#11108</a>)</li> </ul> <h3>Performance</h3> <ul> <li>Remove unnecessary UTF-8 conversion in hash parsing (<a href="https://redirect.github.com/astral-sh/uv/pull/11110">#11110</a>)</li> </ul> <h3>Bug fixes</h3> <ul> <li>Ignore non-hash fragments in HTML API responses (<a href="https://redirect.github.com/astral-sh/uv/pull/11107">#11107</a>)</li> <li>Avoid resolving symbolic links when querying Python interpreters (<a href="https://redirect.github.com/astral-sh/uv/pull/11083">#11083</a>)</li> <li>Avoid sharing state between universal and non-universal resolves (<a href="https://redirect.github.com/astral-sh/uv/pull/11051">#11051</a>)</li> <li>Error when <code>--script</code> is passing a non-PEP 723 script (<a href="https://redirect.github.com/astral-sh/uv/pull/11118">#11118</a>)</li> <li>Make metadata deserialization failures non-fatal in the cache (<a href="https://redirect.github.com/astral-sh/uv/pull/11105">#11105</a>)</li> <li>Mark metadata as dynamic when reading from built wheel cache (<a href="https://redirect.github.com/astral-sh/uv/pull/11046">#11046</a>)</li> <li>Propagate credentials for <code><index>/simple</code> to <code><index>/...</code> endpoints (<a href="https://redirect.github.com/astral-sh/uv/pull/11074">#11074</a>)</li> <li>Fix conflicting extra bug during <code>uv sync</code> (<a href="https://redirect.github.com/astral-sh/uv/pull/11075">#11075</a>)</li> </ul> <h3>Documentation</h3> <ul> <li>Add PyTorch XPU instructions to the PyTorch guide (<a href="https://redirect.github.com/astral-sh/uv/pull/11109">#11109</a>)</li> <li>Add docs for signal handling (<a href="https://redirect.github.com/astral-sh/uv/pull/11041">#11041</a>)</li> <li>Explain build frontend vs. build backend (<a href="https://redirect.github.com/astral-sh/uv/pull/11094">#11094</a>)</li> <li>Fix formatting of <code>RUST_LOG</code> documentation (<a href="https://redirect.github.com/astral-sh/uv/pull/10053">#10053</a>)</li> <li>Fix typo in <code>--no-deps</code> description (<a href="https://redirect.github.com/astral-sh/uv/pull/11073">#11073</a>)</li> <li>Reflow CLI documentation comments (<a href="https://redirect.github.com/astral-sh/uv/pull/11040">#11040</a>)</li> <li>Shorten "Using existing Python versions" nav item so it fits on one line (<a href="https://redirect.github.com/astral-sh/uv/pull/11077">#11077</a>)</li> <li>Some minor touch-ups to the Python install guide (<a href="https://redirect.github.com/astral-sh/uv/pull/11116">#11116</a>)</li> <li>Update Dependabot tracking issue link (<a href="https://redirect.github.com/astral-sh/uv/pull/11054">#11054</a>)</li> <li>Update documentation for running in a container (<a href="https://redirect.github.com/astral-sh/uv/pull/11052">#11052</a>)</li> <li>Upgrade PyTorch version in documentation (<a href="https://redirect.github.com/astral-sh/uv/pull/11114">#11114</a>)</li> <li>Use <code>sys_platform</code> in lieu of <code>platform_system</code> in PyTorch docs (<a href="https://redirect.github.com/astral-sh/uv/pull/11113">#11113</a>)</li> <li>Use positive (rather than negative) markers in PyTorch examples (<a href="https://redirect.github.com/astral-sh/uv/pull/11112">#11112</a>)</li> <li>Fix unnecessary backslashes in brackets (<a href="https://redirect.github.com/astral-sh/uv/pull/11059">#11059</a>)</li> <li>Suggest setting copy link mode in GitLab integration guide (<a href="https://redirect.github.com/astral-sh/uv/pull/11067">#11067</a>)</li> </ul> <h2>0.5.25</h2> <h3>Enhancements</h3> <ul> <li>Allow installation of manylinux wheels on loongarch64 (<a href="https://redirect.github.com/astral-sh/uv/pull/10927">#10927</a>)</li> <li>Allow optional <code>=</code> for editables in <code>requirements.txt</code> (<a href="https://redirect.github.com/astral-sh/uv/pull/10954">#10954</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/5ef3d513903c623a0c2bec278ff087b5470c3930"><code>5ef3d51</code></a> Bump version to 0.5.26 (<a href="https://redirect.github.com/astral-sh/uv/issues/11119">#11119</a>)</li> <li><a href="https://github.com/astral-sh/uv/commit/bf9fe1d36d5ca98770d760b0f4c9e9c829d88eee"><code>bf9fe1d</code></a> Error when <code>--script</code> is passing a non-PEP 723 script (<a href="https://redirect.github.com/astral-sh/uv/issues/11118">#11118</a>)</li> <li><a href="https://github.com/astral-sh/uv/commit/e0a19be8252d2a1fa3a898cee1657a2ccbfb4581"><code>e0a19be</code></a> Touch-ups to the Python install guide (<a href="https://redirect.github.com/astral-sh/uv/issues/11116">#11116</a>)</li> <li><a href="https://github.com/astral-sh/uv/commit/80d485d32a27688c547a7909d1014433561a3bbe"><code>80d485d</code></a> Explain build frontend vs. build backend (<a href="https://redirect.github.com/astral-sh/uv/issues/11094">#11094</a>)</li> <li><a href="https://github.com/astral-sh/uv/commit/7531bb866902aedd3095f8da9ed87a2ae0676d2f"><code>7531bb8</code></a> Upgrade PyTorch version in documentation (<a href="https://redirect.github.com/astral-sh/uv/issues/11114">#11114</a>)</li> <li><a href="https://github.com/astral-sh/uv/commit/658ca89fb16916c39397c881ff0ad82d3eecc73e"><code>658ca89</code></a> Use <code>sys_platform</code> in lieu of <code>platform_system</code> in PyTorch docs (<a href="https://redirect.github.com/astral-sh/uv/issues/11113">#11113</a>)</li> <li><a href="https://github.com/astral-sh/uv/commit/9f8cd92bd358116df66e86cf557ec45383b9788f"><code>9f8cd92</code></a> Use positive (rather than negative) markers in PyTorch examples (<a href="https://redirect.github.com/astral-sh/uv/issues/11112">#11112</a>)</li> <li><a href="https://github.com/astral-sh/uv/commit/5c0fdfd7ce15726e5b2c25309873329084dbc3a0"><code>5c0fdfd</code></a> Consistently write log messages with capitalized first word (<a href="https://redirect.github.com/astral-sh/uv/issues/11111">#11111</a>)</li> <li><a href="https://github.com/astral-sh/uv/commit/ee31e1f11ba49cfb7fe2020863b1e5571ffaf6bb"><code>ee31e1f</code></a> Remove unnecessary UTF-8 conversion in hash parsing (<a href="https://redirect.github.com/astral-sh/uv/issues/11110">#11110</a>)</li> <li><a href="https://github.com/astral-sh/uv/commit/d514743b1a132091e7a0f9eedd89e15adaf82e1a"><code>d514743</code></a> Improve retry trace message (<a href="https://redirect.github.com/astral-sh/uv/issues/11108">#11108</a>)</li> <li>Additional commits viewable in <a href="https://github.com/astral-sh/uv/compare/0.5.13...0.5.26">compare view</a></li> </ul> </details> <br /> Updates `pylint` from 3.3.3 to 3.3.4 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pylint-dev/pylint/commit/c2b01c3d0b6410d4c93eb1f32fb28f2116b1e68f"><code>c2b01c3</code></a> Bump pylint to 3.3.4, update changelog</li> <li><a href="https://github.com/pylint-dev/pylint/commit/023cd4355c48e3e0c7702e65fde2d99794b25554"><code>023cd43</code></a> [isort] Permit to use isort 6 (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10204">#10204</a>)</li> <li><a href="https://github.com/pylint-dev/pylint/commit/050acfe49c525cd5e58f7c289d35aee1af4051e5"><code>050acfe</code></a> Calculate linter.config.jobs in cgroupsv2 environments (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10089">#10089</a>) (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10169">#10169</a>)</li> <li><a href="https://github.com/pylint-dev/pylint/commit/d6992b8cf993af7a94a9a3044185fb3ea838ac49"><code>d6992b8</code></a> fix "skipped files" count calculation (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10141">#10141</a>)</li> <li>See full diff in <a href="https://github.com/pylint-dev/pylint/compare/v3.3.3...v3.3.4">compare view</a></li> </ul> </details> <br /> Updates `pytest-asyncio` from 0.25.1 to 0.25.3 <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.25.3</h2> <ul> <li>Avoid errors in cleanup of async generators when event loop is already closed <a href="https://redirect.github.com/pytest-dev/pytest-asyncio/issues/1040">#1040</a></li> </ul> <h2>pytest-asyncio 0.25.2</h2> <ul> <li>Call <code>loop.shutdown_asyncgens()</code> before closing the event loop to ensure async generators are closed in the same manner as <code>asyncio.run</code> does <a href="https://redirect.github.com/pytest-dev/pytest-asyncio/pull/1034">#1034</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/7c501923b00b4aeeb68d4b3b11065f0c3b5cba2c"><code>7c50192</code></a> fix: Avoid errors in cleanup of async generators when event loop is already c...</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/2188cdbbf7b47e653957d3f39aeb7d4d0de80bf4"><code>2188cdb</code></a> build: Prepare release of v0.25.2.</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/c3ad6340b8ad251f3c03d6bbe399f08434059bda"><code>c3ad634</code></a> fix: Shutdown generators before closing event loops.</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/e8ffb10528aaf578dc9ccc7ddbb1fadab56be8ac"><code>e8ffb10</code></a> [pre-commit.ci] pre-commit autoupdate</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/aae43d4f766dfd8f9a643faad41be411888a5d16"><code>aae43d4</code></a> Build(deps): Bump hypothesis in /dependencies/default</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/941e8b5104d86bb1b06b15fd3395f23120203c09"><code>941e8b5</code></a> Build(deps): Bump pygments from 2.18.0 to 2.19.1 in /dependencies/docs</li> <li>See full diff in <a href="https://github.com/pytest-dev/pytest-asyncio/compare/v0.25.1...v0.25.3">compare view</a></li> </ul> </details> <br /> Updates `setuptools` from 75.6.0 to 75.8.0 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pypa/setuptools/blob/main/NEWS.rst">setuptools's changelog</a>.</em></p> <blockquote> <h1>v75.8.0</h1> <h2>Features</h2> <ul> <li>Implemented <code>Dynamic</code> field for core metadata (as introduced in PEP 643). The existing implementation is currently experimental and the exact approach may change in future releases. (<a href="https://redirect.github.com/pypa/setuptools/issues/4698">#4698</a>)</li> </ul> <h1>v75.7.0</h1> <h2>Features</h2> <ul> <li><code>pypa/distutils#310</code><a href="https://redirect.github.com/pypa/setuptools/issues/4478">#4478</a>)</li> <li>Synced with pypa/distutils@ff11eed0c including bugfix for duplicate CFLAGS and adaption to support Python 3.13 is_abs in the C compiler (<a href="https://redirect.github.com/pypa/setuptools/issues/4669">#4669</a>). (<a href="https://redirect.github.com/pypa/setuptools/issues/4790">#4790</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pypa/setuptools/commit/5c9d9809dec1b20e2a9da6b4a06355fd6f87a190"><code>5c9d980</code></a> Bump version: 75.7.0 → 75.8.0</li> <li><a href="https://github.com/pypa/setuptools/commit/72c422261b40f2b95a8be6605cc7dd93cec81794"><code>72c4222</code></a> Avoid using Any in function</li> <li><a href="https://github.com/pypa/setuptools/commit/1c61d4799438677c7cfaaccf281312bfb1aee9b3"><code>1c61d47</code></a> Add news fragments for PEP 643</li> <li><a href="https://github.com/pypa/setuptools/commit/f285d01e2661b01e4947a4dca7704790b65f2967"><code>f285d01</code></a> Implement PEP 643 (<code>Dynamic</code> field for core metadata) (<a href="https://redirect.github.com/pypa/setuptools/issues/4698">#4698</a>)</li> <li><a href="https://github.com/pypa/setuptools/commit/a50f6e2e1e8b4610adde709079bec17ad0944197"><code>a50f6e2</code></a> Fix _static.Dict.<strong>ior</strong> for Python 3.8</li> <li><a href="https://github.com/pypa/setuptools/commit/b055895fa337a6e03a29c2ea6493b6b778d2ba46"><code>b055895</code></a> Add extra tests for static/dynamic metadata</li> <li><a href="https://github.com/pypa/setuptools/commit/770b4fc8f6248d862629028f5ee4218975f9516b"><code>770b4fc</code></a> Remove test workaround for unmarked static values from pyproject.toml</li> <li><a href="https://github.com/pypa/setuptools/commit/8b22d73be5e23a9611398d81aedc5164115940ce"><code>8b22d73</code></a> Mark values from pyproject.toml as static</li> <li><a href="https://github.com/pypa/setuptools/commit/f699fd842e3ddedbe937ee33b0bd6ad28e735664"><code>f699fd8</code></a> Fix spelling error</li> <li><a href="https://github.com/pypa/setuptools/commit/8b4c8a3c95f43d771d0fa6e4ebceea3436bc70f7"><code>8b4c8a3</code></a> Add tests for static 'attr' directive</li> <li>Additional commits viewable in <a href="https://github.com/pypa/setuptools/compare/v75.6.0...v75.8.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>
Bumps the required group with 5 updates: | Package | From | To | | --- | --- | --- | | [pydoclint](https://github.com/jsh9/pydoclint) | `0.5.14` | `0.6.0` | | [mkdocs-material](https://github.com/squidfunk/mkdocs-material) | `9.5.49` | `9.6.1` | | [pylint](https://github.com/pylint-dev/pylint) | `3.3.3` | `3.3.4` | | [pytest-asyncio](https://github.com/pytest-dev/pytest-asyncio) | `0.25.0` | `0.25.3` | | [setuptools](https://github.com/pypa/setuptools) | `75.6.0` | `75.8.0` | Updates `pydoclint` from 0.5.14 to 0.6.0 <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.6.0</h2> <h2>What's Changed</h2> <ul> <li>Add DOC003 to check docstring style mismatch by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/207">jsh9/pydoclint#207</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0">https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0</a></p> <h2>0.5.19</h2> <h2>What's Changed</h2> <ul> <li>Fix false positive DOC405 & DOC201 for bare returns by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/205">jsh9/pydoclint#205</a></li> <li>Add new config option for documenting star arguments by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/206">jsh9/pydoclint#206</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19">https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19</a></p> <h2>0.5.18</h2> <h2>What's Changed</h2> <ul> <li>Fix parsing and comparison of chained custom exceptions by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/203">jsh9/pydoclint#203</a></li> <li>Fix wording in DOC503 violation message by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/204">jsh9/pydoclint#204</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18">https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18</a></p> <h2>0.5.17</h2> <h2>What's Changed</h2> <ul> <li>Add an option to auto regenerate baseline by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/202">jsh9/pydoclint#202</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17">https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17</a></p> <h2>0.5.16</h2> <h2>What's Changed</h2> <ul> <li>👌 Add pre-commit-hook to run pydoclint via flake8 by <a href="https://github.com/s-weigand"><code>@s-weigand</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/200">jsh9/pydoclint#200</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16">https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16</a></p> <h2>0.5.15</h2> <h2>What's Changed</h2> <ul> <li>Throw DOC001 when docstring sections can't be parsed (numpy style) by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/199">jsh9/pydoclint#199</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.14...0.5.15">https://github.com/jsh9/pydoclint/compare/0.5.14...0.5.15</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.6.0] - 2025-01-13</h2> <ul> <li>Added <ul> <li>A new violation code, <code>DOC003</code>, to detect docstring style mismatch (when docstrings are written in the style different from specified)</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0">https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0</a></li> </ul> </li> </ul> <h2>[0.5.19] - 2025-01-12</h2> <ul> <li>Fixed <ul> <li>False positive DOC405 and DOC201 when we have bare return statements together with <code>yield</code> statements</li> </ul> </li> <li>Added <ul> <li>A new config option <code>--should-document-star-arguments</code> (if <code>False</code>, star arguments such as <code>*args</code> and <code>**kwargs</code> should not be documented in the docstring)</li> <li>A pre-commit step to check that "Full diff" is always added in CHANGELOG.md</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19">https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19</a></li> </ul> </li> </ul> <h2>[0.5.18] - 2025-01-12</h2> <ul> <li>Fixed <ul> <li>An issue where custom exceptions such as <code>a.b.c.MyException.from_str</code> cannot be properly parsed and compared</li> <li>A minor wording issue in DOC503 violation message</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18">https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18</a></li> </ul> </li> </ul> <h2>[0.5.17] - 2025-01-12</h2> <ul> <li>Added <ul> <li>A new config option <code>--auto-regenerate-baseline</code> to automatically regenerate the baseline file for every successful <em>pydoclint</em> run</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17">https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17</a></li> </ul> </li> </ul> <h2>[0.5.16] - 2025-01-11</h2> <ul> <li> <p>Added</p> <ul> <li>A pre-commit hook for using <em>pydoclint</em> as a flake8 plugin</li> </ul> </li> <li> <p>Full diff</p> <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16">https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16</a></li> </ul> </li> </ul> <h2>[0.5.15] - 2025-01-10</h2> <ul> <li>Changed</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/jsh9/pydoclint/commit/2e8af22f66de795a7bd0ac661353596e8847bbad"><code>2e8af22</code></a> Add DOC003 to check docstring style mismatch (<a href="https://redirect.github.com/jsh9/pydoclint/issues/207">#207</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/94039b23bedf98b6a6469312d04eecee9797a90f"><code>94039b2</code></a> Add new config option for documenting star arguments (<a href="https://redirect.github.com/jsh9/pydoclint/issues/206">#206</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/22b9b37b6ccda9c19be9757ee2c7e0a86a836b96"><code>22b9b37</code></a> Fix false positive DOC405 & DOC201 for bare returns (<a href="https://redirect.github.com/jsh9/pydoclint/issues/205">#205</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/1f2ea57d39bce59362382a739572504b6ee5dfb0"><code>1f2ea57</code></a> Fix wording in DOC503 violation message (<a href="https://redirect.github.com/jsh9/pydoclint/issues/204">#204</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/91263b841745adef4a052354bf4301107fc803ae"><code>91263b8</code></a> Fix parsing and comparison of chained custom exceptions (<a href="https://redirect.github.com/jsh9/pydoclint/issues/203">#203</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/64ef92306050cd21e51a99b1dccd87a41274f6e5"><code>64ef923</code></a> Add tips, tricks, and pitfalls to README</li> <li><a href="https://github.com/jsh9/pydoclint/commit/fe188f425eae9e77c74f169ff2d16e740e370d0b"><code>fe188f4</code></a> Add an option to auto regenerate baseline (<a href="https://redirect.github.com/jsh9/pydoclint/issues/202">#202</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/7282eb691ca4c1e4742c62fe7c3578bb9348f0fb"><code>7282eb6</code></a> 👌 Add pre-commit-hook to run pydoclint via flake8 (<a href="https://redirect.github.com/jsh9/pydoclint/issues/200">#200</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/4021d8d9b3216e2789bd5f28fa7c761228b9b3d4"><code>4021d8d</code></a> Throw DOC001 when docstring sections can't be parsed (numpy style) (<a href="https://redirect.github.com/jsh9/pydoclint/issues/199">#199</a>)</li> <li>See full diff in <a href="https://github.com/jsh9/pydoclint/compare/0.5.14...0.6.0">compare view</a></li> </ul> </details> <br /> Updates `mkdocs-material` from 9.5.49 to 9.6.1 <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.6.1</h2> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7943">#7943</a>: Tags plugin crashing due to merge error</li> </ul> <h2>mkdocs-material-9.6.0</h2> <ul> <li>Added meta plugin</li> <li>Rewrite of the tags plugin</li> <li>Added support for allow lists in tags plugin</li> <li>Added support for and custom sorting in tags plugin</li> <li>Added support for related links in blog plugin</li> <li>Added support for custom index pages in blog plugin</li> <li>Added support for navigation subtitles</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7924">#7924</a>: Anchors might require two clicks when using instant navigation</li> </ul> <h2>mkdocs-material-9.5.50</h2> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7913">#7913</a>: Social plugin renders attribute lists in page title</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.6.1 (2025-01-31)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7943">#7943</a>: Tags plugin crashing due to merge error</li> </ul> <p>mkdocs-material-9.6.0 (2025-01-31)</p> <ul> <li>Added meta plugin</li> <li>Rewrite of the tags plugin</li> <li>Added support for allow lists in tags plugin</li> <li>Added support for and custom sorting in tags plugin</li> <li>Added support for related links in blog plugin</li> <li>Added support for custom index pages in blog plugin</li> <li>Added support for navigation subtitles</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7924">#7924</a>: Anchors might require two clicks when using instant navigation</li> </ul> <p>mkdocs-material-9.5.50 (2025-01-18)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7913">#7913</a>: Social plugin renders attribute lists in page title</li> </ul> <p>mkdocs-material-9.5.49+insiders-4.53.15 (2025-01-15)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7896">#7896</a>: Scoped tags listings not rendering in subsections</li> </ul> <p>mkdocs-material-9.5.49 (2024-12-16)</p> <ul> <li>Adjusted title color in dark mode for all supported Mermaid.js diagrams</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7803">#7803</a>: Privacy plugin crashes on generated files</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7781">#7781</a>: Mermaid.js flow chart title not visible in dark mode</li> </ul> <p>mkdocs-material-9.5.48 (2024-12-08)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7774">#7774</a>: Disabling social cards doesn't work</li> </ul> <p>mkdocs-material-9.5.47 (2024-12-01)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7750">#7750</a>: Numeric tags break search</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7748">#7748</a>: Blog plugin breaks when using future drafts (9.5.45 regression)</li> </ul> <p>mkdocs-material-9.5.46 (2024-11-25)</p> <ul> <li>Added support for removing preload hints in privacy plugin</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7734">#7734</a>: Code blocks in h5 headlines are uppercased</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7725">#7725</a>: Blog plugin crashing on missing timezone (9.5.45 regression)</li> </ul> <p>mkdocs-material-9.5.45 (2024-11-20)</p> <ul> <li>Reduced size of Docker image through multi-stage build</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7708">#7708</a>: Blog plugin crashing on YAML dates with timezones</li> </ul> <p>mkdocs-material-9.5.44 (2024-11-05)</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/454af62a45622e3ebf14d25b3ab1ea69c1130e8f"><code>454af62</code></a> Prepare 9.6.1 release</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/2d147c72c02b842937320c58b98e20179742a7a6"><code>2d147c7</code></a> Fixed crashing tags plugin</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/34dc4feba7b45c892c3d6ec2c3d8413a5ebdac5f"><code>34dc4fe</code></a> Updated Premium sponsors</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/8edc6f8daaf0e1e7ebb94be99d3f10e46cd8bfbd"><code>8edc6f8</code></a> Updated Premium sponsors</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/0be1d6b3c8b9f3aff1f91be8f7050dcc96a40321"><code>0be1d6b</code></a> Documentation</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/34e301d311d2e753022e1ae23fd851cbfd73be6a"><code>34e301d</code></a> Fixed build badge</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/4ca5214ebf1665fff5de7be140ab6188eb0ec5a5"><code>4ca5214</code></a> Corrected position of related links in blog post</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/627737ae38905578d761fb7c916b5fdcf854973e"><code>627737a</code></a> Merge pull request <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7942">#7942</a> from squidfunk/merge/chipotle</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/49daf573f0cf01cd66a87f6bba3815b775280287"><code>49daf57</code></a> Updated dependencies</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/1416697c6b27725859d522c8763914c2b1fb1615"><code>1416697</code></a> Prepare 9.6.0 release</li> <li>Additional commits viewable in <a href="https://github.com/squidfunk/mkdocs-material/compare/9.5.49...9.6.1">compare view</a></li> </ul> </details> <br /> Updates `pylint` from 3.3.3 to 3.3.4 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pylint-dev/pylint/commit/c2b01c3d0b6410d4c93eb1f32fb28f2116b1e68f"><code>c2b01c3</code></a> Bump pylint to 3.3.4, update changelog</li> <li><a href="https://github.com/pylint-dev/pylint/commit/023cd4355c48e3e0c7702e65fde2d99794b25554"><code>023cd43</code></a> [isort] Permit to use isort 6 (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10204">#10204</a>)</li> <li><a href="https://github.com/pylint-dev/pylint/commit/050acfe49c525cd5e58f7c289d35aee1af4051e5"><code>050acfe</code></a> Calculate linter.config.jobs in cgroupsv2 environments (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10089">#10089</a>) (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10169">#10169</a>)</li> <li><a href="https://github.com/pylint-dev/pylint/commit/d6992b8cf993af7a94a9a3044185fb3ea838ac49"><code>d6992b8</code></a> fix "skipped files" count calculation (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10141">#10141</a>)</li> <li>See full diff in <a href="https://github.com/pylint-dev/pylint/compare/v3.3.3...v3.3.4">compare view</a></li> </ul> </details> <br /> Updates `pytest-asyncio` from 0.25.0 to 0.25.3 <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.25.3</h2> <ul> <li>Avoid errors in cleanup of async generators when event loop is already closed <a href="https://redirect.github.com/pytest-dev/pytest-asyncio/issues/1040">#1040</a></li> </ul> <h2>pytest-asyncio 0.25.2</h2> <ul> <li>Call <code>loop.shutdown_asyncgens()</code> before closing the event loop to ensure async generators are closed in the same manner as <code>asyncio.run</code> does <a href="https://redirect.github.com/pytest-dev/pytest-asyncio/pull/1034">#1034</a></li> </ul> <h2>pytest-asyncio 0.25.1</h2> <ul> <li>Fixes an issue that caused a broken event loop when a function-scoped test was executed in between two tests with wider loop scope <a href="https://redirect.github.com/pytest-dev/pytest-asyncio/issues/950">#950</a></li> <li>Improves test collection speed in auto mode <a href="https://redirect.github.com/pytest-dev/pytest-asyncio/pull/1020">#1020</a></li> <li>Corrects the warning that is emitted upon redefining the event_loop fixture</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/7c501923b00b4aeeb68d4b3b11065f0c3b5cba2c"><code>7c50192</code></a> fix: Avoid errors in cleanup of async generators when event loop is already c...</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/2188cdbbf7b47e653957d3f39aeb7d4d0de80bf4"><code>2188cdb</code></a> build: Prepare release of v0.25.2.</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/c3ad6340b8ad251f3c03d6bbe399f08434059bda"><code>c3ad634</code></a> fix: Shutdown generators before closing event loops.</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/e8ffb10528aaf578dc9ccc7ddbb1fadab56be8ac"><code>e8ffb10</code></a> [pre-commit.ci] pre-commit autoupdate</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/aae43d4f766dfd8f9a643faad41be411888a5d16"><code>aae43d4</code></a> Build(deps): Bump hypothesis in /dependencies/default</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/941e8b5104d86bb1b06b15fd3395f23120203c09"><code>941e8b5</code></a> Build(deps): Bump pygments from 2.18.0 to 2.19.1 in /dependencies/docs</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/623ab74b80b6f748e88254714f9b21a16eb7911e"><code>623ab74</code></a> docs: Prepare release of v0.25.1.</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/c236550e739b55ee62f3e6ec7f71b4f4231236d1"><code>c236550</code></a> docs: Fix broken link to the pytest.mark.asyncio reference.</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/41c645b3b79709c2812a3aa3b17943074bc33f48"><code>41c645b</code></a> fix: Correct warning message when redefining the event_loop fixture.</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/2fd10f824302d45da752341c60c8ddec48297a1b"><code>2fd10f8</code></a> docs: Clarify deprecation of event_loop fixture.</li> <li>Additional commits viewable in <a href="https://github.com/pytest-dev/pytest-asyncio/compare/v0.25.0...v0.25.3">compare view</a></li> </ul> </details> <br /> Updates `setuptools` from 75.6.0 to 75.8.0 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pypa/setuptools/blob/main/NEWS.rst">setuptools's changelog</a>.</em></p> <blockquote> <h1>v75.8.0</h1> <h2>Features</h2> <ul> <li>Implemented <code>Dynamic</code> field for core metadata (as introduced in PEP 643). The existing implementation is currently experimental and the exact approach may change in future releases. (<a href="https://redirect.github.com/pypa/setuptools/issues/4698">#4698</a>)</li> </ul> <h1>v75.7.0</h1> <h2>Features</h2> <ul> <li><code>pypa/distutils#310</code><a href="https://redirect.github.com/pypa/setuptools/issues/4478">#4478</a>)</li> <li>Synced with pypa/distutils@ff11eed0c including bugfix for duplicate CFLAGS and adaption to support Python 3.13 is_abs in the C compiler (<a href="https://redirect.github.com/pypa/setuptools/issues/4669">#4669</a>). (<a href="https://redirect.github.com/pypa/setuptools/issues/4790">#4790</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pypa/setuptools/commit/5c9d9809dec1b20e2a9da6b4a06355fd6f87a190"><code>5c9d980</code></a> Bump version: 75.7.0 → 75.8.0</li> <li><a href="https://github.com/pypa/setuptools/commit/72c422261b40f2b95a8be6605cc7dd93cec81794"><code>72c4222</code></a> Avoid using Any in function</li> <li><a href="https://github.com/pypa/setuptools/commit/1c61d4799438677c7cfaaccf281312bfb1aee9b3"><code>1c61d47</code></a> Add news fragments for PEP 643</li> <li><a href="https://github.com/pypa/setuptools/commit/f285d01e2661b01e4947a4dca7704790b65f2967"><code>f285d01</code></a> Implement PEP 643 (<code>Dynamic</code> field for core metadata) (<a href="https://redirect.github.com/pypa/setuptools/issues/4698">#4698</a>)</li> <li><a href="https://github.com/pypa/setuptools/commit/a50f6e2e1e8b4610adde709079bec17ad0944197"><code>a50f6e2</code></a> Fix _static.Dict.<strong>ior</strong> for Python 3.8</li> <li><a href="https://github.com/pypa/setuptools/commit/b055895fa337a6e03a29c2ea6493b6b778d2ba46"><code>b055895</code></a> Add extra tests for static/dynamic metadata</li> <li><a href="https://github.com/pypa/setuptools/commit/770b4fc8f6248d862629028f5ee4218975f9516b"><code>770b4fc</code></a> Remove test workaround for unmarked static values from pyproject.toml</li> <li><a href="https://github.com/pypa/setuptools/commit/8b22d73be5e23a9611398d81aedc5164115940ce"><code>8b22d73</code></a> Mark values from pyproject.toml as static</li> <li><a href="https://github.com/pypa/setuptools/commit/f699fd842e3ddedbe937ee33b0bd6ad28e735664"><code>f699fd8</code></a> Fix spelling error</li> <li><a href="https://github.com/pypa/setuptools/commit/8b4c8a3c95f43d771d0fa6e4ebceea3436bc70f7"><code>8b4c8a3</code></a> Add tests for static 'attr' directive</li> <li>Additional commits viewable in <a href="https://github.com/pypa/setuptools/compare/v75.6.0...v75.8.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>
Bumps the required group with 6 updates: | Package | From | To | | --- | --- | --- | | [pydoclint](https://github.com/jsh9/pydoclint) | `0.5.14` | `0.6.0` | | [mkdocs-material](https://github.com/squidfunk/mkdocs-material) | `9.5.49` | `9.6.1` | | [pylint](https://github.com/pylint-dev/pylint) | `3.3.3` | `3.3.4` | | [pytest-asyncio](https://github.com/pytest-dev/pytest-asyncio) | `0.25.1` | `0.25.3` | | [hypothesis](https://github.com/HypothesisWorks/hypothesis) | `6.123.2` | `6.124.9` | | [setuptools](https://github.com/pypa/setuptools) | `75.6.0` | `75.8.0` | Updates `pydoclint` from 0.5.14 to 0.6.0 <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.6.0</h2> <h2>What's Changed</h2> <ul> <li>Add DOC003 to check docstring style mismatch by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/207">jsh9/pydoclint#207</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0">https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0</a></p> <h2>0.5.19</h2> <h2>What's Changed</h2> <ul> <li>Fix false positive DOC405 & DOC201 for bare returns by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/205">jsh9/pydoclint#205</a></li> <li>Add new config option for documenting star arguments by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/206">jsh9/pydoclint#206</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19">https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19</a></p> <h2>0.5.18</h2> <h2>What's Changed</h2> <ul> <li>Fix parsing and comparison of chained custom exceptions by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/203">jsh9/pydoclint#203</a></li> <li>Fix wording in DOC503 violation message by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/204">jsh9/pydoclint#204</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18">https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18</a></p> <h2>0.5.17</h2> <h2>What's Changed</h2> <ul> <li>Add an option to auto regenerate baseline by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/202">jsh9/pydoclint#202</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17">https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17</a></p> <h2>0.5.16</h2> <h2>What's Changed</h2> <ul> <li>👌 Add pre-commit-hook to run pydoclint via flake8 by <a href="https://github.com/s-weigand"><code>@s-weigand</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/200">jsh9/pydoclint#200</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16">https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16</a></p> <h2>0.5.15</h2> <h2>What's Changed</h2> <ul> <li>Throw DOC001 when docstring sections can't be parsed (numpy style) by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/199">jsh9/pydoclint#199</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.14...0.5.15">https://github.com/jsh9/pydoclint/compare/0.5.14...0.5.15</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.6.0] - 2025-01-13</h2> <ul> <li>Added <ul> <li>A new violation code, <code>DOC003</code>, to detect docstring style mismatch (when docstrings are written in the style different from specified)</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0">https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0</a></li> </ul> </li> </ul> <h2>[0.5.19] - 2025-01-12</h2> <ul> <li>Fixed <ul> <li>False positive DOC405 and DOC201 when we have bare return statements together with <code>yield</code> statements</li> </ul> </li> <li>Added <ul> <li>A new config option <code>--should-document-star-arguments</code> (if <code>False</code>, star arguments such as <code>*args</code> and <code>**kwargs</code> should not be documented in the docstring)</li> <li>A pre-commit step to check that "Full diff" is always added in CHANGELOG.md</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19">https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19</a></li> </ul> </li> </ul> <h2>[0.5.18] - 2025-01-12</h2> <ul> <li>Fixed <ul> <li>An issue where custom exceptions such as <code>a.b.c.MyException.from_str</code> cannot be properly parsed and compared</li> <li>A minor wording issue in DOC503 violation message</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18">https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18</a></li> </ul> </li> </ul> <h2>[0.5.17] - 2025-01-12</h2> <ul> <li>Added <ul> <li>A new config option <code>--auto-regenerate-baseline</code> to automatically regenerate the baseline file for every successful <em>pydoclint</em> run</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17">https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17</a></li> </ul> </li> </ul> <h2>[0.5.16] - 2025-01-11</h2> <ul> <li> <p>Added</p> <ul> <li>A pre-commit hook for using <em>pydoclint</em> as a flake8 plugin</li> </ul> </li> <li> <p>Full diff</p> <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16">https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16</a></li> </ul> </li> </ul> <h2>[0.5.15] - 2025-01-10</h2> <ul> <li>Changed</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/jsh9/pydoclint/commit/2e8af22f66de795a7bd0ac661353596e8847bbad"><code>2e8af22</code></a> Add DOC003 to check docstring style mismatch (<a href="https://redirect.github.com/jsh9/pydoclint/issues/207">#207</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/94039b23bedf98b6a6469312d04eecee9797a90f"><code>94039b2</code></a> Add new config option for documenting star arguments (<a href="https://redirect.github.com/jsh9/pydoclint/issues/206">#206</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/22b9b37b6ccda9c19be9757ee2c7e0a86a836b96"><code>22b9b37</code></a> Fix false positive DOC405 & DOC201 for bare returns (<a href="https://redirect.github.com/jsh9/pydoclint/issues/205">#205</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/1f2ea57d39bce59362382a739572504b6ee5dfb0"><code>1f2ea57</code></a> Fix wording in DOC503 violation message (<a href="https://redirect.github.com/jsh9/pydoclint/issues/204">#204</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/91263b841745adef4a052354bf4301107fc803ae"><code>91263b8</code></a> Fix parsing and comparison of chained custom exceptions (<a href="https://redirect.github.com/jsh9/pydoclint/issues/203">#203</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/64ef92306050cd21e51a99b1dccd87a41274f6e5"><code>64ef923</code></a> Add tips, tricks, and pitfalls to README</li> <li><a href="https://github.com/jsh9/pydoclint/commit/fe188f425eae9e77c74f169ff2d16e740e370d0b"><code>fe188f4</code></a> Add an option to auto regenerate baseline (<a href="https://redirect.github.com/jsh9/pydoclint/issues/202">#202</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/7282eb691ca4c1e4742c62fe7c3578bb9348f0fb"><code>7282eb6</code></a> 👌 Add pre-commit-hook to run pydoclint via flake8 (<a href="https://redirect.github.com/jsh9/pydoclint/issues/200">#200</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/4021d8d9b3216e2789bd5f28fa7c761228b9b3d4"><code>4021d8d</code></a> Throw DOC001 when docstring sections can't be parsed (numpy style) (<a href="https://redirect.github.com/jsh9/pydoclint/issues/199">#199</a>)</li> <li>See full diff in <a href="https://github.com/jsh9/pydoclint/compare/0.5.14...0.6.0">compare view</a></li> </ul> </details> <br /> Updates `mkdocs-material` from 9.5.49 to 9.6.1 <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.6.1</h2> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7943">#7943</a>: Tags plugin crashing due to merge error</li> </ul> <h2>mkdocs-material-9.6.0</h2> <ul> <li>Added meta plugin</li> <li>Rewrite of the tags plugin</li> <li>Added support for allow lists in tags plugin</li> <li>Added support for and custom sorting in tags plugin</li> <li>Added support for related links in blog plugin</li> <li>Added support for custom index pages in blog plugin</li> <li>Added support for navigation subtitles</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7924">#7924</a>: Anchors might require two clicks when using instant navigation</li> </ul> <h2>mkdocs-material-9.5.50</h2> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7913">#7913</a>: Social plugin renders attribute lists in page title</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.6.1 (2025-01-31)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7943">#7943</a>: Tags plugin crashing due to merge error</li> </ul> <p>mkdocs-material-9.6.0 (2025-01-31)</p> <ul> <li>Added meta plugin</li> <li>Rewrite of the tags plugin</li> <li>Added support for allow lists in tags plugin</li> <li>Added support for and custom sorting in tags plugin</li> <li>Added support for related links in blog plugin</li> <li>Added support for custom index pages in blog plugin</li> <li>Added support for navigation subtitles</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7924">#7924</a>: Anchors might require two clicks when using instant navigation</li> </ul> <p>mkdocs-material-9.5.50 (2025-01-18)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7913">#7913</a>: Social plugin renders attribute lists in page title</li> </ul> <p>mkdocs-material-9.5.49+insiders-4.53.15 (2025-01-15)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7896">#7896</a>: Scoped tags listings not rendering in subsections</li> </ul> <p>mkdocs-material-9.5.49 (2024-12-16)</p> <ul> <li>Adjusted title color in dark mode for all supported Mermaid.js diagrams</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7803">#7803</a>: Privacy plugin crashes on generated files</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7781">#7781</a>: Mermaid.js flow chart title not visible in dark mode</li> </ul> <p>mkdocs-material-9.5.48 (2024-12-08)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7774">#7774</a>: Disabling social cards doesn't work</li> </ul> <p>mkdocs-material-9.5.47 (2024-12-01)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7750">#7750</a>: Numeric tags break search</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7748">#7748</a>: Blog plugin breaks when using future drafts (9.5.45 regression)</li> </ul> <p>mkdocs-material-9.5.46 (2024-11-25)</p> <ul> <li>Added support for removing preload hints in privacy plugin</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7734">#7734</a>: Code blocks in h5 headlines are uppercased</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7725">#7725</a>: Blog plugin crashing on missing timezone (9.5.45 regression)</li> </ul> <p>mkdocs-material-9.5.45 (2024-11-20)</p> <ul> <li>Reduced size of Docker image through multi-stage build</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7708">#7708</a>: Blog plugin crashing on YAML dates with timezones</li> </ul> <p>mkdocs-material-9.5.44 (2024-11-05)</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/454af62a45622e3ebf14d25b3ab1ea69c1130e8f"><code>454af62</code></a> Prepare 9.6.1 release</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/2d147c72c02b842937320c58b98e20179742a7a6"><code>2d147c7</code></a> Fixed crashing tags plugin</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/34dc4feba7b45c892c3d6ec2c3d8413a5ebdac5f"><code>34dc4fe</code></a> Updated Premium sponsors</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/8edc6f8daaf0e1e7ebb94be99d3f10e46cd8bfbd"><code>8edc6f8</code></a> Updated Premium sponsors</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/0be1d6b3c8b9f3aff1f91be8f7050dcc96a40321"><code>0be1d6b</code></a> Documentation</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/34e301d311d2e753022e1ae23fd851cbfd73be6a"><code>34e301d</code></a> Fixed build badge</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/4ca5214ebf1665fff5de7be140ab6188eb0ec5a5"><code>4ca5214</code></a> Corrected position of related links in blog post</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/627737ae38905578d761fb7c916b5fdcf854973e"><code>627737a</code></a> Merge pull request <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7942">#7942</a> from squidfunk/merge/chipotle</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/49daf573f0cf01cd66a87f6bba3815b775280287"><code>49daf57</code></a> Updated dependencies</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/1416697c6b27725859d522c8763914c2b1fb1615"><code>1416697</code></a> Prepare 9.6.0 release</li> <li>Additional commits viewable in <a href="https://github.com/squidfunk/mkdocs-material/compare/9.5.49...9.6.1">compare view</a></li> </ul> </details> <br /> Updates `pylint` from 3.3.3 to 3.3.4 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pylint-dev/pylint/commit/c2b01c3d0b6410d4c93eb1f32fb28f2116b1e68f"><code>c2b01c3</code></a> Bump pylint to 3.3.4, update changelog</li> <li><a href="https://github.com/pylint-dev/pylint/commit/023cd4355c48e3e0c7702e65fde2d99794b25554"><code>023cd43</code></a> [isort] Permit to use isort 6 (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10204">#10204</a>)</li> <li><a href="https://github.com/pylint-dev/pylint/commit/050acfe49c525cd5e58f7c289d35aee1af4051e5"><code>050acfe</code></a> Calculate linter.config.jobs in cgroupsv2 environments (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10089">#10089</a>) (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10169">#10169</a>)</li> <li><a href="https://github.com/pylint-dev/pylint/commit/d6992b8cf993af7a94a9a3044185fb3ea838ac49"><code>d6992b8</code></a> fix "skipped files" count calculation (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10141">#10141</a>)</li> <li>See full diff in <a href="https://github.com/pylint-dev/pylint/compare/v3.3.3...v3.3.4">compare view</a></li> </ul> </details> <br /> Updates `pytest-asyncio` from 0.25.1 to 0.25.3 <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.25.3</h2> <ul> <li>Avoid errors in cleanup of async generators when event loop is already closed <a href="https://redirect.github.com/pytest-dev/pytest-asyncio/issues/1040">#1040</a></li> </ul> <h2>pytest-asyncio 0.25.2</h2> <ul> <li>Call <code>loop.shutdown_asyncgens()</code> before closing the event loop to ensure async generators are closed in the same manner as <code>asyncio.run</code> does <a href="https://redirect.github.com/pytest-dev/pytest-asyncio/pull/1034">#1034</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/7c501923b00b4aeeb68d4b3b11065f0c3b5cba2c"><code>7c50192</code></a> fix: Avoid errors in cleanup of async generators when event loop is already c...</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/2188cdbbf7b47e653957d3f39aeb7d4d0de80bf4"><code>2188cdb</code></a> build: Prepare release of v0.25.2.</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/c3ad6340b8ad251f3c03d6bbe399f08434059bda"><code>c3ad634</code></a> fix: Shutdown generators before closing event loops.</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/e8ffb10528aaf578dc9ccc7ddbb1fadab56be8ac"><code>e8ffb10</code></a> [pre-commit.ci] pre-commit autoupdate</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/aae43d4f766dfd8f9a643faad41be411888a5d16"><code>aae43d4</code></a> Build(deps): Bump hypothesis in /dependencies/default</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/941e8b5104d86bb1b06b15fd3395f23120203c09"><code>941e8b5</code></a> Build(deps): Bump pygments from 2.18.0 to 2.19.1 in /dependencies/docs</li> <li>See full diff in <a href="https://github.com/pytest-dev/pytest-asyncio/compare/v0.25.1...v0.25.3">compare view</a></li> </ul> </details> <br /> Updates `hypothesis` from 6.123.2 to 6.124.9 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/HypothesisWorks/hypothesis/releases">hypothesis's releases</a>.</em></p> <blockquote> <h2>Hypothesis for Python - version 6.124.9</h2> <p>Registration of experimental Alternative backends for Hypothesis is now done via "hypothesis.internal.conjecture.providers.AVAILABLE_PROVIDERS" instead of "hypothesis.internal.conjecture.data.AVAILABLE_PROVIDERS".</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changes.html#v6-124-9">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.124.8</h2> <p>Refactor some internals for better type hinting.</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changes.html#v6-124-8">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.124.7</h2> <p>Internal renamings.</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changes.html#v6-124-7">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.124.6</h2> <p>More work on internal type hints.</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changes.html#v6-124-6">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.124.5</h2> <p>Internal refactoring to make some stateful internals easier to access.</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changes.html#v6-124-5">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.124.4</h2> <p>Refactoring of our internal input generation. This shouldn't lead to any changes in the distribution of test inputs. If you notice any, please open an issue!</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changes.html#v6-124-4">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.124.3</h2> <p>Some Hypothesis internals now use the number of choices as a yardstick of input size, rather than the entropy consumed by those choices. We don't expect this to cause significant behavioral changes.</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changes.html#v6-124-3">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.124.2</h2> <p>Improves our internal caching logic for test cases.</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changes.html#v6-124-2">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.124.1</h2> <p>fuzz_one_input is now implemented using an alternative backend. This brings the interpretation of the fuzzer-provided bytestring closer to</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/a25f7d94c76e27c56e86c37c9491919358f774e3"><code>a25f7d9</code></a> Bump hypothesis-python version to 6.124.9 and update changelog</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/63bb80c8a83a3f3a96443ed803f7179cfc9a6160"><code>63bb80c</code></a> Merge pull request <a href="https://redirect.github.com/HypothesisWorks/hypothesis/issues/4254">#4254</a> from tybug/tcs-cleanup</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/869e3de68bd1eab9d8e84d997159a86238ac0adc"><code>869e3de</code></a> reorganize code for the typed choice sequence</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/9d7e1d37b387023daca9b3e533e684c4850f96fe"><code>9d7e1d3</code></a> Bump hypothesis-python version to 6.124.8 and update changelog</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/ee494ea8918e8f7b33285ba90106a81e2e92ac3b"><code>ee494ea</code></a> Merge pull request <a href="https://redirect.github.com/HypothesisWorks/hypothesis/issues/4258">#4258</a> from tybug/typing</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/7dea49ddcfcfba9968cc8b5b75fd69ef8eafc504"><code>7dea49d</code></a> add more explicit coverage test</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/e55b6ddf606b5ba56effd263d61d0437134b45a5"><code>e55b6dd</code></a> remove unused tyoevar</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/d332a78aa3445540ff5474eb396abb53ec8d7f87"><code>d332a78</code></a> type shrinker and predicate, add some engine typing</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/5b0ec313540853b36f0b8afd0078f3db89521a97"><code>5b0ec31</code></a> type p_continue</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/46e9235ff91f02d4eddd636f8f8b3d26917bf351"><code>46e9235</code></a> bump black and use it to format</li> <li>Additional commits viewable in <a href="https://github.com/HypothesisWorks/hypothesis/compare/hypothesis-python-6.123.2...hypothesis-python-6.124.9">compare view</a></li> </ul> </details> <br /> Updates `setuptools` from 75.6.0 to 75.8.0 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pypa/setuptools/blob/main/NEWS.rst">setuptools's changelog</a>.</em></p> <blockquote> <h1>v75.8.0</h1> <h2>Features</h2> <ul> <li>Implemented <code>Dynamic</code> field for core metadata (as introduced in PEP 643). The existing implementation is currently experimental and the exact approach may change in future releases. (<a href="https://redirect.github.com/pypa/setuptools/issues/4698">#4698</a>)</li> </ul> <h1>v75.7.0</h1> <h2>Features</h2> <ul> <li><code>pypa/distutils#310</code><a href="https://redirect.github.com/pypa/setuptools/issues/4478">#4478</a>)</li> <li>Synced with pypa/distutils@ff11eed0c including bugfix for duplicate CFLAGS and adaption to support Python 3.13 is_abs in the C compiler (<a href="https://redirect.github.com/pypa/setuptools/issues/4669">#4669</a>). (<a href="https://redirect.github.com/pypa/setuptools/issues/4790">#4790</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pypa/setuptools/commit/5c9d9809dec1b20e2a9da6b4a06355fd6f87a190"><code>5c9d980</code></a> Bump version: 75.7.0 → 75.8.0</li> <li><a href="https://github.com/pypa/setuptools/commit/72c422261b40f2b95a8be6605cc7dd93cec81794"><code>72c4222</code></a> Avoid using Any in function</li> <li><a href="https://github.com/pypa/setuptools/commit/1c61d4799438677c7cfaaccf281312bfb1aee9b3"><code>1c61d47</code></a> Add news fragments for PEP 643</li> <li><a href="https://github.com/pypa/setuptools/commit/f285d01e2661b01e4947a4dca7704790b65f2967"><code>f285d01</code></a> Implement PEP 643 (<code>Dynamic</code> field for core metadata) (<a href="https://redirect.github.com/pypa/setuptools/issues/4698">#4698</a>)</li> <li><a href="https://github.com/pypa/setuptools/commit/a50f6e2e1e8b4610adde709079bec17ad0944197"><code>a50f6e2</code></a> Fix _static.Dict.<strong>ior</strong> for Python 3.8</li> <li><a href="https://github.com/pypa/setuptools/commit/b055895fa337a6e03a29c2ea6493b6b778d2ba46"><code>b055895</code></a> Add extra tests for static/dynamic metadata</li> <li><a href="https://github.com/pypa/setuptools/commit/770b4fc8f6248d862629028f5ee4218975f9516b"><code>770b4fc</code></a> Remove test workaround for unmarked static values from pyproject.toml</li> <li><a href="https://github.com/pypa/setuptools/commit/8b22d73be5e23a9611398d81aedc5164115940ce"><code>8b22d73</code></a> Mark values from pyproject.toml as static</li> <li><a href="https://github.com/pypa/setuptools/commit/f699fd842e3ddedbe937ee33b0bd6ad28e735664"><code>f699fd8</code></a> Fix spelling error</li> <li><a href="https://github.com/pypa/setuptools/commit/8b4c8a3c95f43d771d0fa6e4ebceea3436bc70f7"><code>8b4c8a3</code></a> Add tests for static 'attr' directive</li> <li>Additional commits viewable in <a href="https://github.com/pypa/setuptools/compare/v75.6.0...v75.8.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>
Bumps the required group with 6 updates: | Package | From | To | | --- | --- | --- | | [pydoclint](https://github.com/jsh9/pydoclint) | `0.5.14` | `0.6.0` | | [mkdocs-material](https://github.com/squidfunk/mkdocs-material) | `9.5.49` | `9.6.1` | | [pylint](https://github.com/pylint-dev/pylint) | `3.3.3` | `3.3.4` | | [pytest-asyncio](https://github.com/pytest-dev/pytest-asyncio) | `0.25.1` | `0.25.3` | | [hypothesis](https://github.com/HypothesisWorks/hypothesis) | `6.123.2` | `6.124.9` | | [setuptools](https://github.com/pypa/setuptools) | `75.6.0` | `75.8.0` | Updates `pydoclint` from 0.5.14 to 0.6.0 <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.6.0</h2> <h2>What's Changed</h2> <ul> <li>Add DOC003 to check docstring style mismatch by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/207">jsh9/pydoclint#207</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0">https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0</a></p> <h2>0.5.19</h2> <h2>What's Changed</h2> <ul> <li>Fix false positive DOC405 & DOC201 for bare returns by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/205">jsh9/pydoclint#205</a></li> <li>Add new config option for documenting star arguments by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/206">jsh9/pydoclint#206</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19">https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19</a></p> <h2>0.5.18</h2> <h2>What's Changed</h2> <ul> <li>Fix parsing and comparison of chained custom exceptions by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/203">jsh9/pydoclint#203</a></li> <li>Fix wording in DOC503 violation message by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/204">jsh9/pydoclint#204</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18">https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18</a></p> <h2>0.5.17</h2> <h2>What's Changed</h2> <ul> <li>Add an option to auto regenerate baseline by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/202">jsh9/pydoclint#202</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17">https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17</a></p> <h2>0.5.16</h2> <h2>What's Changed</h2> <ul> <li>👌 Add pre-commit-hook to run pydoclint via flake8 by <a href="https://github.com/s-weigand"><code>@s-weigand</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/200">jsh9/pydoclint#200</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16">https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16</a></p> <h2>0.5.15</h2> <h2>What's Changed</h2> <ul> <li>Throw DOC001 when docstring sections can't be parsed (numpy style) by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/199">jsh9/pydoclint#199</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.14...0.5.15">https://github.com/jsh9/pydoclint/compare/0.5.14...0.5.15</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.6.0] - 2025-01-13</h2> <ul> <li>Added <ul> <li>A new violation code, <code>DOC003</code>, to detect docstring style mismatch (when docstrings are written in the style different from specified)</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0">https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0</a></li> </ul> </li> </ul> <h2>[0.5.19] - 2025-01-12</h2> <ul> <li>Fixed <ul> <li>False positive DOC405 and DOC201 when we have bare return statements together with <code>yield</code> statements</li> </ul> </li> <li>Added <ul> <li>A new config option <code>--should-document-star-arguments</code> (if <code>False</code>, star arguments such as <code>*args</code> and <code>**kwargs</code> should not be documented in the docstring)</li> <li>A pre-commit step to check that "Full diff" is always added in CHANGELOG.md</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19">https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19</a></li> </ul> </li> </ul> <h2>[0.5.18] - 2025-01-12</h2> <ul> <li>Fixed <ul> <li>An issue where custom exceptions such as <code>a.b.c.MyException.from_str</code> cannot be properly parsed and compared</li> <li>A minor wording issue in DOC503 violation message</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18">https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18</a></li> </ul> </li> </ul> <h2>[0.5.17] - 2025-01-12</h2> <ul> <li>Added <ul> <li>A new config option <code>--auto-regenerate-baseline</code> to automatically regenerate the baseline file for every successful <em>pydoclint</em> run</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17">https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17</a></li> </ul> </li> </ul> <h2>[0.5.16] - 2025-01-11</h2> <ul> <li> <p>Added</p> <ul> <li>A pre-commit hook for using <em>pydoclint</em> as a flake8 plugin</li> </ul> </li> <li> <p>Full diff</p> <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16">https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16</a></li> </ul> </li> </ul> <h2>[0.5.15] - 2025-01-10</h2> <ul> <li>Changed</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/jsh9/pydoclint/commit/2e8af22f66de795a7bd0ac661353596e8847bbad"><code>2e8af22</code></a> Add DOC003 to check docstring style mismatch (<a href="https://redirect.github.com/jsh9/pydoclint/issues/207">#207</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/94039b23bedf98b6a6469312d04eecee9797a90f"><code>94039b2</code></a> Add new config option for documenting star arguments (<a href="https://redirect.github.com/jsh9/pydoclint/issues/206">#206</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/22b9b37b6ccda9c19be9757ee2c7e0a86a836b96"><code>22b9b37</code></a> Fix false positive DOC405 & DOC201 for bare returns (<a href="https://redirect.github.com/jsh9/pydoclint/issues/205">#205</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/1f2ea57d39bce59362382a739572504b6ee5dfb0"><code>1f2ea57</code></a> Fix wording in DOC503 violation message (<a href="https://redirect.github.com/jsh9/pydoclint/issues/204">#204</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/91263b841745adef4a052354bf4301107fc803ae"><code>91263b8</code></a> Fix parsing and comparison of chained custom exceptions (<a href="https://redirect.github.com/jsh9/pydoclint/issues/203">#203</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/64ef92306050cd21e51a99b1dccd87a41274f6e5"><code>64ef923</code></a> Add tips, tricks, and pitfalls to README</li> <li><a href="https://github.com/jsh9/pydoclint/commit/fe188f425eae9e77c74f169ff2d16e740e370d0b"><code>fe188f4</code></a> Add an option to auto regenerate baseline (<a href="https://redirect.github.com/jsh9/pydoclint/issues/202">#202</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/7282eb691ca4c1e4742c62fe7c3578bb9348f0fb"><code>7282eb6</code></a> 👌 Add pre-commit-hook to run pydoclint via flake8 (<a href="https://redirect.github.com/jsh9/pydoclint/issues/200">#200</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/4021d8d9b3216e2789bd5f28fa7c761228b9b3d4"><code>4021d8d</code></a> Throw DOC001 when docstring sections can't be parsed (numpy style) (<a href="https://redirect.github.com/jsh9/pydoclint/issues/199">#199</a>)</li> <li>See full diff in <a href="https://github.com/jsh9/pydoclint/compare/0.5.14...0.6.0">compare view</a></li> </ul> </details> <br /> Updates `mkdocs-material` from 9.5.49 to 9.6.1 <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.6.1</h2> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7943">#7943</a>: Tags plugin crashing due to merge error</li> </ul> <h2>mkdocs-material-9.6.0</h2> <ul> <li>Added meta plugin</li> <li>Rewrite of the tags plugin</li> <li>Added support for allow lists in tags plugin</li> <li>Added support for and custom sorting in tags plugin</li> <li>Added support for related links in blog plugin</li> <li>Added support for custom index pages in blog plugin</li> <li>Added support for navigation subtitles</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7924">#7924</a>: Anchors might require two clicks when using instant navigation</li> </ul> <h2>mkdocs-material-9.5.50</h2> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7913">#7913</a>: Social plugin renders attribute lists in page title</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.6.1 (2025-01-31)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7943">#7943</a>: Tags plugin crashing due to merge error</li> </ul> <p>mkdocs-material-9.6.0 (2025-01-31)</p> <ul> <li>Added meta plugin</li> <li>Rewrite of the tags plugin</li> <li>Added support for allow lists in tags plugin</li> <li>Added support for and custom sorting in tags plugin</li> <li>Added support for related links in blog plugin</li> <li>Added support for custom index pages in blog plugin</li> <li>Added support for navigation subtitles</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7924">#7924</a>: Anchors might require two clicks when using instant navigation</li> </ul> <p>mkdocs-material-9.5.50 (2025-01-18)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7913">#7913</a>: Social plugin renders attribute lists in page title</li> </ul> <p>mkdocs-material-9.5.49+insiders-4.53.15 (2025-01-15)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7896">#7896</a>: Scoped tags listings not rendering in subsections</li> </ul> <p>mkdocs-material-9.5.49 (2024-12-16)</p> <ul> <li>Adjusted title color in dark mode for all supported Mermaid.js diagrams</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7803">#7803</a>: Privacy plugin crashes on generated files</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7781">#7781</a>: Mermaid.js flow chart title not visible in dark mode</li> </ul> <p>mkdocs-material-9.5.48 (2024-12-08)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7774">#7774</a>: Disabling social cards doesn't work</li> </ul> <p>mkdocs-material-9.5.47 (2024-12-01)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7750">#7750</a>: Numeric tags break search</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7748">#7748</a>: Blog plugin breaks when using future drafts (9.5.45 regression)</li> </ul> <p>mkdocs-material-9.5.46 (2024-11-25)</p> <ul> <li>Added support for removing preload hints in privacy plugin</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7734">#7734</a>: Code blocks in h5 headlines are uppercased</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7725">#7725</a>: Blog plugin crashing on missing timezone (9.5.45 regression)</li> </ul> <p>mkdocs-material-9.5.45 (2024-11-20)</p> <ul> <li>Reduced size of Docker image through multi-stage build</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7708">#7708</a>: Blog plugin crashing on YAML dates with timezones</li> </ul> <p>mkdocs-material-9.5.44 (2024-11-05)</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/454af62a45622e3ebf14d25b3ab1ea69c1130e8f"><code>454af62</code></a> Prepare 9.6.1 release</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/2d147c72c02b842937320c58b98e20179742a7a6"><code>2d147c7</code></a> Fixed crashing tags plugin</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/34dc4feba7b45c892c3d6ec2c3d8413a5ebdac5f"><code>34dc4fe</code></a> Updated Premium sponsors</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/8edc6f8daaf0e1e7ebb94be99d3f10e46cd8bfbd"><code>8edc6f8</code></a> Updated Premium sponsors</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/0be1d6b3c8b9f3aff1f91be8f7050dcc96a40321"><code>0be1d6b</code></a> Documentation</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/34e301d311d2e753022e1ae23fd851cbfd73be6a"><code>34e301d</code></a> Fixed build badge</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/4ca5214ebf1665fff5de7be140ab6188eb0ec5a5"><code>4ca5214</code></a> Corrected position of related links in blog post</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/627737ae38905578d761fb7c916b5fdcf854973e"><code>627737a</code></a> Merge pull request <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7942">#7942</a> from squidfunk/merge/chipotle</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/49daf573f0cf01cd66a87f6bba3815b775280287"><code>49daf57</code></a> Updated dependencies</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/1416697c6b27725859d522c8763914c2b1fb1615"><code>1416697</code></a> Prepare 9.6.0 release</li> <li>Additional commits viewable in <a href="https://github.com/squidfunk/mkdocs-material/compare/9.5.49...9.6.1">compare view</a></li> </ul> </details> <br /> Updates `pylint` from 3.3.3 to 3.3.4 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pylint-dev/pylint/commit/c2b01c3d0b6410d4c93eb1f32fb28f2116b1e68f"><code>c2b01c3</code></a> Bump pylint to 3.3.4, update changelog</li> <li><a href="https://github.com/pylint-dev/pylint/commit/023cd4355c48e3e0c7702e65fde2d99794b25554"><code>023cd43</code></a> [isort] Permit to use isort 6 (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10204">#10204</a>)</li> <li><a href="https://github.com/pylint-dev/pylint/commit/050acfe49c525cd5e58f7c289d35aee1af4051e5"><code>050acfe</code></a> Calculate linter.config.jobs in cgroupsv2 environments (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10089">#10089</a>) (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10169">#10169</a>)</li> <li><a href="https://github.com/pylint-dev/pylint/commit/d6992b8cf993af7a94a9a3044185fb3ea838ac49"><code>d6992b8</code></a> fix "skipped files" count calculation (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10141">#10141</a>)</li> <li>See full diff in <a href="https://github.com/pylint-dev/pylint/compare/v3.3.3...v3.3.4">compare view</a></li> </ul> </details> <br /> Updates `pytest-asyncio` from 0.25.1 to 0.25.3 <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.25.3</h2> <ul> <li>Avoid errors in cleanup of async generators when event loop is already closed <a href="https://redirect.github.com/pytest-dev/pytest-asyncio/issues/1040">#1040</a></li> </ul> <h2>pytest-asyncio 0.25.2</h2> <ul> <li>Call <code>loop.shutdown_asyncgens()</code> before closing the event loop to ensure async generators are closed in the same manner as <code>asyncio.run</code> does <a href="https://redirect.github.com/pytest-dev/pytest-asyncio/pull/1034">#1034</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/7c501923b00b4aeeb68d4b3b11065f0c3b5cba2c"><code>7c50192</code></a> fix: Avoid errors in cleanup of async generators when event loop is already c...</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/2188cdbbf7b47e653957d3f39aeb7d4d0de80bf4"><code>2188cdb</code></a> build: Prepare release of v0.25.2.</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/c3ad6340b8ad251f3c03d6bbe399f08434059bda"><code>c3ad634</code></a> fix: Shutdown generators before closing event loops.</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/e8ffb10528aaf578dc9ccc7ddbb1fadab56be8ac"><code>e8ffb10</code></a> [pre-commit.ci] pre-commit autoupdate</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/aae43d4f766dfd8f9a643faad41be411888a5d16"><code>aae43d4</code></a> Build(deps): Bump hypothesis in /dependencies/default</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/941e8b5104d86bb1b06b15fd3395f23120203c09"><code>941e8b5</code></a> Build(deps): Bump pygments from 2.18.0 to 2.19.1 in /dependencies/docs</li> <li>See full diff in <a href="https://github.com/pytest-dev/pytest-asyncio/compare/v0.25.1...v0.25.3">compare view</a></li> </ul> </details> <br /> Updates `hypothesis` from 6.123.2 to 6.124.9 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/HypothesisWorks/hypothesis/releases">hypothesis's releases</a>.</em></p> <blockquote> <h2>Hypothesis for Python - version 6.124.9</h2> <p>Registration of experimental Alternative backends for Hypothesis is now done via "hypothesis.internal.conjecture.providers.AVAILABLE_PROVIDERS" instead of "hypothesis.internal.conjecture.data.AVAILABLE_PROVIDERS".</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changes.html#v6-124-9">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.124.8</h2> <p>Refactor some internals for better type hinting.</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changes.html#v6-124-8">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.124.7</h2> <p>Internal renamings.</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changes.html#v6-124-7">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.124.6</h2> <p>More work on internal type hints.</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changes.html#v6-124-6">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.124.5</h2> <p>Internal refactoring to make some stateful internals easier to access.</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changes.html#v6-124-5">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.124.4</h2> <p>Refactoring of our internal input generation. This shouldn't lead to any changes in the distribution of test inputs. If you notice any, please open an issue!</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changes.html#v6-124-4">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.124.3</h2> <p>Some Hypothesis internals now use the number of choices as a yardstick of input size, rather than the entropy consumed by those choices. We don't expect this to cause significant behavioral changes.</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changes.html#v6-124-3">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.124.2</h2> <p>Improves our internal caching logic for test cases.</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changes.html#v6-124-2">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.124.1</h2> <p>fuzz_one_input is now implemented using an alternative backend. This brings the interpretation of the fuzzer-provided bytestring closer to</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/a25f7d94c76e27c56e86c37c9491919358f774e3"><code>a25f7d9</code></a> Bump hypothesis-python version to 6.124.9 and update changelog</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/63bb80c8a83a3f3a96443ed803f7179cfc9a6160"><code>63bb80c</code></a> Merge pull request <a href="https://redirect.github.com/HypothesisWorks/hypothesis/issues/4254">#4254</a> from tybug/tcs-cleanup</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/869e3de68bd1eab9d8e84d997159a86238ac0adc"><code>869e3de</code></a> reorganize code for the typed choice sequence</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/9d7e1d37b387023daca9b3e533e684c4850f96fe"><code>9d7e1d3</code></a> Bump hypothesis-python version to 6.124.8 and update changelog</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/ee494ea8918e8f7b33285ba90106a81e2e92ac3b"><code>ee494ea</code></a> Merge pull request <a href="https://redirect.github.com/HypothesisWorks/hypothesis/issues/4258">#4258</a> from tybug/typing</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/7dea49ddcfcfba9968cc8b5b75fd69ef8eafc504"><code>7dea49d</code></a> add more explicit coverage test</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/e55b6ddf606b5ba56effd263d61d0437134b45a5"><code>e55b6dd</code></a> remove unused tyoevar</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/d332a78aa3445540ff5474eb396abb53ec8d7f87"><code>d332a78</code></a> type shrinker and predicate, add some engine typing</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/5b0ec313540853b36f0b8afd0078f3db89521a97"><code>5b0ec31</code></a> type p_continue</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/46e9235ff91f02d4eddd636f8f8b3d26917bf351"><code>46e9235</code></a> bump black and use it to format</li> <li>Additional commits viewable in <a href="https://github.com/HypothesisWorks/hypothesis/compare/hypothesis-python-6.123.2...hypothesis-python-6.124.9">compare view</a></li> </ul> </details> <br /> Updates `setuptools` from 75.6.0 to 75.8.0 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pypa/setuptools/blob/main/NEWS.rst">setuptools's changelog</a>.</em></p> <blockquote> <h1>v75.8.0</h1> <h2>Features</h2> <ul> <li>Implemented <code>Dynamic</code> field for core metadata (as introduced in PEP 643). The existing implementation is currently experimental and the exact approach may change in future releases. (<a href="https://redirect.github.com/pypa/setuptools/issues/4698">#4698</a>)</li> </ul> <h1>v75.7.0</h1> <h2>Features</h2> <ul> <li><code>pypa/distutils#310</code><a href="https://redirect.github.com/pypa/setuptools/issues/4478">#4478</a>)</li> <li>Synced with pypa/distutils@ff11eed0c including bugfix for duplicate CFLAGS and adaption to support Python 3.13 is_abs in the C compiler (<a href="https://redirect.github.com/pypa/setuptools/issues/4669">#4669</a>). (<a href="https://redirect.github.com/pypa/setuptools/issues/4790">#4790</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pypa/setuptools/commit/5c9d9809dec1b20e2a9da6b4a06355fd6f87a190"><code>5c9d980</code></a> Bump version: 75.7.0 → 75.8.0</li> <li><a href="https://github.com/pypa/setuptools/commit/72c422261b40f2b95a8be6605cc7dd93cec81794"><code>72c4222</code></a> Avoid using Any in function</li> <li><a href="https://github.com/pypa/setuptools/commit/1c61d4799438677c7cfaaccf281312bfb1aee9b3"><code>1c61d47</code></a> Add news fragments for PEP 643</li> <li><a href="https://github.com/pypa/setuptools/commit/f285d01e2661b01e4947a4dca7704790b65f2967"><code>f285d01</code></a> Implement PEP 643 (<code>Dynamic</code> field for core metadata) (<a href="https://redirect.github.com/pypa/setuptools/issues/4698">#4698</a>)</li> <li><a href="https://github.com/pypa/setuptools/commit/a50f6e2e1e8b4610adde709079bec17ad0944197"><code>a50f6e2</code></a> Fix _static.Dict.<strong>ior</strong> for Python 3.8</li> <li><a href="https://github.com/pypa/setuptools/commit/b055895fa337a6e03a29c2ea6493b6b778d2ba46"><code>b055895</code></a> Add extra tests for static/dynamic metadata</li> <li><a href="https://github.com/pypa/setuptools/commit/770b4fc8f6248d862629028f5ee4218975f9516b"><code>770b4fc</code></a> Remove test workaround for unmarked static values from pyproject.toml</li> <li><a href="https://github.com/pypa/setuptools/commit/8b22d73be5e23a9611398d81aedc5164115940ce"><code>8b22d73</code></a> Mark values from pyproject.toml as static</li> <li><a href="https://github.com/pypa/setuptools/commit/f699fd842e3ddedbe937ee33b0bd6ad28e735664"><code>f699fd8</code></a> Fix spelling error</li> <li><a href="https://github.com/pypa/setuptools/commit/8b4c8a3c95f43d771d0fa6e4ebceea3436bc70f7"><code>8b4c8a3</code></a> Add tests for static 'attr' directive</li> <li>Additional commits viewable in <a href="https://github.com/pypa/setuptools/compare/v75.6.0...v75.8.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>
Bumps the required group with 6 updates: | Package | From | To | | --- | --- | --- | | [pydoclint](https://github.com/jsh9/pydoclint) | `0.5.14` | `0.6.0` | | [mkdocs-material](https://github.com/squidfunk/mkdocs-material) | `9.5.49` | `9.6.1` | | [pylint](https://github.com/pylint-dev/pylint) | `3.3.3` | `3.3.4` | | [pytest-asyncio](https://github.com/pytest-dev/pytest-asyncio) | `0.25.0` | `0.25.3` | | [hypothesis](https://github.com/HypothesisWorks/hypothesis) | `6.123.2` | `6.124.9` | | [setuptools](https://github.com/pypa/setuptools) | `75.6.0` | `75.8.0` | Updates `pydoclint` from 0.5.14 to 0.6.0 <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.6.0</h2> <h2>What's Changed</h2> <ul> <li>Add DOC003 to check docstring style mismatch by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/207">jsh9/pydoclint#207</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0">https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0</a></p> <h2>0.5.19</h2> <h2>What's Changed</h2> <ul> <li>Fix false positive DOC405 & DOC201 for bare returns by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/205">jsh9/pydoclint#205</a></li> <li>Add new config option for documenting star arguments by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/206">jsh9/pydoclint#206</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19">https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19</a></p> <h2>0.5.18</h2> <h2>What's Changed</h2> <ul> <li>Fix parsing and comparison of chained custom exceptions by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/203">jsh9/pydoclint#203</a></li> <li>Fix wording in DOC503 violation message by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/204">jsh9/pydoclint#204</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18">https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18</a></p> <h2>0.5.17</h2> <h2>What's Changed</h2> <ul> <li>Add an option to auto regenerate baseline by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/202">jsh9/pydoclint#202</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17">https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17</a></p> <h2>0.5.16</h2> <h2>What's Changed</h2> <ul> <li>👌 Add pre-commit-hook to run pydoclint via flake8 by <a href="https://github.com/s-weigand"><code>@s-weigand</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/200">jsh9/pydoclint#200</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16">https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16</a></p> <h2>0.5.15</h2> <h2>What's Changed</h2> <ul> <li>Throw DOC001 when docstring sections can't be parsed (numpy style) by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/199">jsh9/pydoclint#199</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.14...0.5.15">https://github.com/jsh9/pydoclint/compare/0.5.14...0.5.15</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.6.0] - 2025-01-13</h2> <ul> <li>Added <ul> <li>A new violation code, <code>DOC003</code>, to detect docstring style mismatch (when docstrings are written in the style different from specified)</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0">https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0</a></li> </ul> </li> </ul> <h2>[0.5.19] - 2025-01-12</h2> <ul> <li>Fixed <ul> <li>False positive DOC405 and DOC201 when we have bare return statements together with <code>yield</code> statements</li> </ul> </li> <li>Added <ul> <li>A new config option <code>--should-document-star-arguments</code> (if <code>False</code>, star arguments such as <code>*args</code> and <code>**kwargs</code> should not be documented in the docstring)</li> <li>A pre-commit step to check that "Full diff" is always added in CHANGELOG.md</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19">https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19</a></li> </ul> </li> </ul> <h2>[0.5.18] - 2025-01-12</h2> <ul> <li>Fixed <ul> <li>An issue where custom exceptions such as <code>a.b.c.MyException.from_str</code> cannot be properly parsed and compared</li> <li>A minor wording issue in DOC503 violation message</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18">https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18</a></li> </ul> </li> </ul> <h2>[0.5.17] - 2025-01-12</h2> <ul> <li>Added <ul> <li>A new config option <code>--auto-regenerate-baseline</code> to automatically regenerate the baseline file for every successful <em>pydoclint</em> run</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17">https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17</a></li> </ul> </li> </ul> <h2>[0.5.16] - 2025-01-11</h2> <ul> <li> <p>Added</p> <ul> <li>A pre-commit hook for using <em>pydoclint</em> as a flake8 plugin</li> </ul> </li> <li> <p>Full diff</p> <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16">https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16</a></li> </ul> </li> </ul> <h2>[0.5.15] - 2025-01-10</h2> <ul> <li>Changed</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/jsh9/pydoclint/commit/2e8af22f66de795a7bd0ac661353596e8847bbad"><code>2e8af22</code></a> Add DOC003 to check docstring style mismatch (<a href="https://redirect.github.com/jsh9/pydoclint/issues/207">#207</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/94039b23bedf98b6a6469312d04eecee9797a90f"><code>94039b2</code></a> Add new config option for documenting star arguments (<a href="https://redirect.github.com/jsh9/pydoclint/issues/206">#206</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/22b9b37b6ccda9c19be9757ee2c7e0a86a836b96"><code>22b9b37</code></a> Fix false positive DOC405 & DOC201 for bare returns (<a href="https://redirect.github.com/jsh9/pydoclint/issues/205">#205</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/1f2ea57d39bce59362382a739572504b6ee5dfb0"><code>1f2ea57</code></a> Fix wording in DOC503 violation message (<a href="https://redirect.github.com/jsh9/pydoclint/issues/204">#204</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/91263b841745adef4a052354bf4301107fc803ae"><code>91263b8</code></a> Fix parsing and comparison of chained custom exceptions (<a href="https://redirect.github.com/jsh9/pydoclint/issues/203">#203</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/64ef92306050cd21e51a99b1dccd87a41274f6e5"><code>64ef923</code></a> Add tips, tricks, and pitfalls to README</li> <li><a href="https://github.com/jsh9/pydoclint/commit/fe188f425eae9e77c74f169ff2d16e740e370d0b"><code>fe188f4</code></a> Add an option to auto regenerate baseline (<a href="https://redirect.github.com/jsh9/pydoclint/issues/202">#202</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/7282eb691ca4c1e4742c62fe7c3578bb9348f0fb"><code>7282eb6</code></a> 👌 Add pre-commit-hook to run pydoclint via flake8 (<a href="https://redirect.github.com/jsh9/pydoclint/issues/200">#200</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/4021d8d9b3216e2789bd5f28fa7c761228b9b3d4"><code>4021d8d</code></a> Throw DOC001 when docstring sections can't be parsed (numpy style) (<a href="https://redirect.github.com/jsh9/pydoclint/issues/199">#199</a>)</li> <li>See full diff in <a href="https://github.com/jsh9/pydoclint/compare/0.5.14...0.6.0">compare view</a></li> </ul> </details> <br /> Updates `mkdocs-material` from 9.5.49 to 9.6.1 <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.6.1</h2> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7943">#7943</a>: Tags plugin crashing due to merge error</li> </ul> <h2>mkdocs-material-9.6.0</h2> <ul> <li>Added meta plugin</li> <li>Rewrite of the tags plugin</li> <li>Added support for allow lists in tags plugin</li> <li>Added support for and custom sorting in tags plugin</li> <li>Added support for related links in blog plugin</li> <li>Added support for custom index pages in blog plugin</li> <li>Added support for navigation subtitles</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7924">#7924</a>: Anchors might require two clicks when using instant navigation</li> </ul> <h2>mkdocs-material-9.5.50</h2> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7913">#7913</a>: Social plugin renders attribute lists in page title</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.6.1 (2025-01-31)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7943">#7943</a>: Tags plugin crashing due to merge error</li> </ul> <p>mkdocs-material-9.6.0 (2025-01-31)</p> <ul> <li>Added meta plugin</li> <li>Rewrite of the tags plugin</li> <li>Added support for allow lists in tags plugin</li> <li>Added support for and custom sorting in tags plugin</li> <li>Added support for related links in blog plugin</li> <li>Added support for custom index pages in blog plugin</li> <li>Added support for navigation subtitles</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7924">#7924</a>: Anchors might require two clicks when using instant navigation</li> </ul> <p>mkdocs-material-9.5.50 (2025-01-18)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7913">#7913</a>: Social plugin renders attribute lists in page title</li> </ul> <p>mkdocs-material-9.5.49+insiders-4.53.15 (2025-01-15)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7896">#7896</a>: Scoped tags listings not rendering in subsections</li> </ul> <p>mkdocs-material-9.5.49 (2024-12-16)</p> <ul> <li>Adjusted title color in dark mode for all supported Mermaid.js diagrams</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7803">#7803</a>: Privacy plugin crashes on generated files</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7781">#7781</a>: Mermaid.js flow chart title not visible in dark mode</li> </ul> <p>mkdocs-material-9.5.48 (2024-12-08)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7774">#7774</a>: Disabling social cards doesn't work</li> </ul> <p>mkdocs-material-9.5.47 (2024-12-01)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7750">#7750</a>: Numeric tags break search</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7748">#7748</a>: Blog plugin breaks when using future drafts (9.5.45 regression)</li> </ul> <p>mkdocs-material-9.5.46 (2024-11-25)</p> <ul> <li>Added support for removing preload hints in privacy plugin</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7734">#7734</a>: Code blocks in h5 headlines are uppercased</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7725">#7725</a>: Blog plugin crashing on missing timezone (9.5.45 regression)</li> </ul> <p>mkdocs-material-9.5.45 (2024-11-20)</p> <ul> <li>Reduced size of Docker image through multi-stage build</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7708">#7708</a>: Blog plugin crashing on YAML dates with timezones</li> </ul> <p>mkdocs-material-9.5.44 (2024-11-05)</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/454af62a45622e3ebf14d25b3ab1ea69c1130e8f"><code>454af62</code></a> Prepare 9.6.1 release</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/2d147c72c02b842937320c58b98e20179742a7a6"><code>2d147c7</code></a> Fixed crashing tags plugin</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/34dc4feba7b45c892c3d6ec2c3d8413a5ebdac5f"><code>34dc4fe</code></a> Updated Premium sponsors</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/8edc6f8daaf0e1e7ebb94be99d3f10e46cd8bfbd"><code>8edc6f8</code></a> Updated Premium sponsors</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/0be1d6b3c8b9f3aff1f91be8f7050dcc96a40321"><code>0be1d6b</code></a> Documentation</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/34e301d311d2e753022e1ae23fd851cbfd73be6a"><code>34e301d</code></a> Fixed build badge</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/4ca5214ebf1665fff5de7be140ab6188eb0ec5a5"><code>4ca5214</code></a> Corrected position of related links in blog post</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/627737ae38905578d761fb7c916b5fdcf854973e"><code>627737a</code></a> Merge pull request <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7942">#7942</a> from squidfunk/merge/chipotle</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/49daf573f0cf01cd66a87f6bba3815b775280287"><code>49daf57</code></a> Updated dependencies</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/1416697c6b27725859d522c8763914c2b1fb1615"><code>1416697</code></a> Prepare 9.6.0 release</li> <li>Additional commits viewable in <a href="https://github.com/squidfunk/mkdocs-material/compare/9.5.49...9.6.1">compare view</a></li> </ul> </details> <br /> Updates `pylint` from 3.3.3 to 3.3.4 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pylint-dev/pylint/commit/c2b01c3d0b6410d4c93eb1f32fb28f2116b1e68f"><code>c2b01c3</code></a> Bump pylint to 3.3.4, update changelog</li> <li><a href="https://github.com/pylint-dev/pylint/commit/023cd4355c48e3e0c7702e65fde2d99794b25554"><code>023cd43</code></a> [isort] Permit to use isort 6 (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10204">#10204</a>)</li> <li><a href="https://github.com/pylint-dev/pylint/commit/050acfe49c525cd5e58f7c289d35aee1af4051e5"><code>050acfe</code></a> Calculate linter.config.jobs in cgroupsv2 environments (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10089">#10089</a>) (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10169">#10169</a>)</li> <li><a href="https://github.com/pylint-dev/pylint/commit/d6992b8cf993af7a94a9a3044185fb3ea838ac49"><code>d6992b8</code></a> fix "skipped files" count calculation (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10141">#10141</a>)</li> <li>See full diff in <a href="https://github.com/pylint-dev/pylint/compare/v3.3.3...v3.3.4">compare view</a></li> </ul> </details> <br /> Updates `pytest-asyncio` from 0.25.0 to 0.25.3 <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.25.3</h2> <ul> <li>Avoid errors in cleanup of async generators when event loop is already closed <a href="https://redirect.github.com/pytest-dev/pytest-asyncio/issues/1040">#1040</a></li> </ul> <h2>pytest-asyncio 0.25.2</h2> <ul> <li>Call <code>loop.shutdown_asyncgens()</code> before closing the event loop to ensure async generators are closed in the same manner as <code>asyncio.run</code> does <a href="https://redirect.github.com/pytest-dev/pytest-asyncio/pull/1034">#1034</a></li> </ul> <h2>pytest-asyncio 0.25.1</h2> <ul> <li>Fixes an issue that caused a broken event loop when a function-scoped test was executed in between two tests with wider loop scope <a href="https://redirect.github.com/pytest-dev/pytest-asyncio/issues/950">#950</a></li> <li>Improves test collection speed in auto mode <a href="https://redirect.github.com/pytest-dev/pytest-asyncio/pull/1020">#1020</a></li> <li>Corrects the warning that is emitted upon redefining the event_loop fixture</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/7c501923b00b4aeeb68d4b3b11065f0c3b5cba2c"><code>7c50192</code></a> fix: Avoid errors in cleanup of async generators when event loop is already c...</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/2188cdbbf7b47e653957d3f39aeb7d4d0de80bf4"><code>2188cdb</code></a> build: Prepare release of v0.25.2.</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/c3ad6340b8ad251f3c03d6bbe399f08434059bda"><code>c3ad634</code></a> fix: Shutdown generators before closing event loops.</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/e8ffb10528aaf578dc9ccc7ddbb1fadab56be8ac"><code>e8ffb10</code></a> [pre-commit.ci] pre-commit autoupdate</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/aae43d4f766dfd8f9a643faad41be411888a5d16"><code>aae43d4</code></a> Build(deps): Bump hypothesis in /dependencies/default</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/941e8b5104d86bb1b06b15fd3395f23120203c09"><code>941e8b5</code></a> Build(deps): Bump pygments from 2.18.0 to 2.19.1 in /dependencies/docs</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/623ab74b80b6f748e88254714f9b21a16eb7911e"><code>623ab74</code></a> docs: Prepare release of v0.25.1.</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/c236550e739b55ee62f3e6ec7f71b4f4231236d1"><code>c236550</code></a> docs: Fix broken link to the pytest.mark.asyncio reference.</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/41c645b3b79709c2812a3aa3b17943074bc33f48"><code>41c645b</code></a> fix: Correct warning message when redefining the event_loop fixture.</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/2fd10f824302d45da752341c60c8ddec48297a1b"><code>2fd10f8</code></a> docs: Clarify deprecation of event_loop fixture.</li> <li>Additional commits viewable in <a href="https://github.com/pytest-dev/pytest-asyncio/compare/v0.25.0...v0.25.3">compare view</a></li> </ul> </details> <br /> Updates `hypothesis` from 6.123.2 to 6.124.9 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/HypothesisWorks/hypothesis/releases">hypothesis's releases</a>.</em></p> <blockquote> <h2>Hypothesis for Python - version 6.124.9</h2> <p>Registration of experimental Alternative backends for Hypothesis is now done via "hypothesis.internal.conjecture.providers.AVAILABLE_PROVIDERS" instead of "hypothesis.internal.conjecture.data.AVAILABLE_PROVIDERS".</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changes.html#v6-124-9">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.124.8</h2> <p>Refactor some internals for better type hinting.</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changes.html#v6-124-8">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.124.7</h2> <p>Internal renamings.</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changes.html#v6-124-7">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.124.6</h2> <p>More work on internal type hints.</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changes.html#v6-124-6">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.124.5</h2> <p>Internal refactoring to make some stateful internals easier to access.</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changes.html#v6-124-5">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.124.4</h2> <p>Refactoring of our internal input generation. This shouldn't lead to any changes in the distribution of test inputs. If you notice any, please open an issue!</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changes.html#v6-124-4">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.124.3</h2> <p>Some Hypothesis internals now use the number of choices as a yardstick of input size, rather than the entropy consumed by those choices. We don't expect this to cause significant behavioral changes.</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changes.html#v6-124-3">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.124.2</h2> <p>Improves our internal caching logic for test cases.</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changes.html#v6-124-2">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.124.1</h2> <p>fuzz_one_input is now implemented using an alternative backend. This brings the interpretation of the fuzzer-provided bytestring closer to</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/a25f7d94c76e27c56e86c37c9491919358f774e3"><code>a25f7d9</code></a> Bump hypothesis-python version to 6.124.9 and update changelog</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/63bb80c8a83a3f3a96443ed803f7179cfc9a6160"><code>63bb80c</code></a> Merge pull request <a href="https://redirect.github.com/HypothesisWorks/hypothesis/issues/4254">#4254</a> from tybug/tcs-cleanup</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/869e3de68bd1eab9d8e84d997159a86238ac0adc"><code>869e3de</code></a> reorganize code for the typed choice sequence</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/9d7e1d37b387023daca9b3e533e684c4850f96fe"><code>9d7e1d3</code></a> Bump hypothesis-python version to 6.124.8 and update changelog</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/ee494ea8918e8f7b33285ba90106a81e2e92ac3b"><code>ee494ea</code></a> Merge pull request <a href="https://redirect.github.com/HypothesisWorks/hypothesis/issues/4258">#4258</a> from tybug/typing</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/7dea49ddcfcfba9968cc8b5b75fd69ef8eafc504"><code>7dea49d</code></a> add more explicit coverage test</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/e55b6ddf606b5ba56effd263d61d0437134b45a5"><code>e55b6dd</code></a> remove unused tyoevar</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/d332a78aa3445540ff5474eb396abb53ec8d7f87"><code>d332a78</code></a> type shrinker and predicate, add some engine typing</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/5b0ec313540853b36f0b8afd0078f3db89521a97"><code>5b0ec31</code></a> type p_continue</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/46e9235ff91f02d4eddd636f8f8b3d26917bf351"><code>46e9235</code></a> bump black and use it to format</li> <li>Additional commits viewable in <a href="https://github.com/HypothesisWorks/hypothesis/compare/hypothesis-python-6.123.2...hypothesis-python-6.124.9">compare view</a></li> </ul> </details> <br /> Updates `setuptools` from 75.6.0 to 75.8.0 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pypa/setuptools/blob/main/NEWS.rst">setuptools's changelog</a>.</em></p> <blockquote> <h1>v75.8.0</h1> <h2>Features</h2> <ul> <li>Implemented <code>Dynamic</code> field for core metadata (as introduced in PEP 643). The existing implementation is currently experimental and the exact approach may change in future releases. (<a href="https://redirect.github.com/pypa/setuptools/issues/4698">#4698</a>)</li> </ul> <h1>v75.7.0</h1> <h2>Features</h2> <ul> <li><code>pypa/distutils#310</code><a href="https://redirect.github.com/pypa/setuptools/issues/4478">#4478</a>)</li> <li>Synced with pypa/distutils@ff11eed0c including bugfix for duplicate CFLAGS and adaption to support Python 3.13 is_abs in the C compiler (<a href="https://redirect.github.com/pypa/setuptools/issues/4669">#4669</a>). (<a href="https://redirect.github.com/pypa/setuptools/issues/4790">#4790</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pypa/setuptools/commit/5c9d9809dec1b20e2a9da6b4a06355fd6f87a190"><code>5c9d980</code></a> Bump version: 75.7.0 → 75.8.0</li> <li><a href="https://github.com/pypa/setuptools/commit/72c422261b40f2b95a8be6605cc7dd93cec81794"><code>72c4222</code></a> Avoid using Any in function</li> <li><a href="https://github.com/pypa/setuptools/commit/1c61d4799438677c7cfaaccf281312bfb1aee9b3"><code>1c61d47</code></a> Add news fragments for PEP 643</li> <li><a href="https://github.com/pypa/setuptools/commit/f285d01e2661b01e4947a4dca7704790b65f2967"><code>f285d01</code></a> Implement PEP 643 (<code>Dynamic</code> field for core metadata) (<a href="https://redirect.github.com/pypa/setuptools/issues/4698">#4698</a>)</li> <li><a href="https://github.com/pypa/setuptools/commit/a50f6e2e1e8b4610adde709079bec17ad0944197"><code>a50f6e2</code></a> Fix _static.Dict.<strong>ior</strong> for Python 3.8</li> <li><a href="https://github.com/pypa/setuptools/commit/b055895fa337a6e03a29c2ea6493b6b778d2ba46"><code>b055895</code></a> Add extra tests for static/dynamic metadata</li> <li><a href="https://github.com/pypa/setuptools/commit/770b4fc8f6248d862629028f5ee4218975f9516b"><code>770b4fc</code></a> Remove test workaround for unmarked static values from pyproject.toml</li> <li><a href="https://github.com/pypa/setuptools/commit/8b22d73be5e23a9611398d81aedc5164115940ce"><code>8b22d73</code></a> Mark values from pyproject.toml as static</li> <li><a href="https://github.com/pypa/setuptools/commit/f699fd842e3ddedbe937ee33b0bd6ad28e735664"><code>f699fd8</code></a> Fix spelling error</li> <li><a href="https://github.com/pypa/setuptools/commit/8b4c8a3c95f43d771d0fa6e4ebceea3436bc70f7"><code>8b4c8a3</code></a> Add tests for static 'attr' directive</li> <li>Additional commits viewable in <a href="https://github.com/pypa/setuptools/compare/v75.6.0...v75.8.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>
Bumps the required group with 5 updates: | Package | From | To | | --- | --- | --- | | [pydoclint](https://github.com/jsh9/pydoclint) | `0.5.14` | `0.6.0` | | [mkdocs-material](https://github.com/squidfunk/mkdocs-material) | `9.5.49` | `9.6.1` | | [pylint](https://github.com/pylint-dev/pylint) | `3.3.3` | `3.3.4` | | [pytest-asyncio](https://github.com/pytest-dev/pytest-asyncio) | `0.25.0` | `0.25.3` | | [setuptools](https://github.com/pypa/setuptools) | `75.6.0` | `75.8.0` | Updates `pydoclint` from 0.5.14 to 0.6.0 <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.6.0</h2> <h2>What's Changed</h2> <ul> <li>Add DOC003 to check docstring style mismatch by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/207">jsh9/pydoclint#207</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0">https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0</a></p> <h2>0.5.19</h2> <h2>What's Changed</h2> <ul> <li>Fix false positive DOC405 & DOC201 for bare returns by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/205">jsh9/pydoclint#205</a></li> <li>Add new config option for documenting star arguments by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/206">jsh9/pydoclint#206</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19">https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19</a></p> <h2>0.5.18</h2> <h2>What's Changed</h2> <ul> <li>Fix parsing and comparison of chained custom exceptions by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/203">jsh9/pydoclint#203</a></li> <li>Fix wording in DOC503 violation message by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/204">jsh9/pydoclint#204</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18">https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18</a></p> <h2>0.5.17</h2> <h2>What's Changed</h2> <ul> <li>Add an option to auto regenerate baseline by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/202">jsh9/pydoclint#202</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17">https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17</a></p> <h2>0.5.16</h2> <h2>What's Changed</h2> <ul> <li>👌 Add pre-commit-hook to run pydoclint via flake8 by <a href="https://github.com/s-weigand"><code>@s-weigand</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/200">jsh9/pydoclint#200</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16">https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16</a></p> <h2>0.5.15</h2> <h2>What's Changed</h2> <ul> <li>Throw DOC001 when docstring sections can't be parsed (numpy style) by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/199">jsh9/pydoclint#199</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.14...0.5.15">https://github.com/jsh9/pydoclint/compare/0.5.14...0.5.15</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.6.0] - 2025-01-13</h2> <ul> <li>Added <ul> <li>A new violation code, <code>DOC003</code>, to detect docstring style mismatch (when docstrings are written in the style different from specified)</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0">https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0</a></li> </ul> </li> </ul> <h2>[0.5.19] - 2025-01-12</h2> <ul> <li>Fixed <ul> <li>False positive DOC405 and DOC201 when we have bare return statements together with <code>yield</code> statements</li> </ul> </li> <li>Added <ul> <li>A new config option <code>--should-document-star-arguments</code> (if <code>False</code>, star arguments such as <code>*args</code> and <code>**kwargs</code> should not be documented in the docstring)</li> <li>A pre-commit step to check that "Full diff" is always added in CHANGELOG.md</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19">https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19</a></li> </ul> </li> </ul> <h2>[0.5.18] - 2025-01-12</h2> <ul> <li>Fixed <ul> <li>An issue where custom exceptions such as <code>a.b.c.MyException.from_str</code> cannot be properly parsed and compared</li> <li>A minor wording issue in DOC503 violation message</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18">https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18</a></li> </ul> </li> </ul> <h2>[0.5.17] - 2025-01-12</h2> <ul> <li>Added <ul> <li>A new config option <code>--auto-regenerate-baseline</code> to automatically regenerate the baseline file for every successful <em>pydoclint</em> run</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17">https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17</a></li> </ul> </li> </ul> <h2>[0.5.16] - 2025-01-11</h2> <ul> <li> <p>Added</p> <ul> <li>A pre-commit hook for using <em>pydoclint</em> as a flake8 plugin</li> </ul> </li> <li> <p>Full diff</p> <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16">https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16</a></li> </ul> </li> </ul> <h2>[0.5.15] - 2025-01-10</h2> <ul> <li>Changed</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/jsh9/pydoclint/commit/2e8af22f66de795a7bd0ac661353596e8847bbad"><code>2e8af22</code></a> Add DOC003 to check docstring style mismatch (<a href="https://redirect.github.com/jsh9/pydoclint/issues/207">#207</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/94039b23bedf98b6a6469312d04eecee9797a90f"><code>94039b2</code></a> Add new config option for documenting star arguments (<a href="https://redirect.github.com/jsh9/pydoclint/issues/206">#206</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/22b9b37b6ccda9c19be9757ee2c7e0a86a836b96"><code>22b9b37</code></a> Fix false positive DOC405 & DOC201 for bare returns (<a href="https://redirect.github.com/jsh9/pydoclint/issues/205">#205</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/1f2ea57d39bce59362382a739572504b6ee5dfb0"><code>1f2ea57</code></a> Fix wording in DOC503 violation message (<a href="https://redirect.github.com/jsh9/pydoclint/issues/204">#204</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/91263b841745adef4a052354bf4301107fc803ae"><code>91263b8</code></a> Fix parsing and comparison of chained custom exceptions (<a href="https://redirect.github.com/jsh9/pydoclint/issues/203">#203</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/64ef92306050cd21e51a99b1dccd87a41274f6e5"><code>64ef923</code></a> Add tips, tricks, and pitfalls to README</li> <li><a href="https://github.com/jsh9/pydoclint/commit/fe188f425eae9e77c74f169ff2d16e740e370d0b"><code>fe188f4</code></a> Add an option to auto regenerate baseline (<a href="https://redirect.github.com/jsh9/pydoclint/issues/202">#202</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/7282eb691ca4c1e4742c62fe7c3578bb9348f0fb"><code>7282eb6</code></a> 👌 Add pre-commit-hook to run pydoclint via flake8 (<a href="https://redirect.github.com/jsh9/pydoclint/issues/200">#200</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/4021d8d9b3216e2789bd5f28fa7c761228b9b3d4"><code>4021d8d</code></a> Throw DOC001 when docstring sections can't be parsed (numpy style) (<a href="https://redirect.github.com/jsh9/pydoclint/issues/199">#199</a>)</li> <li>See full diff in <a href="https://github.com/jsh9/pydoclint/compare/0.5.14...0.6.0">compare view</a></li> </ul> </details> <br /> Updates `mkdocs-material` from 9.5.49 to 9.6.1 <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.6.1</h2> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7943">#7943</a>: Tags plugin crashing due to merge error</li> </ul> <h2>mkdocs-material-9.6.0</h2> <ul> <li>Added meta plugin</li> <li>Rewrite of the tags plugin</li> <li>Added support for allow lists in tags plugin</li> <li>Added support for and custom sorting in tags plugin</li> <li>Added support for related links in blog plugin</li> <li>Added support for custom index pages in blog plugin</li> <li>Added support for navigation subtitles</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7924">#7924</a>: Anchors might require two clicks when using instant navigation</li> </ul> <h2>mkdocs-material-9.5.50</h2> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7913">#7913</a>: Social plugin renders attribute lists in page title</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.6.1 (2025-01-31)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7943">#7943</a>: Tags plugin crashing due to merge error</li> </ul> <p>mkdocs-material-9.6.0 (2025-01-31)</p> <ul> <li>Added meta plugin</li> <li>Rewrite of the tags plugin</li> <li>Added support for allow lists in tags plugin</li> <li>Added support for and custom sorting in tags plugin</li> <li>Added support for related links in blog plugin</li> <li>Added support for custom index pages in blog plugin</li> <li>Added support for navigation subtitles</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7924">#7924</a>: Anchors might require two clicks when using instant navigation</li> </ul> <p>mkdocs-material-9.5.50 (2025-01-18)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7913">#7913</a>: Social plugin renders attribute lists in page title</li> </ul> <p>mkdocs-material-9.5.49+insiders-4.53.15 (2025-01-15)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7896">#7896</a>: Scoped tags listings not rendering in subsections</li> </ul> <p>mkdocs-material-9.5.49 (2024-12-16)</p> <ul> <li>Adjusted title color in dark mode for all supported Mermaid.js diagrams</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7803">#7803</a>: Privacy plugin crashes on generated files</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7781">#7781</a>: Mermaid.js flow chart title not visible in dark mode</li> </ul> <p>mkdocs-material-9.5.48 (2024-12-08)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7774">#7774</a>: Disabling social cards doesn't work</li> </ul> <p>mkdocs-material-9.5.47 (2024-12-01)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7750">#7750</a>: Numeric tags break search</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7748">#7748</a>: Blog plugin breaks when using future drafts (9.5.45 regression)</li> </ul> <p>mkdocs-material-9.5.46 (2024-11-25)</p> <ul> <li>Added support for removing preload hints in privacy plugin</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7734">#7734</a>: Code blocks in h5 headlines are uppercased</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7725">#7725</a>: Blog plugin crashing on missing timezone (9.5.45 regression)</li> </ul> <p>mkdocs-material-9.5.45 (2024-11-20)</p> <ul> <li>Reduced size of Docker image through multi-stage build</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7708">#7708</a>: Blog plugin crashing on YAML dates with timezones</li> </ul> <p>mkdocs-material-9.5.44 (2024-11-05)</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/454af62a45622e3ebf14d25b3ab1ea69c1130e8f"><code>454af62</code></a> Prepare 9.6.1 release</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/2d147c72c02b842937320c58b98e20179742a7a6"><code>2d147c7</code></a> Fixed crashing tags plugin</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/34dc4feba7b45c892c3d6ec2c3d8413a5ebdac5f"><code>34dc4fe</code></a> Updated Premium sponsors</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/8edc6f8daaf0e1e7ebb94be99d3f10e46cd8bfbd"><code>8edc6f8</code></a> Updated Premium sponsors</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/0be1d6b3c8b9f3aff1f91be8f7050dcc96a40321"><code>0be1d6b</code></a> Documentation</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/34e301d311d2e753022e1ae23fd851cbfd73be6a"><code>34e301d</code></a> Fixed build badge</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/4ca5214ebf1665fff5de7be140ab6188eb0ec5a5"><code>4ca5214</code></a> Corrected position of related links in blog post</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/627737ae38905578d761fb7c916b5fdcf854973e"><code>627737a</code></a> Merge pull request <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7942">#7942</a> from squidfunk/merge/chipotle</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/49daf573f0cf01cd66a87f6bba3815b775280287"><code>49daf57</code></a> Updated dependencies</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/1416697c6b27725859d522c8763914c2b1fb1615"><code>1416697</code></a> Prepare 9.6.0 release</li> <li>Additional commits viewable in <a href="https://github.com/squidfunk/mkdocs-material/compare/9.5.49...9.6.1">compare view</a></li> </ul> </details> <br /> Updates `pylint` from 3.3.3 to 3.3.4 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pylint-dev/pylint/commit/c2b01c3d0b6410d4c93eb1f32fb28f2116b1e68f"><code>c2b01c3</code></a> Bump pylint to 3.3.4, update changelog</li> <li><a href="https://github.com/pylint-dev/pylint/commit/023cd4355c48e3e0c7702e65fde2d99794b25554"><code>023cd43</code></a> [isort] Permit to use isort 6 (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10204">#10204</a>)</li> <li><a href="https://github.com/pylint-dev/pylint/commit/050acfe49c525cd5e58f7c289d35aee1af4051e5"><code>050acfe</code></a> Calculate linter.config.jobs in cgroupsv2 environments (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10089">#10089</a>) (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10169">#10169</a>)</li> <li><a href="https://github.com/pylint-dev/pylint/commit/d6992b8cf993af7a94a9a3044185fb3ea838ac49"><code>d6992b8</code></a> fix "skipped files" count calculation (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10141">#10141</a>)</li> <li>See full diff in <a href="https://github.com/pylint-dev/pylint/compare/v3.3.3...v3.3.4">compare view</a></li> </ul> </details> <br /> Updates `pytest-asyncio` from 0.25.0 to 0.25.3 <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.25.3</h2> <ul> <li>Avoid errors in cleanup of async generators when event loop is already closed <a href="https://redirect.github.com/pytest-dev/pytest-asyncio/issues/1040">#1040</a></li> </ul> <h2>pytest-asyncio 0.25.2</h2> <ul> <li>Call <code>loop.shutdown_asyncgens()</code> before closing the event loop to ensure async generators are closed in the same manner as <code>asyncio.run</code> does <a href="https://redirect.github.com/pytest-dev/pytest-asyncio/pull/1034">#1034</a></li> </ul> <h2>pytest-asyncio 0.25.1</h2> <ul> <li>Fixes an issue that caused a broken event loop when a function-scoped test was executed in between two tests with wider loop scope <a href="https://redirect.github.com/pytest-dev/pytest-asyncio/issues/950">#950</a></li> <li>Improves test collection speed in auto mode <a href="https://redirect.github.com/pytest-dev/pytest-asyncio/pull/1020">#1020</a></li> <li>Corrects the warning that is emitted upon redefining the event_loop fixture</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/7c501923b00b4aeeb68d4b3b11065f0c3b5cba2c"><code>7c50192</code></a> fix: Avoid errors in cleanup of async generators when event loop is already c...</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/2188cdbbf7b47e653957d3f39aeb7d4d0de80bf4"><code>2188cdb</code></a> build: Prepare release of v0.25.2.</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/c3ad6340b8ad251f3c03d6bbe399f08434059bda"><code>c3ad634</code></a> fix: Shutdown generators before closing event loops.</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/e8ffb10528aaf578dc9ccc7ddbb1fadab56be8ac"><code>e8ffb10</code></a> [pre-commit.ci] pre-commit autoupdate</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/aae43d4f766dfd8f9a643faad41be411888a5d16"><code>aae43d4</code></a> Build(deps): Bump hypothesis in /dependencies/default</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/941e8b5104d86bb1b06b15fd3395f23120203c09"><code>941e8b5</code></a> Build(deps): Bump pygments from 2.18.0 to 2.19.1 in /dependencies/docs</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/623ab74b80b6f748e88254714f9b21a16eb7911e"><code>623ab74</code></a> docs: Prepare release of v0.25.1.</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/c236550e739b55ee62f3e6ec7f71b4f4231236d1"><code>c236550</code></a> docs: Fix broken link to the pytest.mark.asyncio reference.</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/41c645b3b79709c2812a3aa3b17943074bc33f48"><code>41c645b</code></a> fix: Correct warning message when redefining the event_loop fixture.</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/2fd10f824302d45da752341c60c8ddec48297a1b"><code>2fd10f8</code></a> docs: Clarify deprecation of event_loop fixture.</li> <li>Additional commits viewable in <a href="https://github.com/pytest-dev/pytest-asyncio/compare/v0.25.0...v0.25.3">compare view</a></li> </ul> </details> <br /> Updates `setuptools` from 75.6.0 to 75.8.0 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pypa/setuptools/blob/main/NEWS.rst">setuptools's changelog</a>.</em></p> <blockquote> <h1>v75.8.0</h1> <h2>Features</h2> <ul> <li>Implemented <code>Dynamic</code> field for core metadata (as introduced in PEP 643). The existing implementation is currently experimental and the exact approach may change in future releases. (<a href="https://redirect.github.com/pypa/setuptools/issues/4698">#4698</a>)</li> </ul> <h1>v75.7.0</h1> <h2>Features</h2> <ul> <li><code>pypa/distutils#310</code><a href="https://redirect.github.com/pypa/setuptools/issues/4478">#4478</a>)</li> <li>Synced with pypa/distutils@ff11eed0c including bugfix for duplicate CFLAGS and adaption to support Python 3.13 is_abs in the C compiler (<a href="https://redirect.github.com/pypa/setuptools/issues/4669">#4669</a>). (<a href="https://redirect.github.com/pypa/setuptools/issues/4790">#4790</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pypa/setuptools/commit/5c9d9809dec1b20e2a9da6b4a06355fd6f87a190"><code>5c9d980</code></a> Bump version: 75.7.0 → 75.8.0</li> <li><a href="https://github.com/pypa/setuptools/commit/72c422261b40f2b95a8be6605cc7dd93cec81794"><code>72c4222</code></a> Avoid using Any in function</li> <li><a href="https://github.com/pypa/setuptools/commit/1c61d4799438677c7cfaaccf281312bfb1aee9b3"><code>1c61d47</code></a> Add news fragments for PEP 643</li> <li><a href="https://github.com/pypa/setuptools/commit/f285d01e2661b01e4947a4dca7704790b65f2967"><code>f285d01</code></a> Implement PEP 643 (<code>Dynamic</code> field for core metadata) (<a href="https://redirect.github.com/pypa/setuptools/issues/4698">#4698</a>)</li> <li><a href="https://github.com/pypa/setuptools/commit/a50f6e2e1e8b4610adde709079bec17ad0944197"><code>a50f6e2</code></a> Fix _static.Dict.<strong>ior</strong> for Python 3.8</li> <li><a href="https://github.com/pypa/setuptools/commit/b055895fa337a6e03a29c2ea6493b6b778d2ba46"><code>b055895</code></a> Add extra tests for static/dynamic metadata</li> <li><a href="https://github.com/pypa/setuptools/commit/770b4fc8f6248d862629028f5ee4218975f9516b"><code>770b4fc</code></a> Remove test workaround for unmarked static values from pyproject.toml</li> <li><a href="https://github.com/pypa/setuptools/commit/8b22d73be5e23a9611398d81aedc5164115940ce"><code>8b22d73</code></a> Mark values from pyproject.toml as static</li> <li><a href="https://github.com/pypa/setuptools/commit/f699fd842e3ddedbe937ee33b0bd6ad28e735664"><code>f699fd8</code></a> Fix spelling error</li> <li><a href="https://github.com/pypa/setuptools/commit/8b4c8a3c95f43d771d0fa6e4ebceea3436bc70f7"><code>8b4c8a3</code></a> Add tests for static 'attr' directive</li> <li>Additional commits viewable in <a href="https://github.com/pypa/setuptools/compare/v75.6.0...v75.8.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>
Bumps the required group with 5 updates: | Package | From | To | | --- | --- | --- | | [pydoclint](https://github.com/jsh9/pydoclint) | `0.5.14` | `0.6.0` | | [mkdocs-material](https://github.com/squidfunk/mkdocs-material) | `9.5.49` | `9.6.1` | | [pylint](https://github.com/pylint-dev/pylint) | `3.3.3` | `3.3.4` | | [pytest-asyncio](https://github.com/pytest-dev/pytest-asyncio) | `0.25.1` | `0.25.3` | | [setuptools](https://github.com/pypa/setuptools) | `75.6.0` | `75.8.0` | Updates `pydoclint` from 0.5.14 to 0.6.0 <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.6.0</h2> <h2>What's Changed</h2> <ul> <li>Add DOC003 to check docstring style mismatch by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/207">jsh9/pydoclint#207</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0">https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0</a></p> <h2>0.5.19</h2> <h2>What's Changed</h2> <ul> <li>Fix false positive DOC405 & DOC201 for bare returns by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/205">jsh9/pydoclint#205</a></li> <li>Add new config option for documenting star arguments by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/206">jsh9/pydoclint#206</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19">https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19</a></p> <h2>0.5.18</h2> <h2>What's Changed</h2> <ul> <li>Fix parsing and comparison of chained custom exceptions by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/203">jsh9/pydoclint#203</a></li> <li>Fix wording in DOC503 violation message by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/204">jsh9/pydoclint#204</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18">https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18</a></p> <h2>0.5.17</h2> <h2>What's Changed</h2> <ul> <li>Add an option to auto regenerate baseline by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/202">jsh9/pydoclint#202</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17">https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17</a></p> <h2>0.5.16</h2> <h2>What's Changed</h2> <ul> <li>👌 Add pre-commit-hook to run pydoclint via flake8 by <a href="https://github.com/s-weigand"><code>@s-weigand</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/200">jsh9/pydoclint#200</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16">https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16</a></p> <h2>0.5.15</h2> <h2>What's Changed</h2> <ul> <li>Throw DOC001 when docstring sections can't be parsed (numpy style) by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/199">jsh9/pydoclint#199</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.14...0.5.15">https://github.com/jsh9/pydoclint/compare/0.5.14...0.5.15</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.6.0] - 2025-01-13</h2> <ul> <li>Added <ul> <li>A new violation code, <code>DOC003</code>, to detect docstring style mismatch (when docstrings are written in the style different from specified)</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0">https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0</a></li> </ul> </li> </ul> <h2>[0.5.19] - 2025-01-12</h2> <ul> <li>Fixed <ul> <li>False positive DOC405 and DOC201 when we have bare return statements together with <code>yield</code> statements</li> </ul> </li> <li>Added <ul> <li>A new config option <code>--should-document-star-arguments</code> (if <code>False</code>, star arguments such as <code>*args</code> and <code>**kwargs</code> should not be documented in the docstring)</li> <li>A pre-commit step to check that "Full diff" is always added in CHANGELOG.md</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19">https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19</a></li> </ul> </li> </ul> <h2>[0.5.18] - 2025-01-12</h2> <ul> <li>Fixed <ul> <li>An issue where custom exceptions such as <code>a.b.c.MyException.from_str</code> cannot be properly parsed and compared</li> <li>A minor wording issue in DOC503 violation message</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18">https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18</a></li> </ul> </li> </ul> <h2>[0.5.17] - 2025-01-12</h2> <ul> <li>Added <ul> <li>A new config option <code>--auto-regenerate-baseline</code> to automatically regenerate the baseline file for every successful <em>pydoclint</em> run</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17">https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17</a></li> </ul> </li> </ul> <h2>[0.5.16] - 2025-01-11</h2> <ul> <li> <p>Added</p> <ul> <li>A pre-commit hook for using <em>pydoclint</em> as a flake8 plugin</li> </ul> </li> <li> <p>Full diff</p> <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16">https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16</a></li> </ul> </li> </ul> <h2>[0.5.15] - 2025-01-10</h2> <ul> <li>Changed</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/jsh9/pydoclint/commit/2e8af22f66de795a7bd0ac661353596e8847bbad"><code>2e8af22</code></a> Add DOC003 to check docstring style mismatch (<a href="https://redirect.github.com/jsh9/pydoclint/issues/207">#207</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/94039b23bedf98b6a6469312d04eecee9797a90f"><code>94039b2</code></a> Add new config option for documenting star arguments (<a href="https://redirect.github.com/jsh9/pydoclint/issues/206">#206</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/22b9b37b6ccda9c19be9757ee2c7e0a86a836b96"><code>22b9b37</code></a> Fix false positive DOC405 & DOC201 for bare returns (<a href="https://redirect.github.com/jsh9/pydoclint/issues/205">#205</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/1f2ea57d39bce59362382a739572504b6ee5dfb0"><code>1f2ea57</code></a> Fix wording in DOC503 violation message (<a href="https://redirect.github.com/jsh9/pydoclint/issues/204">#204</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/91263b841745adef4a052354bf4301107fc803ae"><code>91263b8</code></a> Fix parsing and comparison of chained custom exceptions (<a href="https://redirect.github.com/jsh9/pydoclint/issues/203">#203</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/64ef92306050cd21e51a99b1dccd87a41274f6e5"><code>64ef923</code></a> Add tips, tricks, and pitfalls to README</li> <li><a href="https://github.com/jsh9/pydoclint/commit/fe188f425eae9e77c74f169ff2d16e740e370d0b"><code>fe188f4</code></a> Add an option to auto regenerate baseline (<a href="https://redirect.github.com/jsh9/pydoclint/issues/202">#202</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/7282eb691ca4c1e4742c62fe7c3578bb9348f0fb"><code>7282eb6</code></a> 👌 Add pre-commit-hook to run pydoclint via flake8 (<a href="https://redirect.github.com/jsh9/pydoclint/issues/200">#200</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/4021d8d9b3216e2789bd5f28fa7c761228b9b3d4"><code>4021d8d</code></a> Throw DOC001 when docstring sections can't be parsed (numpy style) (<a href="https://redirect.github.com/jsh9/pydoclint/issues/199">#199</a>)</li> <li>See full diff in <a href="https://github.com/jsh9/pydoclint/compare/0.5.14...0.6.0">compare view</a></li> </ul> </details> <br /> Updates `mkdocs-material` from 9.5.49 to 9.6.1 <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.6.1</h2> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7943">#7943</a>: Tags plugin crashing due to merge error</li> </ul> <h2>mkdocs-material-9.6.0</h2> <ul> <li>Added meta plugin</li> <li>Rewrite of the tags plugin</li> <li>Added support for allow lists in tags plugin</li> <li>Added support for and custom sorting in tags plugin</li> <li>Added support for related links in blog plugin</li> <li>Added support for custom index pages in blog plugin</li> <li>Added support for navigation subtitles</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7924">#7924</a>: Anchors might require two clicks when using instant navigation</li> </ul> <h2>mkdocs-material-9.5.50</h2> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7913">#7913</a>: Social plugin renders attribute lists in page title</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.6.1 (2025-01-31)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7943">#7943</a>: Tags plugin crashing due to merge error</li> </ul> <p>mkdocs-material-9.6.0 (2025-01-31)</p> <ul> <li>Added meta plugin</li> <li>Rewrite of the tags plugin</li> <li>Added support for allow lists in tags plugin</li> <li>Added support for and custom sorting in tags plugin</li> <li>Added support for related links in blog plugin</li> <li>Added support for custom index pages in blog plugin</li> <li>Added support for navigation subtitles</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7924">#7924</a>: Anchors might require two clicks when using instant navigation</li> </ul> <p>mkdocs-material-9.5.50 (2025-01-18)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7913">#7913</a>: Social plugin renders attribute lists in page title</li> </ul> <p>mkdocs-material-9.5.49+insiders-4.53.15 (2025-01-15)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7896">#7896</a>: Scoped tags listings not rendering in subsections</li> </ul> <p>mkdocs-material-9.5.49 (2024-12-16)</p> <ul> <li>Adjusted title color in dark mode for all supported Mermaid.js diagrams</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7803">#7803</a>: Privacy plugin crashes on generated files</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7781">#7781</a>: Mermaid.js flow chart title not visible in dark mode</li> </ul> <p>mkdocs-material-9.5.48 (2024-12-08)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7774">#7774</a>: Disabling social cards doesn't work</li> </ul> <p>mkdocs-material-9.5.47 (2024-12-01)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7750">#7750</a>: Numeric tags break search</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7748">#7748</a>: Blog plugin breaks when using future drafts (9.5.45 regression)</li> </ul> <p>mkdocs-material-9.5.46 (2024-11-25)</p> <ul> <li>Added support for removing preload hints in privacy plugin</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7734">#7734</a>: Code blocks in h5 headlines are uppercased</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7725">#7725</a>: Blog plugin crashing on missing timezone (9.5.45 regression)</li> </ul> <p>mkdocs-material-9.5.45 (2024-11-20)</p> <ul> <li>Reduced size of Docker image through multi-stage build</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7708">#7708</a>: Blog plugin crashing on YAML dates with timezones</li> </ul> <p>mkdocs-material-9.5.44 (2024-11-05)</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/454af62a45622e3ebf14d25b3ab1ea69c1130e8f"><code>454af62</code></a> Prepare 9.6.1 release</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/2d147c72c02b842937320c58b98e20179742a7a6"><code>2d147c7</code></a> Fixed crashing tags plugin</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/34dc4feba7b45c892c3d6ec2c3d8413a5ebdac5f"><code>34dc4fe</code></a> Updated Premium sponsors</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/8edc6f8daaf0e1e7ebb94be99d3f10e46cd8bfbd"><code>8edc6f8</code></a> Updated Premium sponsors</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/0be1d6b3c8b9f3aff1f91be8f7050dcc96a40321"><code>0be1d6b</code></a> Documentation</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/34e301d311d2e753022e1ae23fd851cbfd73be6a"><code>34e301d</code></a> Fixed build badge</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/4ca5214ebf1665fff5de7be140ab6188eb0ec5a5"><code>4ca5214</code></a> Corrected position of related links in blog post</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/627737ae38905578d761fb7c916b5fdcf854973e"><code>627737a</code></a> Merge pull request <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7942">#7942</a> from squidfunk/merge/chipotle</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/49daf573f0cf01cd66a87f6bba3815b775280287"><code>49daf57</code></a> Updated dependencies</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/1416697c6b27725859d522c8763914c2b1fb1615"><code>1416697</code></a> Prepare 9.6.0 release</li> <li>Additional commits viewable in <a href="https://github.com/squidfunk/mkdocs-material/compare/9.5.49...9.6.1">compare view</a></li> </ul> </details> <br /> Updates `pylint` from 3.3.3 to 3.3.4 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pylint-dev/pylint/commit/c2b01c3d0b6410d4c93eb1f32fb28f2116b1e68f"><code>c2b01c3</code></a> Bump pylint to 3.3.4, update changelog</li> <li><a href="https://github.com/pylint-dev/pylint/commit/023cd4355c48e3e0c7702e65fde2d99794b25554"><code>023cd43</code></a> [isort] Permit to use isort 6 (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10204">#10204</a>)</li> <li><a href="https://github.com/pylint-dev/pylint/commit/050acfe49c525cd5e58f7c289d35aee1af4051e5"><code>050acfe</code></a> Calculate linter.config.jobs in cgroupsv2 environments (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10089">#10089</a>) (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10169">#10169</a>)</li> <li><a href="https://github.com/pylint-dev/pylint/commit/d6992b8cf993af7a94a9a3044185fb3ea838ac49"><code>d6992b8</code></a> fix "skipped files" count calculation (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10141">#10141</a>)</li> <li>See full diff in <a href="https://github.com/pylint-dev/pylint/compare/v3.3.3...v3.3.4">compare view</a></li> </ul> </details> <br /> Updates `pytest-asyncio` from 0.25.1 to 0.25.3 <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.25.3</h2> <ul> <li>Avoid errors in cleanup of async generators when event loop is already closed <a href="https://redirect.github.com/pytest-dev/pytest-asyncio/issues/1040">#1040</a></li> </ul> <h2>pytest-asyncio 0.25.2</h2> <ul> <li>Call <code>loop.shutdown_asyncgens()</code> before closing the event loop to ensure async generators are closed in the same manner as <code>asyncio.run</code> does <a href="https://redirect.github.com/pytest-dev/pytest-asyncio/pull/1034">#1034</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/7c501923b00b4aeeb68d4b3b11065f0c3b5cba2c"><code>7c50192</code></a> fix: Avoid errors in cleanup of async generators when event loop is already c...</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/2188cdbbf7b47e653957d3f39aeb7d4d0de80bf4"><code>2188cdb</code></a> build: Prepare release of v0.25.2.</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/c3ad6340b8ad251f3c03d6bbe399f08434059bda"><code>c3ad634</code></a> fix: Shutdown generators before closing event loops.</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/e8ffb10528aaf578dc9ccc7ddbb1fadab56be8ac"><code>e8ffb10</code></a> [pre-commit.ci] pre-commit autoupdate</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/aae43d4f766dfd8f9a643faad41be411888a5d16"><code>aae43d4</code></a> Build(deps): Bump hypothesis in /dependencies/default</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/941e8b5104d86bb1b06b15fd3395f23120203c09"><code>941e8b5</code></a> Build(deps): Bump pygments from 2.18.0 to 2.19.1 in /dependencies/docs</li> <li>See full diff in <a href="https://github.com/pytest-dev/pytest-asyncio/compare/v0.25.1...v0.25.3">compare view</a></li> </ul> </details> <br /> Updates `setuptools` from 75.6.0 to 75.8.0 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pypa/setuptools/blob/main/NEWS.rst">setuptools's changelog</a>.</em></p> <blockquote> <h1>v75.8.0</h1> <h2>Features</h2> <ul> <li>Implemented <code>Dynamic</code> field for core metadata (as introduced in PEP 643). The existing implementation is currently experimental and the exact approach may change in future releases. (<a href="https://redirect.github.com/pypa/setuptools/issues/4698">#4698</a>)</li> </ul> <h1>v75.7.0</h1> <h2>Features</h2> <ul> <li><code>pypa/distutils#310</code><a href="https://redirect.github.com/pypa/setuptools/issues/4478">#4478</a>)</li> <li>Synced with pypa/distutils@ff11eed0c including bugfix for duplicate CFLAGS and adaption to support Python 3.13 is_abs in the C compiler (<a href="https://redirect.github.com/pypa/setuptools/issues/4669">#4669</a>). (<a href="https://redirect.github.com/pypa/setuptools/issues/4790">#4790</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pypa/setuptools/commit/5c9d9809dec1b20e2a9da6b4a06355fd6f87a190"><code>5c9d980</code></a> Bump version: 75.7.0 → 75.8.0</li> <li><a href="https://github.com/pypa/setuptools/commit/72c422261b40f2b95a8be6605cc7dd93cec81794"><code>72c4222</code></a> Avoid using Any in function</li> <li><a href="https://github.com/pypa/setuptools/commit/1c61d4799438677c7cfaaccf281312bfb1aee9b3"><code>1c61d47</code></a> Add news fragments for PEP 643</li> <li><a href="https://github.com/pypa/setuptools/commit/f285d01e2661b01e4947a4dca7704790b65f2967"><code>f285d01</code></a> Implement PEP 643 (<code>Dynamic</code> field for core metadata) (<a href="https://redirect.github.com/pypa/setuptools/issues/4698">#4698</a>)</li> <li><a href="https://github.com/pypa/setuptools/commit/a50f6e2e1e8b4610adde709079bec17ad0944197"><code>a50f6e2</code></a> Fix _static.Dict.<strong>ior</strong> for Python 3.8</li> <li><a href="https://github.com/pypa/setuptools/commit/b055895fa337a6e03a29c2ea6493b6b778d2ba46"><code>b055895</code></a> Add extra tests for static/dynamic metadata</li> <li><a href="https://github.com/pypa/setuptools/commit/770b4fc8f6248d862629028f5ee4218975f9516b"><code>770b4fc</code></a> Remove test workaround for unmarked static values from pyproject.toml</li> <li><a href="https://github.com/pypa/setuptools/commit/8b22d73be5e23a9611398d81aedc5164115940ce"><code>8b22d73</code></a> Mark values from pyproject.toml as static</li> <li><a href="https://github.com/pypa/setuptools/commit/f699fd842e3ddedbe937ee33b0bd6ad28e735664"><code>f699fd8</code></a> Fix spelling error</li> <li><a href="https://github.com/pypa/setuptools/commit/8b4c8a3c95f43d771d0fa6e4ebceea3436bc70f7"><code>8b4c8a3</code></a> Add tests for static 'attr' directive</li> <li>Additional commits viewable in <a href="https://github.com/pypa/setuptools/compare/v75.6.0...v75.8.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>
Bumps the required group with 6 updates: | Package | From | To | | --- | --- | --- | | [pydoclint](https://github.com/jsh9/pydoclint) | `0.5.14` | `0.6.0` | | [mkdocs-material](https://github.com/squidfunk/mkdocs-material) | `9.5.49` | `9.6.1` | | [pylint](https://github.com/pylint-dev/pylint) | `3.3.3` | `3.3.4` | | [pytest-asyncio](https://github.com/pytest-dev/pytest-asyncio) | `0.25.1` | `0.25.3` | | [hypothesis](https://github.com/HypothesisWorks/hypothesis) | `6.123.2` | `6.124.7` | | [setuptools](https://github.com/pypa/setuptools) | `75.6.0` | `75.8.0` | Updates `pydoclint` from 0.5.14 to 0.6.0 <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.6.0</h2> <h2>What's Changed</h2> <ul> <li>Add DOC003 to check docstring style mismatch by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/207">jsh9/pydoclint#207</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0">https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0</a></p> <h2>0.5.19</h2> <h2>What's Changed</h2> <ul> <li>Fix false positive DOC405 & DOC201 for bare returns by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/205">jsh9/pydoclint#205</a></li> <li>Add new config option for documenting star arguments by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/206">jsh9/pydoclint#206</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19">https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19</a></p> <h2>0.5.18</h2> <h2>What's Changed</h2> <ul> <li>Fix parsing and comparison of chained custom exceptions by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/203">jsh9/pydoclint#203</a></li> <li>Fix wording in DOC503 violation message by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/204">jsh9/pydoclint#204</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18">https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18</a></p> <h2>0.5.17</h2> <h2>What's Changed</h2> <ul> <li>Add an option to auto regenerate baseline by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/202">jsh9/pydoclint#202</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17">https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17</a></p> <h2>0.5.16</h2> <h2>What's Changed</h2> <ul> <li>👌 Add pre-commit-hook to run pydoclint via flake8 by <a href="https://github.com/s-weigand"><code>@s-weigand</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/200">jsh9/pydoclint#200</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16">https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16</a></p> <h2>0.5.15</h2> <h2>What's Changed</h2> <ul> <li>Throw DOC001 when docstring sections can't be parsed (numpy style) by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/199">jsh9/pydoclint#199</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.14...0.5.15">https://github.com/jsh9/pydoclint/compare/0.5.14...0.5.15</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.6.0] - 2025-01-13</h2> <ul> <li>Added <ul> <li>A new violation code, <code>DOC003</code>, to detect docstring style mismatch (when docstrings are written in the style different from specified)</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0">https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0</a></li> </ul> </li> </ul> <h2>[0.5.19] - 2025-01-12</h2> <ul> <li>Fixed <ul> <li>False positive DOC405 and DOC201 when we have bare return statements together with <code>yield</code> statements</li> </ul> </li> <li>Added <ul> <li>A new config option <code>--should-document-star-arguments</code> (if <code>False</code>, star arguments such as <code>*args</code> and <code>**kwargs</code> should not be documented in the docstring)</li> <li>A pre-commit step to check that "Full diff" is always added in CHANGELOG.md</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19">https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19</a></li> </ul> </li> </ul> <h2>[0.5.18] - 2025-01-12</h2> <ul> <li>Fixed <ul> <li>An issue where custom exceptions such as <code>a.b.c.MyException.from_str</code> cannot be properly parsed and compared</li> <li>A minor wording issue in DOC503 violation message</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18">https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18</a></li> </ul> </li> </ul> <h2>[0.5.17] - 2025-01-12</h2> <ul> <li>Added <ul> <li>A new config option <code>--auto-regenerate-baseline</code> to automatically regenerate the baseline file for every successful <em>pydoclint</em> run</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17">https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17</a></li> </ul> </li> </ul> <h2>[0.5.16] - 2025-01-11</h2> <ul> <li> <p>Added</p> <ul> <li>A pre-commit hook for using <em>pydoclint</em> as a flake8 plugin</li> </ul> </li> <li> <p>Full diff</p> <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16">https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16</a></li> </ul> </li> </ul> <h2>[0.5.15] - 2025-01-10</h2> <ul> <li>Changed</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/jsh9/pydoclint/commit/2e8af22f66de795a7bd0ac661353596e8847bbad"><code>2e8af22</code></a> Add DOC003 to check docstring style mismatch (<a href="https://redirect.github.com/jsh9/pydoclint/issues/207">#207</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/94039b23bedf98b6a6469312d04eecee9797a90f"><code>94039b2</code></a> Add new config option for documenting star arguments (<a href="https://redirect.github.com/jsh9/pydoclint/issues/206">#206</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/22b9b37b6ccda9c19be9757ee2c7e0a86a836b96"><code>22b9b37</code></a> Fix false positive DOC405 & DOC201 for bare returns (<a href="https://redirect.github.com/jsh9/pydoclint/issues/205">#205</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/1f2ea57d39bce59362382a739572504b6ee5dfb0"><code>1f2ea57</code></a> Fix wording in DOC503 violation message (<a href="https://redirect.github.com/jsh9/pydoclint/issues/204">#204</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/91263b841745adef4a052354bf4301107fc803ae"><code>91263b8</code></a> Fix parsing and comparison of chained custom exceptions (<a href="https://redirect.github.com/jsh9/pydoclint/issues/203">#203</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/64ef92306050cd21e51a99b1dccd87a41274f6e5"><code>64ef923</code></a> Add tips, tricks, and pitfalls to README</li> <li><a href="https://github.com/jsh9/pydoclint/commit/fe188f425eae9e77c74f169ff2d16e740e370d0b"><code>fe188f4</code></a> Add an option to auto regenerate baseline (<a href="https://redirect.github.com/jsh9/pydoclint/issues/202">#202</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/7282eb691ca4c1e4742c62fe7c3578bb9348f0fb"><code>7282eb6</code></a> 👌 Add pre-commit-hook to run pydoclint via flake8 (<a href="https://redirect.github.com/jsh9/pydoclint/issues/200">#200</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/4021d8d9b3216e2789bd5f28fa7c761228b9b3d4"><code>4021d8d</code></a> Throw DOC001 when docstring sections can't be parsed (numpy style) (<a href="https://redirect.github.com/jsh9/pydoclint/issues/199">#199</a>)</li> <li>See full diff in <a href="https://github.com/jsh9/pydoclint/compare/0.5.14...0.6.0">compare view</a></li> </ul> </details> <br /> Updates `mkdocs-material` from 9.5.49 to 9.6.1 <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.6.1</h2> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7943">#7943</a>: Tags plugin crashing due to merge error</li> </ul> <h2>mkdocs-material-9.6.0</h2> <ul> <li>Added meta plugin</li> <li>Rewrite of the tags plugin</li> <li>Added support for allow lists in tags plugin</li> <li>Added support for and custom sorting in tags plugin</li> <li>Added support for related links in blog plugin</li> <li>Added support for custom index pages in blog plugin</li> <li>Added support for navigation subtitles</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7924">#7924</a>: Anchors might require two clicks when using instant navigation</li> </ul> <h2>mkdocs-material-9.5.50</h2> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7913">#7913</a>: Social plugin renders attribute lists in page title</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.6.1 (2025-01-31)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7943">#7943</a>: Tags plugin crashing due to merge error</li> </ul> <p>mkdocs-material-9.6.0 (2025-01-31)</p> <ul> <li>Added meta plugin</li> <li>Rewrite of the tags plugin</li> <li>Added support for allow lists in tags plugin</li> <li>Added support for and custom sorting in tags plugin</li> <li>Added support for related links in blog plugin</li> <li>Added support for custom index pages in blog plugin</li> <li>Added support for navigation subtitles</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7924">#7924</a>: Anchors might require two clicks when using instant navigation</li> </ul> <p>mkdocs-material-9.5.50 (2025-01-18)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7913">#7913</a>: Social plugin renders attribute lists in page title</li> </ul> <p>mkdocs-material-9.5.49+insiders-4.53.15 (2025-01-15)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7896">#7896</a>: Scoped tags listings not rendering in subsections</li> </ul> <p>mkdocs-material-9.5.49 (2024-12-16)</p> <ul> <li>Adjusted title color in dark mode for all supported Mermaid.js diagrams</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7803">#7803</a>: Privacy plugin crashes on generated files</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7781">#7781</a>: Mermaid.js flow chart title not visible in dark mode</li> </ul> <p>mkdocs-material-9.5.48 (2024-12-08)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7774">#7774</a>: Disabling social cards doesn't work</li> </ul> <p>mkdocs-material-9.5.47 (2024-12-01)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7750">#7750</a>: Numeric tags break search</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7748">#7748</a>: Blog plugin breaks when using future drafts (9.5.45 regression)</li> </ul> <p>mkdocs-material-9.5.46 (2024-11-25)</p> <ul> <li>Added support for removing preload hints in privacy plugin</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7734">#7734</a>: Code blocks in h5 headlines are uppercased</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7725">#7725</a>: Blog plugin crashing on missing timezone (9.5.45 regression)</li> </ul> <p>mkdocs-material-9.5.45 (2024-11-20)</p> <ul> <li>Reduced size of Docker image through multi-stage build</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7708">#7708</a>: Blog plugin crashing on YAML dates with timezones</li> </ul> <p>mkdocs-material-9.5.44 (2024-11-05)</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/454af62a45622e3ebf14d25b3ab1ea69c1130e8f"><code>454af62</code></a> Prepare 9.6.1 release</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/2d147c72c02b842937320c58b98e20179742a7a6"><code>2d147c7</code></a> Fixed crashing tags plugin</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/34dc4feba7b45c892c3d6ec2c3d8413a5ebdac5f"><code>34dc4fe</code></a> Updated Premium sponsors</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/8edc6f8daaf0e1e7ebb94be99d3f10e46cd8bfbd"><code>8edc6f8</code></a> Updated Premium sponsors</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/0be1d6b3c8b9f3aff1f91be8f7050dcc96a40321"><code>0be1d6b</code></a> Documentation</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/34e301d311d2e753022e1ae23fd851cbfd73be6a"><code>34e301d</code></a> Fixed build badge</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/4ca5214ebf1665fff5de7be140ab6188eb0ec5a5"><code>4ca5214</code></a> Corrected position of related links in blog post</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/627737ae38905578d761fb7c916b5fdcf854973e"><code>627737a</code></a> Merge pull request <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7942">#7942</a> from squidfunk/merge/chipotle</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/49daf573f0cf01cd66a87f6bba3815b775280287"><code>49daf57</code></a> Updated dependencies</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/1416697c6b27725859d522c8763914c2b1fb1615"><code>1416697</code></a> Prepare 9.6.0 release</li> <li>Additional commits viewable in <a href="https://github.com/squidfunk/mkdocs-material/compare/9.5.49...9.6.1">compare view</a></li> </ul> </details> <br /> Updates `pylint` from 3.3.3 to 3.3.4 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pylint-dev/pylint/commit/c2b01c3d0b6410d4c93eb1f32fb28f2116b1e68f"><code>c2b01c3</code></a> Bump pylint to 3.3.4, update changelog</li> <li><a href="https://github.com/pylint-dev/pylint/commit/023cd4355c48e3e0c7702e65fde2d99794b25554"><code>023cd43</code></a> [isort] Permit to use isort 6 (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10204">#10204</a>)</li> <li><a href="https://github.com/pylint-dev/pylint/commit/050acfe49c525cd5e58f7c289d35aee1af4051e5"><code>050acfe</code></a> Calculate linter.config.jobs in cgroupsv2 environments (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10089">#10089</a>) (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10169">#10169</a>)</li> <li><a href="https://github.com/pylint-dev/pylint/commit/d6992b8cf993af7a94a9a3044185fb3ea838ac49"><code>d6992b8</code></a> fix "skipped files" count calculation (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10141">#10141</a>)</li> <li>See full diff in <a href="https://github.com/pylint-dev/pylint/compare/v3.3.3...v3.3.4">compare view</a></li> </ul> </details> <br /> Updates `pytest-asyncio` from 0.25.1 to 0.25.3 <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.25.3</h2> <ul> <li>Avoid errors in cleanup of async generators when event loop is already closed <a href="https://redirect.github.com/pytest-dev/pytest-asyncio/issues/1040">#1040</a></li> </ul> <h2>pytest-asyncio 0.25.2</h2> <ul> <li>Call <code>loop.shutdown_asyncgens()</code> before closing the event loop to ensure async generators are closed in the same manner as <code>asyncio.run</code> does <a href="https://redirect.github.com/pytest-dev/pytest-asyncio/pull/1034">#1034</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/7c501923b00b4aeeb68d4b3b11065f0c3b5cba2c"><code>7c50192</code></a> fix: Avoid errors in cleanup of async generators when event loop is already c...</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/2188cdbbf7b47e653957d3f39aeb7d4d0de80bf4"><code>2188cdb</code></a> build: Prepare release of v0.25.2.</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/c3ad6340b8ad251f3c03d6bbe399f08434059bda"><code>c3ad634</code></a> fix: Shutdown generators before closing event loops.</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/e8ffb10528aaf578dc9ccc7ddbb1fadab56be8ac"><code>e8ffb10</code></a> [pre-commit.ci] pre-commit autoupdate</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/aae43d4f766dfd8f9a643faad41be411888a5d16"><code>aae43d4</code></a> Build(deps): Bump hypothesis in /dependencies/default</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/941e8b5104d86bb1b06b15fd3395f23120203c09"><code>941e8b5</code></a> Build(deps): Bump pygments from 2.18.0 to 2.19.1 in /dependencies/docs</li> <li>See full diff in <a href="https://github.com/pytest-dev/pytest-asyncio/compare/v0.25.1...v0.25.3">compare view</a></li> </ul> </details> <br /> Updates `hypothesis` from 6.123.2 to 6.124.7 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/HypothesisWorks/hypothesis/releases">hypothesis's releases</a>.</em></p> <blockquote> <h2>Hypothesis for Python - version 6.124.7</h2> <p>Internal renamings.</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changes.html#v6-124-7">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.124.6</h2> <p>More work on internal type hints.</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changes.html#v6-124-6">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.124.5</h2> <p>Internal refactoring to make some stateful internals easier to access.</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changes.html#v6-124-5">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.124.4</h2> <p>Refactoring of our internal input generation. This shouldn't lead to any changes in the distribution of test inputs. If you notice any, please open an issue!</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changes.html#v6-124-4">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.124.3</h2> <p>Some Hypothesis internals now use the number of choices as a yardstick of input size, rather than the entropy consumed by those choices. We don't expect this to cause significant behavioral changes.</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changes.html#v6-124-3">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.124.2</h2> <p>Improves our internal caching logic for test cases.</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changes.html#v6-124-2">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.124.1</h2> <p>fuzz_one_input is now implemented using an alternative backend. This brings the interpretation of the fuzzer-provided bytestring closer to the fuzzer mutations, allowing the mutations to work more reliably. We hope to use this backend functionality to improve fuzzing integration (see e.g. <a href="https://redirect.github.com/google/atheris/issues/20">google/atheris#20</a>) in the future!</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changes.html#v6-124-1">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.124.0</h2> <p>The Hypothesis example database now uses a new internal format to store examples. This new format is not compatible with the previous format, so stored entries will not carry over.</p> <p>The database is best thought of as a cache that may be invalidated at times. Instead of relying on it for correctness, we recommend using</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/ca262ece0351920a6f67e6defa8213ef3037f035"><code>ca262ec</code></a> Bump hypothesis-python version to 6.124.7 and update changelog</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/3711cf44097354d1787f27c865e38f85a6198bba"><code>3711cf4</code></a> Merge pull request <a href="https://redirect.github.com/HypothesisWorks/hypothesis/issues/4253">#4253</a> from tybug/tcs-cleanup</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/f3d23ded3bef43d8b479ee946456219730da2156"><code>f3d23de</code></a> clean up some ir naming vestiges</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/c363e1d2bcfa3cf8ef6095e79a7d9b51a236a71f"><code>c363e1d</code></a> Bump hypothesis-python version to 6.124.6 and update changelog</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/93fe3f744b01703e0f1e157e4b19c39fd6ae8a5d"><code>93fe3f7</code></a> Merge pull request <a href="https://redirect.github.com/HypothesisWorks/hypothesis/issues/4252">#4252</a> from tybug/more-typing</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/3c32382e10702ba3054a9d7c2e359eaa0267db39"><code>3c32382</code></a> add stacktrace note</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/30422334e868c2bfdc9e1520a084b37fcc4446ec"><code>3042233</code></a> try better output to debug assert_mypy_errors?</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/eaf0bfc25e2711907d8f18ca5363d967afb35cd7"><code>eaf0bfc</code></a> address some resolved TCS todos</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/3533c957977cd2d499f5e2660260c89dacf984a9"><code>3533c95</code></a> address review comments</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/c12cce7e485c8b34fc4e3c388e4dddffbb73ca03"><code>c12cce7</code></a> Bump hypothesis-python version to 6.124.5 and update changelog</li> <li>Additional commits viewable in <a href="https://github.com/HypothesisWorks/hypothesis/compare/hypothesis-python-6.123.2...hypothesis-python-6.124.7">compare view</a></li> </ul> </details> <br /> Updates `setuptools` from 75.6.0 to 75.8.0 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pypa/setuptools/blob/main/NEWS.rst">setuptools's changelog</a>.</em></p> <blockquote> <h1>v75.8.0</h1> <h2>Features</h2> <ul> <li>Implemented <code>Dynamic</code> field for core metadata (as introduced in PEP 643). The existing implementation is currently experimental and the exact approach may change in future releases. (<a href="https://redirect.github.com/pypa/setuptools/issues/4698">#4698</a>)</li> </ul> <h1>v75.7.0</h1> <h2>Features</h2> <ul> <li><code>pypa/distutils#310</code><a href="https://redirect.github.com/pypa/setuptools/issues/4478">#4478</a>)</li> <li>Synced with pypa/distutils@ff11eed0c including bugfix for duplicate CFLAGS and adaption to support Python 3.13 is_abs in the C compiler (<a href="https://redirect.github.com/pypa/setuptools/issues/4669">#4669</a>). (<a href="https://redirect.github.com/pypa/setuptools/issues/4790">#4790</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pypa/setuptools/commit/5c9d9809dec1b20e2a9da6b4a06355fd6f87a190"><code>5c9d980</code></a> Bump version: 75.7.0 → 75.8.0</li> <li><a href="https://github.com/pypa/setuptools/commit/72c422261b40f2b95a8be6605cc7dd93cec81794"><code>72c4222</code></a> Avoid using Any in function</li> <li><a href="https://github.com/pypa/setuptools/commit/1c61d4799438677c7cfaaccf281312bfb1aee9b3"><code>1c61d47</code></a> Add news fragments for PEP 643</li> <li><a href="https://github.com/pypa/setuptools/commit/f285d01e2661b01e4947a4dca7704790b65f2967"><code>f285d01</code></a> Implement PEP 643 (<code>Dynamic</code> field for core metadata) (<a href="https://redirect.github.com/pypa/setuptools/issues/4698">#4698</a>)</li> <li><a href="https://github.com/pypa/setuptools/commit/a50f6e2e1e8b4610adde709079bec17ad0944197"><code>a50f6e2</code></a> Fix _static.Dict.<strong>ior</strong> for Python 3.8</li> <li><a href="https://github.com/pypa/setuptools/commit/b055895fa337a6e03a29c2ea6493b6b778d2ba46"><code>b055895</code></a> Add extra tests for static/dynamic metadata</li> <li><a href="https://github.com/pypa/setuptools/commit/770b4fc8f6248d862629028f5ee4218975f9516b"><code>770b4fc</code></a> Remove test workaround for unmarked static values from pyproject.toml</li> <li><a href="https://github.com/pypa/setuptools/commit/8b22d73be5e23a9611398d81aedc5164115940ce"><code>8b22d73</code></a> Mark values from pyproject.toml as static</li> <li><a href="https://github.com/pypa/setuptools/commit/f699fd842e3ddedbe937ee33b0bd6ad28e735664"><code>f699fd8</code></a> Fix spelling error</li> <li><a href="https://github.com/pypa/setuptools/commit/8b4c8a3c95f43d771d0fa6e4ebceea3436bc70f7"><code>8b4c8a3</code></a> Add tests for static 'attr' directive</li> <li>Additional commits viewable in <a href="https://github.com/pypa/setuptools/compare/v75.6.0...v75.8.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>
Bumps the required group with 5 updates: | Package | From | To | | --- | --- | --- | | [pydoclint](https://github.com/jsh9/pydoclint) | `0.5.14` | `0.6.0` | | [mkdocs-material](https://github.com/squidfunk/mkdocs-material) | `9.5.49` | `9.6.1` | | [pylint](https://github.com/pylint-dev/pylint) | `3.3.3` | `3.3.4` | | [pytest-asyncio](https://github.com/pytest-dev/pytest-asyncio) | `0.25.1` | `0.25.3` | | [setuptools](https://github.com/pypa/setuptools) | `75.6.0` | `75.8.0` | Updates `pydoclint` from 0.5.14 to 0.6.0 <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.6.0</h2> <h2>What's Changed</h2> <ul> <li>Add DOC003 to check docstring style mismatch by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/207">jsh9/pydoclint#207</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0">https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0</a></p> <h2>0.5.19</h2> <h2>What's Changed</h2> <ul> <li>Fix false positive DOC405 & DOC201 for bare returns by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/205">jsh9/pydoclint#205</a></li> <li>Add new config option for documenting star arguments by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/206">jsh9/pydoclint#206</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19">https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19</a></p> <h2>0.5.18</h2> <h2>What's Changed</h2> <ul> <li>Fix parsing and comparison of chained custom exceptions by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/203">jsh9/pydoclint#203</a></li> <li>Fix wording in DOC503 violation message by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/204">jsh9/pydoclint#204</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18">https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18</a></p> <h2>0.5.17</h2> <h2>What's Changed</h2> <ul> <li>Add an option to auto regenerate baseline by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/202">jsh9/pydoclint#202</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17">https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17</a></p> <h2>0.5.16</h2> <h2>What's Changed</h2> <ul> <li>👌 Add pre-commit-hook to run pydoclint via flake8 by <a href="https://github.com/s-weigand"><code>@s-weigand</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/200">jsh9/pydoclint#200</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16">https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16</a></p> <h2>0.5.15</h2> <h2>What's Changed</h2> <ul> <li>Throw DOC001 when docstring sections can't be parsed (numpy style) by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/199">jsh9/pydoclint#199</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.14...0.5.15">https://github.com/jsh9/pydoclint/compare/0.5.14...0.5.15</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.6.0] - 2025-01-13</h2> <ul> <li>Added <ul> <li>A new violation code, <code>DOC003</code>, to detect docstring style mismatch (when docstrings are written in the style different from specified)</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0">https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0</a></li> </ul> </li> </ul> <h2>[0.5.19] - 2025-01-12</h2> <ul> <li>Fixed <ul> <li>False positive DOC405 and DOC201 when we have bare return statements together with <code>yield</code> statements</li> </ul> </li> <li>Added <ul> <li>A new config option <code>--should-document-star-arguments</code> (if <code>False</code>, star arguments such as <code>*args</code> and <code>**kwargs</code> should not be documented in the docstring)</li> <li>A pre-commit step to check that "Full diff" is always added in CHANGELOG.md</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19">https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19</a></li> </ul> </li> </ul> <h2>[0.5.18] - 2025-01-12</h2> <ul> <li>Fixed <ul> <li>An issue where custom exceptions such as <code>a.b.c.MyException.from_str</code> cannot be properly parsed and compared</li> <li>A minor wording issue in DOC503 violation message</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18">https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18</a></li> </ul> </li> </ul> <h2>[0.5.17] - 2025-01-12</h2> <ul> <li>Added <ul> <li>A new config option <code>--auto-regenerate-baseline</code> to automatically regenerate the baseline file for every successful <em>pydoclint</em> run</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17">https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17</a></li> </ul> </li> </ul> <h2>[0.5.16] - 2025-01-11</h2> <ul> <li> <p>Added</p> <ul> <li>A pre-commit hook for using <em>pydoclint</em> as a flake8 plugin</li> </ul> </li> <li> <p>Full diff</p> <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16">https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16</a></li> </ul> </li> </ul> <h2>[0.5.15] - 2025-01-10</h2> <ul> <li>Changed</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/jsh9/pydoclint/commit/2e8af22f66de795a7bd0ac661353596e8847bbad"><code>2e8af22</code></a> Add DOC003 to check docstring style mismatch (<a href="https://redirect.github.com/jsh9/pydoclint/issues/207">#207</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/94039b23bedf98b6a6469312d04eecee9797a90f"><code>94039b2</code></a> Add new config option for documenting star arguments (<a href="https://redirect.github.com/jsh9/pydoclint/issues/206">#206</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/22b9b37b6ccda9c19be9757ee2c7e0a86a836b96"><code>22b9b37</code></a> Fix false positive DOC405 & DOC201 for bare returns (<a href="https://redirect.github.com/jsh9/pydoclint/issues/205">#205</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/1f2ea57d39bce59362382a739572504b6ee5dfb0"><code>1f2ea57</code></a> Fix wording in DOC503 violation message (<a href="https://redirect.github.com/jsh9/pydoclint/issues/204">#204</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/91263b841745adef4a052354bf4301107fc803ae"><code>91263b8</code></a> Fix parsing and comparison of chained custom exceptions (<a href="https://redirect.github.com/jsh9/pydoclint/issues/203">#203</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/64ef92306050cd21e51a99b1dccd87a41274f6e5"><code>64ef923</code></a> Add tips, tricks, and pitfalls to README</li> <li><a href="https://github.com/jsh9/pydoclint/commit/fe188f425eae9e77c74f169ff2d16e740e370d0b"><code>fe188f4</code></a> Add an option to auto regenerate baseline (<a href="https://redirect.github.com/jsh9/pydoclint/issues/202">#202</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/7282eb691ca4c1e4742c62fe7c3578bb9348f0fb"><code>7282eb6</code></a> 👌 Add pre-commit-hook to run pydoclint via flake8 (<a href="https://redirect.github.com/jsh9/pydoclint/issues/200">#200</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/4021d8d9b3216e2789bd5f28fa7c761228b9b3d4"><code>4021d8d</code></a> Throw DOC001 when docstring sections can't be parsed (numpy style) (<a href="https://redirect.github.com/jsh9/pydoclint/issues/199">#199</a>)</li> <li>See full diff in <a href="https://github.com/jsh9/pydoclint/compare/0.5.14...0.6.0">compare view</a></li> </ul> </details> <br /> Updates `mkdocs-material` from 9.5.49 to 9.6.1 <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.6.1</h2> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7943">#7943</a>: Tags plugin crashing due to merge error</li> </ul> <h2>mkdocs-material-9.6.0</h2> <ul> <li>Added meta plugin</li> <li>Rewrite of the tags plugin</li> <li>Added support for allow lists in tags plugin</li> <li>Added support for and custom sorting in tags plugin</li> <li>Added support for related links in blog plugin</li> <li>Added support for custom index pages in blog plugin</li> <li>Added support for navigation subtitles</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7924">#7924</a>: Anchors might require two clicks when using instant navigation</li> </ul> <h2>mkdocs-material-9.5.50</h2> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7913">#7913</a>: Social plugin renders attribute lists in page title</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.6.1 (2025-01-31)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7943">#7943</a>: Tags plugin crashing due to merge error</li> </ul> <p>mkdocs-material-9.6.0 (2025-01-31)</p> <ul> <li>Added meta plugin</li> <li>Rewrite of the tags plugin</li> <li>Added support for allow lists in tags plugin</li> <li>Added support for and custom sorting in tags plugin</li> <li>Added support for related links in blog plugin</li> <li>Added support for custom index pages in blog plugin</li> <li>Added support for navigation subtitles</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7924">#7924</a>: Anchors might require two clicks when using instant navigation</li> </ul> <p>mkdocs-material-9.5.50 (2025-01-18)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7913">#7913</a>: Social plugin renders attribute lists in page title</li> </ul> <p>mkdocs-material-9.5.49+insiders-4.53.15 (2025-01-15)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7896">#7896</a>: Scoped tags listings not rendering in subsections</li> </ul> <p>mkdocs-material-9.5.49 (2024-12-16)</p> <ul> <li>Adjusted title color in dark mode for all supported Mermaid.js diagrams</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7803">#7803</a>: Privacy plugin crashes on generated files</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7781">#7781</a>: Mermaid.js flow chart title not visible in dark mode</li> </ul> <p>mkdocs-material-9.5.48 (2024-12-08)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7774">#7774</a>: Disabling social cards doesn't work</li> </ul> <p>mkdocs-material-9.5.47 (2024-12-01)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7750">#7750</a>: Numeric tags break search</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7748">#7748</a>: Blog plugin breaks when using future drafts (9.5.45 regression)</li> </ul> <p>mkdocs-material-9.5.46 (2024-11-25)</p> <ul> <li>Added support for removing preload hints in privacy plugin</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7734">#7734</a>: Code blocks in h5 headlines are uppercased</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7725">#7725</a>: Blog plugin crashing on missing timezone (9.5.45 regression)</li> </ul> <p>mkdocs-material-9.5.45 (2024-11-20)</p> <ul> <li>Reduced size of Docker image through multi-stage build</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7708">#7708</a>: Blog plugin crashing on YAML dates with timezones</li> </ul> <p>mkdocs-material-9.5.44 (2024-11-05)</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/454af62a45622e3ebf14d25b3ab1ea69c1130e8f"><code>454af62</code></a> Prepare 9.6.1 release</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/2d147c72c02b842937320c58b98e20179742a7a6"><code>2d147c7</code></a> Fixed crashing tags plugin</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/34dc4feba7b45c892c3d6ec2c3d8413a5ebdac5f"><code>34dc4fe</code></a> Updated Premium sponsors</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/8edc6f8daaf0e1e7ebb94be99d3f10e46cd8bfbd"><code>8edc6f8</code></a> Updated Premium sponsors</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/0be1d6b3c8b9f3aff1f91be8f7050dcc96a40321"><code>0be1d6b</code></a> Documentation</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/34e301d311d2e753022e1ae23fd851cbfd73be6a"><code>34e301d</code></a> Fixed build badge</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/4ca5214ebf1665fff5de7be140ab6188eb0ec5a5"><code>4ca5214</code></a> Corrected position of related links in blog post</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/627737ae38905578d761fb7c916b5fdcf854973e"><code>627737a</code></a> Merge pull request <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7942">#7942</a> from squidfunk/merge/chipotle</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/49daf573f0cf01cd66a87f6bba3815b775280287"><code>49daf57</code></a> Updated dependencies</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/1416697c6b27725859d522c8763914c2b1fb1615"><code>1416697</code></a> Prepare 9.6.0 release</li> <li>Additional commits viewable in <a href="https://github.com/squidfunk/mkdocs-material/compare/9.5.49...9.6.1">compare view</a></li> </ul> </details> <br /> Updates `pylint` from 3.3.3 to 3.3.4 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pylint-dev/pylint/commit/c2b01c3d0b6410d4c93eb1f32fb28f2116b1e68f"><code>c2b01c3</code></a> Bump pylint to 3.3.4, update changelog</li> <li><a href="https://github.com/pylint-dev/pylint/commit/023cd4355c48e3e0c7702e65fde2d99794b25554"><code>023cd43</code></a> [isort] Permit to use isort 6 (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10204">#10204</a>)</li> <li><a href="https://github.com/pylint-dev/pylint/commit/050acfe49c525cd5e58f7c289d35aee1af4051e5"><code>050acfe</code></a> Calculate linter.config.jobs in cgroupsv2 environments (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10089">#10089</a>) (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10169">#10169</a>)</li> <li><a href="https://github.com/pylint-dev/pylint/commit/d6992b8cf993af7a94a9a3044185fb3ea838ac49"><code>d6992b8</code></a> fix "skipped files" count calculation (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10141">#10141</a>)</li> <li>See full diff in <a href="https://github.com/pylint-dev/pylint/compare/v3.3.3...v3.3.4">compare view</a></li> </ul> </details> <br /> Updates `pytest-asyncio` from 0.25.1 to 0.25.3 <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.25.3</h2> <ul> <li>Avoid errors in cleanup of async generators when event loop is already closed <a href="https://redirect.github.com/pytest-dev/pytest-asyncio/issues/1040">#1040</a></li> </ul> <h2>pytest-asyncio 0.25.2</h2> <ul> <li>Call <code>loop.shutdown_asyncgens()</code> before closing the event loop to ensure async generators are closed in the same manner as <code>asyncio.run</code> does <a href="https://redirect.github.com/pytest-dev/pytest-asyncio/pull/1034">#1034</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/7c501923b00b4aeeb68d4b3b11065f0c3b5cba2c"><code>7c50192</code></a> fix: Avoid errors in cleanup of async generators when event loop is already c...</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/2188cdbbf7b47e653957d3f39aeb7d4d0de80bf4"><code>2188cdb</code></a> build: Prepare release of v0.25.2.</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/c3ad6340b8ad251f3c03d6bbe399f08434059bda"><code>c3ad634</code></a> fix: Shutdown generators before closing event loops.</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/e8ffb10528aaf578dc9ccc7ddbb1fadab56be8ac"><code>e8ffb10</code></a> [pre-commit.ci] pre-commit autoupdate</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/aae43d4f766dfd8f9a643faad41be411888a5d16"><code>aae43d4</code></a> Build(deps): Bump hypothesis in /dependencies/default</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/941e8b5104d86bb1b06b15fd3395f23120203c09"><code>941e8b5</code></a> Build(deps): Bump pygments from 2.18.0 to 2.19.1 in /dependencies/docs</li> <li>See full diff in <a href="https://github.com/pytest-dev/pytest-asyncio/compare/v0.25.1...v0.25.3">compare view</a></li> </ul> </details> <br /> Updates `setuptools` from 75.6.0 to 75.8.0 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pypa/setuptools/blob/main/NEWS.rst">setuptools's changelog</a>.</em></p> <blockquote> <h1>v75.8.0</h1> <h2>Features</h2> <ul> <li>Implemented <code>Dynamic</code> field for core metadata (as introduced in PEP 643). The existing implementation is currently experimental and the exact approach may change in future releases. (<a href="https://redirect.github.com/pypa/setuptools/issues/4698">#4698</a>)</li> </ul> <h1>v75.7.0</h1> <h2>Features</h2> <ul> <li><code>pypa/distutils#310</code><a href="https://redirect.github.com/pypa/setuptools/issues/4478">#4478</a>)</li> <li>Synced with pypa/distutils@ff11eed0c including bugfix for duplicate CFLAGS and adaption to support Python 3.13 is_abs in the C compiler (<a href="https://redirect.github.com/pypa/setuptools/issues/4669">#4669</a>). (<a href="https://redirect.github.com/pypa/setuptools/issues/4790">#4790</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pypa/setuptools/commit/5c9d9809dec1b20e2a9da6b4a06355fd6f87a190"><code>5c9d980</code></a> Bump version: 75.7.0 → 75.8.0</li> <li><a href="https://github.com/pypa/setuptools/commit/72c422261b40f2b95a8be6605cc7dd93cec81794"><code>72c4222</code></a> Avoid using Any in function</li> <li><a href="https://github.com/pypa/setuptools/commit/1c61d4799438677c7cfaaccf281312bfb1aee9b3"><code>1c61d47</code></a> Add news fragments for PEP 643</li> <li><a href="https://github.com/pypa/setuptools/commit/f285d01e2661b01e4947a4dca7704790b65f2967"><code>f285d01</code></a> Implement PEP 643 (<code>Dynamic</code> field for core metadata) (<a href="https://redirect.github.com/pypa/setuptools/issues/4698">#4698</a>)</li> <li><a href="https://github.com/pypa/setuptools/commit/a50f6e2e1e8b4610adde709079bec17ad0944197"><code>a50f6e2</code></a> Fix _static.Dict.<strong>ior</strong> for Python 3.8</li> <li><a href="https://github.com/pypa/setuptools/commit/b055895fa337a6e03a29c2ea6493b6b778d2ba46"><code>b055895</code></a> Add extra tests for static/dynamic metadata</li> <li><a href="https://github.com/pypa/setuptools/commit/770b4fc8f6248d862629028f5ee4218975f9516b"><code>770b4fc</code></a> Remove test workaround for unmarked static values from pyproject.toml</li> <li><a href="https://github.com/pypa/setuptools/commit/8b22d73be5e23a9611398d81aedc5164115940ce"><code>8b22d73</code></a> Mark values from pyproject.toml as static</li> <li><a href="https://github.com/pypa/setuptools/commit/f699fd842e3ddedbe937ee33b0bd6ad28e735664"><code>f699fd8</code></a> Fix spelling error</li> <li><a href="https://github.com/pypa/setuptools/commit/8b4c8a3c95f43d771d0fa6e4ebceea3436bc70f7"><code>8b4c8a3</code></a> Add tests for static 'attr' directive</li> <li>Additional commits viewable in <a href="https://github.com/pypa/setuptools/compare/v75.6.0...v75.8.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>
Bumps the required group with 6 updates: | Package | From | To | | --- | --- | --- | | [pydoclint](https://github.com/jsh9/pydoclint) | `0.5.14` | `0.6.0` | | [mkdocs-material](https://github.com/squidfunk/mkdocs-material) | `9.5.49` | `9.6.1` | | [pylint](https://github.com/pylint-dev/pylint) | `3.3.3` | `3.3.4` | | [pytest-asyncio](https://github.com/pytest-dev/pytest-asyncio) | `0.25.1` | `0.25.3` | | [hypothesis](https://github.com/HypothesisWorks/hypothesis) | `6.123.2` | `6.124.7` | | [setuptools](https://github.com/pypa/setuptools) | `75.6.0` | `75.8.0` | Updates `pydoclint` from 0.5.14 to 0.6.0 <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.6.0</h2> <h2>What's Changed</h2> <ul> <li>Add DOC003 to check docstring style mismatch by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/207">jsh9/pydoclint#207</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0">https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0</a></p> <h2>0.5.19</h2> <h2>What's Changed</h2> <ul> <li>Fix false positive DOC405 & DOC201 for bare returns by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/205">jsh9/pydoclint#205</a></li> <li>Add new config option for documenting star arguments by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/206">jsh9/pydoclint#206</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19">https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19</a></p> <h2>0.5.18</h2> <h2>What's Changed</h2> <ul> <li>Fix parsing and comparison of chained custom exceptions by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/203">jsh9/pydoclint#203</a></li> <li>Fix wording in DOC503 violation message by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/204">jsh9/pydoclint#204</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18">https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18</a></p> <h2>0.5.17</h2> <h2>What's Changed</h2> <ul> <li>Add an option to auto regenerate baseline by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/202">jsh9/pydoclint#202</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17">https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17</a></p> <h2>0.5.16</h2> <h2>What's Changed</h2> <ul> <li>👌 Add pre-commit-hook to run pydoclint via flake8 by <a href="https://github.com/s-weigand"><code>@s-weigand</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/200">jsh9/pydoclint#200</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16">https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16</a></p> <h2>0.5.15</h2> <h2>What's Changed</h2> <ul> <li>Throw DOC001 when docstring sections can't be parsed (numpy style) by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/199">jsh9/pydoclint#199</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.14...0.5.15">https://github.com/jsh9/pydoclint/compare/0.5.14...0.5.15</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.6.0] - 2025-01-13</h2> <ul> <li>Added <ul> <li>A new violation code, <code>DOC003</code>, to detect docstring style mismatch (when docstrings are written in the style different from specified)</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0">https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0</a></li> </ul> </li> </ul> <h2>[0.5.19] - 2025-01-12</h2> <ul> <li>Fixed <ul> <li>False positive DOC405 and DOC201 when we have bare return statements together with <code>yield</code> statements</li> </ul> </li> <li>Added <ul> <li>A new config option <code>--should-document-star-arguments</code> (if <code>False</code>, star arguments such as <code>*args</code> and <code>**kwargs</code> should not be documented in the docstring)</li> <li>A pre-commit step to check that "Full diff" is always added in CHANGELOG.md</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19">https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19</a></li> </ul> </li> </ul> <h2>[0.5.18] - 2025-01-12</h2> <ul> <li>Fixed <ul> <li>An issue where custom exceptions such as <code>a.b.c.MyException.from_str</code> cannot be properly parsed and compared</li> <li>A minor wording issue in DOC503 violation message</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18">https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18</a></li> </ul> </li> </ul> <h2>[0.5.17] - 2025-01-12</h2> <ul> <li>Added <ul> <li>A new config option <code>--auto-regenerate-baseline</code> to automatically regenerate the baseline file for every successful <em>pydoclint</em> run</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17">https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17</a></li> </ul> </li> </ul> <h2>[0.5.16] - 2025-01-11</h2> <ul> <li> <p>Added</p> <ul> <li>A pre-commit hook for using <em>pydoclint</em> as a flake8 plugin</li> </ul> </li> <li> <p>Full diff</p> <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16">https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16</a></li> </ul> </li> </ul> <h2>[0.5.15] - 2025-01-10</h2> <ul> <li>Changed</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/jsh9/pydoclint/commit/2e8af22f66de795a7bd0ac661353596e8847bbad"><code>2e8af22</code></a> Add DOC003 to check docstring style mismatch (<a href="https://redirect.github.com/jsh9/pydoclint/issues/207">#207</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/94039b23bedf98b6a6469312d04eecee9797a90f"><code>94039b2</code></a> Add new config option for documenting star arguments (<a href="https://redirect.github.com/jsh9/pydoclint/issues/206">#206</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/22b9b37b6ccda9c19be9757ee2c7e0a86a836b96"><code>22b9b37</code></a> Fix false positive DOC405 & DOC201 for bare returns (<a href="https://redirect.github.com/jsh9/pydoclint/issues/205">#205</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/1f2ea57d39bce59362382a739572504b6ee5dfb0"><code>1f2ea57</code></a> Fix wording in DOC503 violation message (<a href="https://redirect.github.com/jsh9/pydoclint/issues/204">#204</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/91263b841745adef4a052354bf4301107fc803ae"><code>91263b8</code></a> Fix parsing and comparison of chained custom exceptions (<a href="https://redirect.github.com/jsh9/pydoclint/issues/203">#203</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/64ef92306050cd21e51a99b1dccd87a41274f6e5"><code>64ef923</code></a> Add tips, tricks, and pitfalls to README</li> <li><a href="https://github.com/jsh9/pydoclint/commit/fe188f425eae9e77c74f169ff2d16e740e370d0b"><code>fe188f4</code></a> Add an option to auto regenerate baseline (<a href="https://redirect.github.com/jsh9/pydoclint/issues/202">#202</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/7282eb691ca4c1e4742c62fe7c3578bb9348f0fb"><code>7282eb6</code></a> 👌 Add pre-commit-hook to run pydoclint via flake8 (<a href="https://redirect.github.com/jsh9/pydoclint/issues/200">#200</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/4021d8d9b3216e2789bd5f28fa7c761228b9b3d4"><code>4021d8d</code></a> Throw DOC001 when docstring sections can't be parsed (numpy style) (<a href="https://redirect.github.com/jsh9/pydoclint/issues/199">#199</a>)</li> <li>See full diff in <a href="https://github.com/jsh9/pydoclint/compare/0.5.14...0.6.0">compare view</a></li> </ul> </details> <br /> Updates `mkdocs-material` from 9.5.49 to 9.6.1 <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.6.1</h2> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7943">#7943</a>: Tags plugin crashing due to merge error</li> </ul> <h2>mkdocs-material-9.6.0</h2> <ul> <li>Added meta plugin</li> <li>Rewrite of the tags plugin</li> <li>Added support for allow lists in tags plugin</li> <li>Added support for and custom sorting in tags plugin</li> <li>Added support for related links in blog plugin</li> <li>Added support for custom index pages in blog plugin</li> <li>Added support for navigation subtitles</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7924">#7924</a>: Anchors might require two clicks when using instant navigation</li> </ul> <h2>mkdocs-material-9.5.50</h2> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7913">#7913</a>: Social plugin renders attribute lists in page title</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.6.1 (2025-01-31)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7943">#7943</a>: Tags plugin crashing due to merge error</li> </ul> <p>mkdocs-material-9.6.0 (2025-01-31)</p> <ul> <li>Added meta plugin</li> <li>Rewrite of the tags plugin</li> <li>Added support for allow lists in tags plugin</li> <li>Added support for and custom sorting in tags plugin</li> <li>Added support for related links in blog plugin</li> <li>Added support for custom index pages in blog plugin</li> <li>Added support for navigation subtitles</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7924">#7924</a>: Anchors might require two clicks when using instant navigation</li> </ul> <p>mkdocs-material-9.5.50 (2025-01-18)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7913">#7913</a>: Social plugin renders attribute lists in page title</li> </ul> <p>mkdocs-material-9.5.49+insiders-4.53.15 (2025-01-15)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7896">#7896</a>: Scoped tags listings not rendering in subsections</li> </ul> <p>mkdocs-material-9.5.49 (2024-12-16)</p> <ul> <li>Adjusted title color in dark mode for all supported Mermaid.js diagrams</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7803">#7803</a>: Privacy plugin crashes on generated files</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7781">#7781</a>: Mermaid.js flow chart title not visible in dark mode</li> </ul> <p>mkdocs-material-9.5.48 (2024-12-08)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7774">#7774</a>: Disabling social cards doesn't work</li> </ul> <p>mkdocs-material-9.5.47 (2024-12-01)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7750">#7750</a>: Numeric tags break search</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7748">#7748</a>: Blog plugin breaks when using future drafts (9.5.45 regression)</li> </ul> <p>mkdocs-material-9.5.46 (2024-11-25)</p> <ul> <li>Added support for removing preload hints in privacy plugin</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7734">#7734</a>: Code blocks in h5 headlines are uppercased</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7725">#7725</a>: Blog plugin crashing on missing timezone (9.5.45 regression)</li> </ul> <p>mkdocs-material-9.5.45 (2024-11-20)</p> <ul> <li>Reduced size of Docker image through multi-stage build</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7708">#7708</a>: Blog plugin crashing on YAML dates with timezones</li> </ul> <p>mkdocs-material-9.5.44 (2024-11-05)</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/454af62a45622e3ebf14d25b3ab1ea69c1130e8f"><code>454af62</code></a> Prepare 9.6.1 release</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/2d147c72c02b842937320c58b98e20179742a7a6"><code>2d147c7</code></a> Fixed crashing tags plugin</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/34dc4feba7b45c892c3d6ec2c3d8413a5ebdac5f"><code>34dc4fe</code></a> Updated Premium sponsors</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/8edc6f8daaf0e1e7ebb94be99d3f10e46cd8bfbd"><code>8edc6f8</code></a> Updated Premium sponsors</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/0be1d6b3c8b9f3aff1f91be8f7050dcc96a40321"><code>0be1d6b</code></a> Documentation</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/34e301d311d2e753022e1ae23fd851cbfd73be6a"><code>34e301d</code></a> Fixed build badge</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/4ca5214ebf1665fff5de7be140ab6188eb0ec5a5"><code>4ca5214</code></a> Corrected position of related links in blog post</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/627737ae38905578d761fb7c916b5fdcf854973e"><code>627737a</code></a> Merge pull request <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7942">#7942</a> from squidfunk/merge/chipotle</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/49daf573f0cf01cd66a87f6bba3815b775280287"><code>49daf57</code></a> Updated dependencies</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/1416697c6b27725859d522c8763914c2b1fb1615"><code>1416697</code></a> Prepare 9.6.0 release</li> <li>Additional commits viewable in <a href="https://github.com/squidfunk/mkdocs-material/compare/9.5.49...9.6.1">compare view</a></li> </ul> </details> <br /> Updates `pylint` from 3.3.3 to 3.3.4 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pylint-dev/pylint/commit/c2b01c3d0b6410d4c93eb1f32fb28f2116b1e68f"><code>c2b01c3</code></a> Bump pylint to 3.3.4, update changelog</li> <li><a href="https://github.com/pylint-dev/pylint/commit/023cd4355c48e3e0c7702e65fde2d99794b25554"><code>023cd43</code></a> [isort] Permit to use isort 6 (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10204">#10204</a>)</li> <li><a href="https://github.com/pylint-dev/pylint/commit/050acfe49c525cd5e58f7c289d35aee1af4051e5"><code>050acfe</code></a> Calculate linter.config.jobs in cgroupsv2 environments (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10089">#10089</a>) (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10169">#10169</a>)</li> <li><a href="https://github.com/pylint-dev/pylint/commit/d6992b8cf993af7a94a9a3044185fb3ea838ac49"><code>d6992b8</code></a> fix "skipped files" count calculation (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10141">#10141</a>)</li> <li>See full diff in <a href="https://github.com/pylint-dev/pylint/compare/v3.3.3...v3.3.4">compare view</a></li> </ul> </details> <br /> Updates `pytest-asyncio` from 0.25.1 to 0.25.3 <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.25.3</h2> <ul> <li>Avoid errors in cleanup of async generators when event loop is already closed <a href="https://redirect.github.com/pytest-dev/pytest-asyncio/issues/1040">#1040</a></li> </ul> <h2>pytest-asyncio 0.25.2</h2> <ul> <li>Call <code>loop.shutdown_asyncgens()</code> before closing the event loop to ensure async generators are closed in the same manner as <code>asyncio.run</code> does <a href="https://redirect.github.com/pytest-dev/pytest-asyncio/pull/1034">#1034</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/7c501923b00b4aeeb68d4b3b11065f0c3b5cba2c"><code>7c50192</code></a> fix: Avoid errors in cleanup of async generators when event loop is already c...</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/2188cdbbf7b47e653957d3f39aeb7d4d0de80bf4"><code>2188cdb</code></a> build: Prepare release of v0.25.2.</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/c3ad6340b8ad251f3c03d6bbe399f08434059bda"><code>c3ad634</code></a> fix: Shutdown generators before closing event loops.</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/e8ffb10528aaf578dc9ccc7ddbb1fadab56be8ac"><code>e8ffb10</code></a> [pre-commit.ci] pre-commit autoupdate</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/aae43d4f766dfd8f9a643faad41be411888a5d16"><code>aae43d4</code></a> Build(deps): Bump hypothesis in /dependencies/default</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/941e8b5104d86bb1b06b15fd3395f23120203c09"><code>941e8b5</code></a> Build(deps): Bump pygments from 2.18.0 to 2.19.1 in /dependencies/docs</li> <li>See full diff in <a href="https://github.com/pytest-dev/pytest-asyncio/compare/v0.25.1...v0.25.3">compare view</a></li> </ul> </details> <br /> Updates `hypothesis` from 6.123.2 to 6.124.7 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/HypothesisWorks/hypothesis/releases">hypothesis's releases</a>.</em></p> <blockquote> <h2>Hypothesis for Python - version 6.124.7</h2> <p>Internal renamings.</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changes.html#v6-124-7">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.124.6</h2> <p>More work on internal type hints.</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changes.html#v6-124-6">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.124.5</h2> <p>Internal refactoring to make some stateful internals easier to access.</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changes.html#v6-124-5">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.124.4</h2> <p>Refactoring of our internal input generation. This shouldn't lead to any changes in the distribution of test inputs. If you notice any, please open an issue!</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changes.html#v6-124-4">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.124.3</h2> <p>Some Hypothesis internals now use the number of choices as a yardstick of input size, rather than the entropy consumed by those choices. We don't expect this to cause significant behavioral changes.</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changes.html#v6-124-3">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.124.2</h2> <p>Improves our internal caching logic for test cases.</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changes.html#v6-124-2">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.124.1</h2> <p>fuzz_one_input is now implemented using an alternative backend. This brings the interpretation of the fuzzer-provided bytestring closer to the fuzzer mutations, allowing the mutations to work more reliably. We hope to use this backend functionality to improve fuzzing integration (see e.g. <a href="https://redirect.github.com/google/atheris/issues/20">google/atheris#20</a>) in the future!</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changes.html#v6-124-1">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.124.0</h2> <p>The Hypothesis example database now uses a new internal format to store examples. This new format is not compatible with the previous format, so stored entries will not carry over.</p> <p>The database is best thought of as a cache that may be invalidated at times. Instead of relying on it for correctness, we recommend using</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/ca262ece0351920a6f67e6defa8213ef3037f035"><code>ca262ec</code></a> Bump hypothesis-python version to 6.124.7 and update changelog</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/3711cf44097354d1787f27c865e38f85a6198bba"><code>3711cf4</code></a> Merge pull request <a href="https://redirect.github.com/HypothesisWorks/hypothesis/issues/4253">#4253</a> from tybug/tcs-cleanup</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/f3d23ded3bef43d8b479ee946456219730da2156"><code>f3d23de</code></a> clean up some ir naming vestiges</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/c363e1d2bcfa3cf8ef6095e79a7d9b51a236a71f"><code>c363e1d</code></a> Bump hypothesis-python version to 6.124.6 and update changelog</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/93fe3f744b01703e0f1e157e4b19c39fd6ae8a5d"><code>93fe3f7</code></a> Merge pull request <a href="https://redirect.github.com/HypothesisWorks/hypothesis/issues/4252">#4252</a> from tybug/more-typing</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/3c32382e10702ba3054a9d7c2e359eaa0267db39"><code>3c32382</code></a> add stacktrace note</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/30422334e868c2bfdc9e1520a084b37fcc4446ec"><code>3042233</code></a> try better output to debug assert_mypy_errors?</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/eaf0bfc25e2711907d8f18ca5363d967afb35cd7"><code>eaf0bfc</code></a> address some resolved TCS todos</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/3533c957977cd2d499f5e2660260c89dacf984a9"><code>3533c95</code></a> address review comments</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/c12cce7e485c8b34fc4e3c388e4dddffbb73ca03"><code>c12cce7</code></a> Bump hypothesis-python version to 6.124.5 and update changelog</li> <li>Additional commits viewable in <a href="https://github.com/HypothesisWorks/hypothesis/compare/hypothesis-python-6.123.2...hypothesis-python-6.124.7">compare view</a></li> </ul> </details> <br /> Updates `setuptools` from 75.6.0 to 75.8.0 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pypa/setuptools/blob/main/NEWS.rst">setuptools's changelog</a>.</em></p> <blockquote> <h1>v75.8.0</h1> <h2>Features</h2> <ul> <li>Implemented <code>Dynamic</code> field for core metadata (as introduced in PEP 643). The existing implementation is currently experimental and the exact approach may change in future releases. (<a href="https://redirect.github.com/pypa/setuptools/issues/4698">#4698</a>)</li> </ul> <h1>v75.7.0</h1> <h2>Features</h2> <ul> <li><code>pypa/distutils#310</code><a href="https://redirect.github.com/pypa/setuptools/issues/4478">#4478</a>)</li> <li>Synced with pypa/distutils@ff11eed0c including bugfix for duplicate CFLAGS and adaption to support Python 3.13 is_abs in the C compiler (<a href="https://redirect.github.com/pypa/setuptools/issues/4669">#4669</a>). (<a href="https://redirect.github.com/pypa/setuptools/issues/4790">#4790</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pypa/setuptools/commit/5c9d9809dec1b20e2a9da6b4a06355fd6f87a190"><code>5c9d980</code></a> Bump version: 75.7.0 → 75.8.0</li> <li><a href="https://github.com/pypa/setuptools/commit/72c422261b40f2b95a8be6605cc7dd93cec81794"><code>72c4222</code></a> Avoid using Any in function</li> <li><a href="https://github.com/pypa/setuptools/commit/1c61d4799438677c7cfaaccf281312bfb1aee9b3"><code>1c61d47</code></a> Add news fragments for PEP 643</li> <li><a href="https://github.com/pypa/setuptools/commit/f285d01e2661b01e4947a4dca7704790b65f2967"><code>f285d01</code></a> Implement PEP 643 (<code>Dynamic</code> field for core metadata) (<a href="https://redirect.github.com/pypa/setuptools/issues/4698">#4698</a>)</li> <li><a href="https://github.com/pypa/setuptools/commit/a50f6e2e1e8b4610adde709079bec17ad0944197"><code>a50f6e2</code></a> Fix _static.Dict.<strong>ior</strong> for Python 3.8</li> <li><a href="https://github.com/pypa/setuptools/commit/b055895fa337a6e03a29c2ea6493b6b778d2ba46"><code>b055895</code></a> Add extra tests for static/dynamic metadata</li> <li><a href="https://github.com/pypa/setuptools/commit/770b4fc8f6248d862629028f5ee4218975f9516b"><code>770b4fc</code></a> Remove test workaround for unmarked static values from pyproject.toml</li> <li><a href="https://github.com/pypa/setuptools/commit/8b22d73be5e23a9611398d81aedc5164115940ce"><code>8b22d73</code></a> Mark values from pyproject.toml as static</li> <li><a href="https://github.com/pypa/setuptools/commit/f699fd842e3ddedbe937ee33b0bd6ad28e735664"><code>f699fd8</code></a> Fix spelling error</li> <li><a href="https://github.com/pypa/setuptools/commit/8b4c8a3c95f43d771d0fa6e4ebceea3436bc70f7"><code>8b4c8a3</code></a> Add tests for static 'attr' directive</li> <li>Additional commits viewable in <a href="https://github.com/pypa/setuptools/compare/v75.6.0...v75.8.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>
Bumps the required group with 6 updates: | Package | From | To | | --- | --- | --- | | [pydoclint](https://github.com/jsh9/pydoclint) | `0.5.14` | `0.6.0` | | [mkdocs-material](https://github.com/squidfunk/mkdocs-material) | `9.5.49` | `9.6.1` | | [pylint](https://github.com/pylint-dev/pylint) | `3.3.3` | `3.3.4` | | [pytest-asyncio](https://github.com/pytest-dev/pytest-asyncio) | `0.25.1` | `0.25.3` | | [hypothesis](https://github.com/HypothesisWorks/hypothesis) | `6.123.2` | `6.124.7` | | [setuptools](https://github.com/pypa/setuptools) | `75.6.0` | `75.8.0` | Updates `pydoclint` from 0.5.14 to 0.6.0 <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.6.0</h2> <h2>What's Changed</h2> <ul> <li>Add DOC003 to check docstring style mismatch by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/207">jsh9/pydoclint#207</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0">https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0</a></p> <h2>0.5.19</h2> <h2>What's Changed</h2> <ul> <li>Fix false positive DOC405 & DOC201 for bare returns by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/205">jsh9/pydoclint#205</a></li> <li>Add new config option for documenting star arguments by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/206">jsh9/pydoclint#206</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19">https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19</a></p> <h2>0.5.18</h2> <h2>What's Changed</h2> <ul> <li>Fix parsing and comparison of chained custom exceptions by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/203">jsh9/pydoclint#203</a></li> <li>Fix wording in DOC503 violation message by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/204">jsh9/pydoclint#204</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18">https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18</a></p> <h2>0.5.17</h2> <h2>What's Changed</h2> <ul> <li>Add an option to auto regenerate baseline by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/202">jsh9/pydoclint#202</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17">https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17</a></p> <h2>0.5.16</h2> <h2>What's Changed</h2> <ul> <li>👌 Add pre-commit-hook to run pydoclint via flake8 by <a href="https://github.com/s-weigand"><code>@s-weigand</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/200">jsh9/pydoclint#200</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16">https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16</a></p> <h2>0.5.15</h2> <h2>What's Changed</h2> <ul> <li>Throw DOC001 when docstring sections can't be parsed (numpy style) by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/199">jsh9/pydoclint#199</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.14...0.5.15">https://github.com/jsh9/pydoclint/compare/0.5.14...0.5.15</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.6.0] - 2025-01-13</h2> <ul> <li>Added <ul> <li>A new violation code, <code>DOC003</code>, to detect docstring style mismatch (when docstrings are written in the style different from specified)</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0">https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0</a></li> </ul> </li> </ul> <h2>[0.5.19] - 2025-01-12</h2> <ul> <li>Fixed <ul> <li>False positive DOC405 and DOC201 when we have bare return statements together with <code>yield</code> statements</li> </ul> </li> <li>Added <ul> <li>A new config option <code>--should-document-star-arguments</code> (if <code>False</code>, star arguments such as <code>*args</code> and <code>**kwargs</code> should not be documented in the docstring)</li> <li>A pre-commit step to check that "Full diff" is always added in CHANGELOG.md</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19">https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19</a></li> </ul> </li> </ul> <h2>[0.5.18] - 2025-01-12</h2> <ul> <li>Fixed <ul> <li>An issue where custom exceptions such as <code>a.b.c.MyException.from_str</code> cannot be properly parsed and compared</li> <li>A minor wording issue in DOC503 violation message</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18">https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18</a></li> </ul> </li> </ul> <h2>[0.5.17] - 2025-01-12</h2> <ul> <li>Added <ul> <li>A new config option <code>--auto-regenerate-baseline</code> to automatically regenerate the baseline file for every successful <em>pydoclint</em> run</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17">https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17</a></li> </ul> </li> </ul> <h2>[0.5.16] - 2025-01-11</h2> <ul> <li> <p>Added</p> <ul> <li>A pre-commit hook for using <em>pydoclint</em> as a flake8 plugin</li> </ul> </li> <li> <p>Full diff</p> <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16">https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16</a></li> </ul> </li> </ul> <h2>[0.5.15] - 2025-01-10</h2> <ul> <li>Changed</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/jsh9/pydoclint/commit/2e8af22f66de795a7bd0ac661353596e8847bbad"><code>2e8af22</code></a> Add DOC003 to check docstring style mismatch (<a href="https://redirect.github.com/jsh9/pydoclint/issues/207">#207</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/94039b23bedf98b6a6469312d04eecee9797a90f"><code>94039b2</code></a> Add new config option for documenting star arguments (<a href="https://redirect.github.com/jsh9/pydoclint/issues/206">#206</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/22b9b37b6ccda9c19be9757ee2c7e0a86a836b96"><code>22b9b37</code></a> Fix false positive DOC405 & DOC201 for bare returns (<a href="https://redirect.github.com/jsh9/pydoclint/issues/205">#205</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/1f2ea57d39bce59362382a739572504b6ee5dfb0"><code>1f2ea57</code></a> Fix wording in DOC503 violation message (<a href="https://redirect.github.com/jsh9/pydoclint/issues/204">#204</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/91263b841745adef4a052354bf4301107fc803ae"><code>91263b8</code></a> Fix parsing and comparison of chained custom exceptions (<a href="https://redirect.github.com/jsh9/pydoclint/issues/203">#203</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/64ef92306050cd21e51a99b1dccd87a41274f6e5"><code>64ef923</code></a> Add tips, tricks, and pitfalls to README</li> <li><a href="https://github.com/jsh9/pydoclint/commit/fe188f425eae9e77c74f169ff2d16e740e370d0b"><code>fe188f4</code></a> Add an option to auto regenerate baseline (<a href="https://redirect.github.com/jsh9/pydoclint/issues/202">#202</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/7282eb691ca4c1e4742c62fe7c3578bb9348f0fb"><code>7282eb6</code></a> 👌 Add pre-commit-hook to run pydoclint via flake8 (<a href="https://redirect.github.com/jsh9/pydoclint/issues/200">#200</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/4021d8d9b3216e2789bd5f28fa7c761228b9b3d4"><code>4021d8d</code></a> Throw DOC001 when docstring sections can't be parsed (numpy style) (<a href="https://redirect.github.com/jsh9/pydoclint/issues/199">#199</a>)</li> <li>See full diff in <a href="https://github.com/jsh9/pydoclint/compare/0.5.14...0.6.0">compare view</a></li> </ul> </details> <br /> Updates `mkdocs-material` from 9.5.49 to 9.6.1 <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.6.1</h2> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7943">#7943</a>: Tags plugin crashing due to merge error</li> </ul> <h2>mkdocs-material-9.6.0</h2> <ul> <li>Added meta plugin</li> <li>Rewrite of the tags plugin</li> <li>Added support for allow lists in tags plugin</li> <li>Added support for and custom sorting in tags plugin</li> <li>Added support for related links in blog plugin</li> <li>Added support for custom index pages in blog plugin</li> <li>Added support for navigation subtitles</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7924">#7924</a>: Anchors might require two clicks when using instant navigation</li> </ul> <h2>mkdocs-material-9.5.50</h2> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7913">#7913</a>: Social plugin renders attribute lists in page title</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.6.1 (2025-01-31)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7943">#7943</a>: Tags plugin crashing due to merge error</li> </ul> <p>mkdocs-material-9.6.0 (2025-01-31)</p> <ul> <li>Added meta plugin</li> <li>Rewrite of the tags plugin</li> <li>Added support for allow lists in tags plugin</li> <li>Added support for and custom sorting in tags plugin</li> <li>Added support for related links in blog plugin</li> <li>Added support for custom index pages in blog plugin</li> <li>Added support for navigation subtitles</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7924">#7924</a>: Anchors might require two clicks when using instant navigation</li> </ul> <p>mkdocs-material-9.5.50 (2025-01-18)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7913">#7913</a>: Social plugin renders attribute lists in page title</li> </ul> <p>mkdocs-material-9.5.49+insiders-4.53.15 (2025-01-15)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7896">#7896</a>: Scoped tags listings not rendering in subsections</li> </ul> <p>mkdocs-material-9.5.49 (2024-12-16)</p> <ul> <li>Adjusted title color in dark mode for all supported Mermaid.js diagrams</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7803">#7803</a>: Privacy plugin crashes on generated files</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7781">#7781</a>: Mermaid.js flow chart title not visible in dark mode</li> </ul> <p>mkdocs-material-9.5.48 (2024-12-08)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7774">#7774</a>: Disabling social cards doesn't work</li> </ul> <p>mkdocs-material-9.5.47 (2024-12-01)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7750">#7750</a>: Numeric tags break search</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7748">#7748</a>: Blog plugin breaks when using future drafts (9.5.45 regression)</li> </ul> <p>mkdocs-material-9.5.46 (2024-11-25)</p> <ul> <li>Added support for removing preload hints in privacy plugin</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7734">#7734</a>: Code blocks in h5 headlines are uppercased</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7725">#7725</a>: Blog plugin crashing on missing timezone (9.5.45 regression)</li> </ul> <p>mkdocs-material-9.5.45 (2024-11-20)</p> <ul> <li>Reduced size of Docker image through multi-stage build</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7708">#7708</a>: Blog plugin crashing on YAML dates with timezones</li> </ul> <p>mkdocs-material-9.5.44 (2024-11-05)</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/454af62a45622e3ebf14d25b3ab1ea69c1130e8f"><code>454af62</code></a> Prepare 9.6.1 release</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/2d147c72c02b842937320c58b98e20179742a7a6"><code>2d147c7</code></a> Fixed crashing tags plugin</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/34dc4feba7b45c892c3d6ec2c3d8413a5ebdac5f"><code>34dc4fe</code></a> Updated Premium sponsors</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/8edc6f8daaf0e1e7ebb94be99d3f10e46cd8bfbd"><code>8edc6f8</code></a> Updated Premium sponsors</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/0be1d6b3c8b9f3aff1f91be8f7050dcc96a40321"><code>0be1d6b</code></a> Documentation</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/34e301d311d2e753022e1ae23fd851cbfd73be6a"><code>34e301d</code></a> Fixed build badge</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/4ca5214ebf1665fff5de7be140ab6188eb0ec5a5"><code>4ca5214</code></a> Corrected position of related links in blog post</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/627737ae38905578d761fb7c916b5fdcf854973e"><code>627737a</code></a> Merge pull request <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7942">#7942</a> from squidfunk/merge/chipotle</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/49daf573f0cf01cd66a87f6bba3815b775280287"><code>49daf57</code></a> Updated dependencies</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/1416697c6b27725859d522c8763914c2b1fb1615"><code>1416697</code></a> Prepare 9.6.0 release</li> <li>Additional commits viewable in <a href="https://github.com/squidfunk/mkdocs-material/compare/9.5.49...9.6.1">compare view</a></li> </ul> </details> <br /> Updates `pylint` from 3.3.3 to 3.3.4 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pylint-dev/pylint/commit/c2b01c3d0b6410d4c93eb1f32fb28f2116b1e68f"><code>c2b01c3</code></a> Bump pylint to 3.3.4, update changelog</li> <li><a href="https://github.com/pylint-dev/pylint/commit/023cd4355c48e3e0c7702e65fde2d99794b25554"><code>023cd43</code></a> [isort] Permit to use isort 6 (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10204">#10204</a>)</li> <li><a href="https://github.com/pylint-dev/pylint/commit/050acfe49c525cd5e58f7c289d35aee1af4051e5"><code>050acfe</code></a> Calculate linter.config.jobs in cgroupsv2 environments (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10089">#10089</a>) (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10169">#10169</a>)</li> <li><a href="https://github.com/pylint-dev/pylint/commit/d6992b8cf993af7a94a9a3044185fb3ea838ac49"><code>d6992b8</code></a> fix "skipped files" count calculation (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10141">#10141</a>)</li> <li>See full diff in <a href="https://github.com/pylint-dev/pylint/compare/v3.3.3...v3.3.4">compare view</a></li> </ul> </details> <br /> Updates `pytest-asyncio` from 0.25.1 to 0.25.3 <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.25.3</h2> <ul> <li>Avoid errors in cleanup of async generators when event loop is already closed <a href="https://redirect.github.com/pytest-dev/pytest-asyncio/issues/1040">#1040</a></li> </ul> <h2>pytest-asyncio 0.25.2</h2> <ul> <li>Call <code>loop.shutdown_asyncgens()</code> before closing the event loop to ensure async generators are closed in the same manner as <code>asyncio.run</code> does <a href="https://redirect.github.com/pytest-dev/pytest-asyncio/pull/1034">#1034</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/7c501923b00b4aeeb68d4b3b11065f0c3b5cba2c"><code>7c50192</code></a> fix: Avoid errors in cleanup of async generators when event loop is already c...</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/2188cdbbf7b47e653957d3f39aeb7d4d0de80bf4"><code>2188cdb</code></a> build: Prepare release of v0.25.2.</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/c3ad6340b8ad251f3c03d6bbe399f08434059bda"><code>c3ad634</code></a> fix: Shutdown generators before closing event loops.</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/e8ffb10528aaf578dc9ccc7ddbb1fadab56be8ac"><code>e8ffb10</code></a> [pre-commit.ci] pre-commit autoupdate</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/aae43d4f766dfd8f9a643faad41be411888a5d16"><code>aae43d4</code></a> Build(deps): Bump hypothesis in /dependencies/default</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/941e8b5104d86bb1b06b15fd3395f23120203c09"><code>941e8b5</code></a> Build(deps): Bump pygments from 2.18.0 to 2.19.1 in /dependencies/docs</li> <li>See full diff in <a href="https://github.com/pytest-dev/pytest-asyncio/compare/v0.25.1...v0.25.3">compare view</a></li> </ul> </details> <br /> Updates `hypothesis` from 6.123.2 to 6.124.7 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/HypothesisWorks/hypothesis/releases">hypothesis's releases</a>.</em></p> <blockquote> <h2>Hypothesis for Python - version 6.124.7</h2> <p>Internal renamings.</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changes.html#v6-124-7">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.124.6</h2> <p>More work on internal type hints.</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changes.html#v6-124-6">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.124.5</h2> <p>Internal refactoring to make some stateful internals easier to access.</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changes.html#v6-124-5">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.124.4</h2> <p>Refactoring of our internal input generation. This shouldn't lead to any changes in the distribution of test inputs. If you notice any, please open an issue!</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changes.html#v6-124-4">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.124.3</h2> <p>Some Hypothesis internals now use the number of choices as a yardstick of input size, rather than the entropy consumed by those choices. We don't expect this to cause significant behavioral changes.</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changes.html#v6-124-3">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.124.2</h2> <p>Improves our internal caching logic for test cases.</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changes.html#v6-124-2">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.124.1</h2> <p>fuzz_one_input is now implemented using an alternative backend. This brings the interpretation of the fuzzer-provided bytestring closer to the fuzzer mutations, allowing the mutations to work more reliably. We hope to use this backend functionality to improve fuzzing integration (see e.g. <a href="https://redirect.github.com/google/atheris/issues/20">google/atheris#20</a>) in the future!</p> <p><em><a href="https://hypothesis.readthedocs.io/en/latest/changes.html#v6-124-1">The canonical version of these notes (with links) is on readthedocs.</a></em></p> <h2>Hypothesis for Python - version 6.124.0</h2> <p>The Hypothesis example database now uses a new internal format to store examples. This new format is not compatible with the previous format, so stored entries will not carry over.</p> <p>The database is best thought of as a cache that may be invalidated at times. Instead of relying on it for correctness, we recommend using</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/ca262ece0351920a6f67e6defa8213ef3037f035"><code>ca262ec</code></a> Bump hypothesis-python version to 6.124.7 and update changelog</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/3711cf44097354d1787f27c865e38f85a6198bba"><code>3711cf4</code></a> Merge pull request <a href="https://redirect.github.com/HypothesisWorks/hypothesis/issues/4253">#4253</a> from tybug/tcs-cleanup</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/f3d23ded3bef43d8b479ee946456219730da2156"><code>f3d23de</code></a> clean up some ir naming vestiges</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/c363e1d2bcfa3cf8ef6095e79a7d9b51a236a71f"><code>c363e1d</code></a> Bump hypothesis-python version to 6.124.6 and update changelog</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/93fe3f744b01703e0f1e157e4b19c39fd6ae8a5d"><code>93fe3f7</code></a> Merge pull request <a href="https://redirect.github.com/HypothesisWorks/hypothesis/issues/4252">#4252</a> from tybug/more-typing</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/3c32382e10702ba3054a9d7c2e359eaa0267db39"><code>3c32382</code></a> add stacktrace note</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/30422334e868c2bfdc9e1520a084b37fcc4446ec"><code>3042233</code></a> try better output to debug assert_mypy_errors?</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/eaf0bfc25e2711907d8f18ca5363d967afb35cd7"><code>eaf0bfc</code></a> address some resolved TCS todos</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/3533c957977cd2d499f5e2660260c89dacf984a9"><code>3533c95</code></a> address review comments</li> <li><a href="https://github.com/HypothesisWorks/hypothesis/commit/c12cce7e485c8b34fc4e3c388e4dddffbb73ca03"><code>c12cce7</code></a> Bump hypothesis-python version to 6.124.5 and update changelog</li> <li>Additional commits viewable in <a href="https://github.com/HypothesisWorks/hypothesis/compare/hypothesis-python-6.123.2...hypothesis-python-6.124.7">compare view</a></li> </ul> </details> <br /> Updates `setuptools` from 75.6.0 to 75.8.0 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pypa/setuptools/blob/main/NEWS.rst">setuptools's changelog</a>.</em></p> <blockquote> <h1>v75.8.0</h1> <h2>Features</h2> <ul> <li>Implemented <code>Dynamic</code> field for core metadata (as introduced in PEP 643). The existing implementation is currently experimental and the exact approach may change in future releases. (<a href="https://redirect.github.com/pypa/setuptools/issues/4698">#4698</a>)</li> </ul> <h1>v75.7.0</h1> <h2>Features</h2> <ul> <li><code>pypa/distutils#310</code><a href="https://redirect.github.com/pypa/setuptools/issues/4478">#4478</a>)</li> <li>Synced with pypa/distutils@ff11eed0c including bugfix for duplicate CFLAGS and adaption to support Python 3.13 is_abs in the C compiler (<a href="https://redirect.github.com/pypa/setuptools/issues/4669">#4669</a>). (<a href="https://redirect.github.com/pypa/setuptools/issues/4790">#4790</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pypa/setuptools/commit/5c9d9809dec1b20e2a9da6b4a06355fd6f87a190"><code>5c9d980</code></a> Bump version: 75.7.0 → 75.8.0</li> <li><a href="https://github.com/pypa/setuptools/commit/72c422261b40f2b95a8be6605cc7dd93cec81794"><code>72c4222</code></a> Avoid using Any in function</li> <li><a href="https://github.com/pypa/setuptools/commit/1c61d4799438677c7cfaaccf281312bfb1aee9b3"><code>1c61d47</code></a> Add news fragments for PEP 643</li> <li><a href="https://github.com/pypa/setuptools/commit/f285d01e2661b01e4947a4dca7704790b65f2967"><code>f285d01</code></a> Implement PEP 643 (<code>Dynamic</code> field for core metadata) (<a href="https://redirect.github.com/pypa/setuptools/issues/4698">#4698</a>)</li> <li><a href="https://github.com/pypa/setuptools/commit/a50f6e2e1e8b4610adde709079bec17ad0944197"><code>a50f6e2</code></a> Fix _static.Dict.<strong>ior</strong> for Python 3.8</li> <li><a href="https://github.com/pypa/setuptools/commit/b055895fa337a6e03a29c2ea6493b6b778d2ba46"><code>b055895</code></a> Add extra tests for static/dynamic metadata</li> <li><a href="https://github.com/pypa/setuptools/commit/770b4fc8f6248d862629028f5ee4218975f9516b"><code>770b4fc</code></a> Remove test workaround for unmarked static values from pyproject.toml</li> <li><a href="https://github.com/pypa/setuptools/commit/8b22d73be5e23a9611398d81aedc5164115940ce"><code>8b22d73</code></a> Mark values from pyproject.toml as static</li> <li><a href="https://github.com/pypa/setuptools/commit/f699fd842e3ddedbe937ee33b0bd6ad28e735664"><code>f699fd8</code></a> Fix spelling error</li> <li><a href="https://github.com/pypa/setuptools/commit/8b4c8a3c95f43d771d0fa6e4ebceea3436bc70f7"><code>8b4c8a3</code></a> Add tests for static 'attr' directive</li> <li>Additional commits viewable in <a href="https://github.com/pypa/setuptools/compare/v75.6.0...v75.8.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>
Bumps the required group with 5 updates: | Package | From | To | | --- | --- | --- | | [pydoclint](https://github.com/jsh9/pydoclint) | `0.5.14` | `0.6.0` | | [mkdocs-material](https://github.com/squidfunk/mkdocs-material) | `9.5.49` | `9.6.1` | | [pylint](https://github.com/pylint-dev/pylint) | `3.3.3` | `3.3.4` | | [pytest-asyncio](https://github.com/pytest-dev/pytest-asyncio) | `0.25.1` | `0.25.3` | | [setuptools](https://github.com/pypa/setuptools) | `75.6.0` | `75.8.0` | Updates `pydoclint` from 0.5.14 to 0.6.0 <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.6.0</h2> <h2>What's Changed</h2> <ul> <li>Add DOC003 to check docstring style mismatch by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/207">jsh9/pydoclint#207</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0">https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0</a></p> <h2>0.5.19</h2> <h2>What's Changed</h2> <ul> <li>Fix false positive DOC405 & DOC201 for bare returns by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/205">jsh9/pydoclint#205</a></li> <li>Add new config option for documenting star arguments by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/206">jsh9/pydoclint#206</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19">https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19</a></p> <h2>0.5.18</h2> <h2>What's Changed</h2> <ul> <li>Fix parsing and comparison of chained custom exceptions by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/203">jsh9/pydoclint#203</a></li> <li>Fix wording in DOC503 violation message by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/204">jsh9/pydoclint#204</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18">https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18</a></p> <h2>0.5.17</h2> <h2>What's Changed</h2> <ul> <li>Add an option to auto regenerate baseline by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/202">jsh9/pydoclint#202</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17">https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17</a></p> <h2>0.5.16</h2> <h2>What's Changed</h2> <ul> <li>👌 Add pre-commit-hook to run pydoclint via flake8 by <a href="https://github.com/s-weigand"><code>@s-weigand</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/200">jsh9/pydoclint#200</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16">https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16</a></p> <h2>0.5.15</h2> <h2>What's Changed</h2> <ul> <li>Throw DOC001 when docstring sections can't be parsed (numpy style) by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/199">jsh9/pydoclint#199</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.14...0.5.15">https://github.com/jsh9/pydoclint/compare/0.5.14...0.5.15</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.6.0] - 2025-01-13</h2> <ul> <li>Added <ul> <li>A new violation code, <code>DOC003</code>, to detect docstring style mismatch (when docstrings are written in the style different from specified)</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0">https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0</a></li> </ul> </li> </ul> <h2>[0.5.19] - 2025-01-12</h2> <ul> <li>Fixed <ul> <li>False positive DOC405 and DOC201 when we have bare return statements together with <code>yield</code> statements</li> </ul> </li> <li>Added <ul> <li>A new config option <code>--should-document-star-arguments</code> (if <code>False</code>, star arguments such as <code>*args</code> and <code>**kwargs</code> should not be documented in the docstring)</li> <li>A pre-commit step to check that "Full diff" is always added in CHANGELOG.md</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19">https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19</a></li> </ul> </li> </ul> <h2>[0.5.18] - 2025-01-12</h2> <ul> <li>Fixed <ul> <li>An issue where custom exceptions such as <code>a.b.c.MyException.from_str</code> cannot be properly parsed and compared</li> <li>A minor wording issue in DOC503 violation message</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18">https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18</a></li> </ul> </li> </ul> <h2>[0.5.17] - 2025-01-12</h2> <ul> <li>Added <ul> <li>A new config option <code>--auto-regenerate-baseline</code> to automatically regenerate the baseline file for every successful <em>pydoclint</em> run</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17">https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17</a></li> </ul> </li> </ul> <h2>[0.5.16] - 2025-01-11</h2> <ul> <li> <p>Added</p> <ul> <li>A pre-commit hook for using <em>pydoclint</em> as a flake8 plugin</li> </ul> </li> <li> <p>Full diff</p> <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16">https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16</a></li> </ul> </li> </ul> <h2>[0.5.15] - 2025-01-10</h2> <ul> <li>Changed</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/jsh9/pydoclint/commit/2e8af22f66de795a7bd0ac661353596e8847bbad"><code>2e8af22</code></a> Add DOC003 to check docstring style mismatch (<a href="https://redirect.github.com/jsh9/pydoclint/issues/207">#207</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/94039b23bedf98b6a6469312d04eecee9797a90f"><code>94039b2</code></a> Add new config option for documenting star arguments (<a href="https://redirect.github.com/jsh9/pydoclint/issues/206">#206</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/22b9b37b6ccda9c19be9757ee2c7e0a86a836b96"><code>22b9b37</code></a> Fix false positive DOC405 & DOC201 for bare returns (<a href="https://redirect.github.com/jsh9/pydoclint/issues/205">#205</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/1f2ea57d39bce59362382a739572504b6ee5dfb0"><code>1f2ea57</code></a> Fix wording in DOC503 violation message (<a href="https://redirect.github.com/jsh9/pydoclint/issues/204">#204</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/91263b841745adef4a052354bf4301107fc803ae"><code>91263b8</code></a> Fix parsing and comparison of chained custom exceptions (<a href="https://redirect.github.com/jsh9/pydoclint/issues/203">#203</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/64ef92306050cd21e51a99b1dccd87a41274f6e5"><code>64ef923</code></a> Add tips, tricks, and pitfalls to README</li> <li><a href="https://github.com/jsh9/pydoclint/commit/fe188f425eae9e77c74f169ff2d16e740e370d0b"><code>fe188f4</code></a> Add an option to auto regenerate baseline (<a href="https://redirect.github.com/jsh9/pydoclint/issues/202">#202</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/7282eb691ca4c1e4742c62fe7c3578bb9348f0fb"><code>7282eb6</code></a> 👌 Add pre-commit-hook to run pydoclint via flake8 (<a href="https://redirect.github.com/jsh9/pydoclint/issues/200">#200</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/4021d8d9b3216e2789bd5f28fa7c761228b9b3d4"><code>4021d8d</code></a> Throw DOC001 when docstring sections can't be parsed (numpy style) (<a href="https://redirect.github.com/jsh9/pydoclint/issues/199">#199</a>)</li> <li>See full diff in <a href="https://github.com/jsh9/pydoclint/compare/0.5.14...0.6.0">compare view</a></li> </ul> </details> <br /> Updates `mkdocs-material` from 9.5.49 to 9.6.1 <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.6.1</h2> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7943">#7943</a>: Tags plugin crashing due to merge error</li> </ul> <h2>mkdocs-material-9.6.0</h2> <ul> <li>Added meta plugin</li> <li>Rewrite of the tags plugin</li> <li>Added support for allow lists in tags plugin</li> <li>Added support for and custom sorting in tags plugin</li> <li>Added support for related links in blog plugin</li> <li>Added support for custom index pages in blog plugin</li> <li>Added support for navigation subtitles</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7924">#7924</a>: Anchors might require two clicks when using instant navigation</li> </ul> <h2>mkdocs-material-9.5.50</h2> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7913">#7913</a>: Social plugin renders attribute lists in page title</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.6.1 (2025-01-31)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7943">#7943</a>: Tags plugin crashing due to merge error</li> </ul> <p>mkdocs-material-9.6.0 (2025-01-31)</p> <ul> <li>Added meta plugin</li> <li>Rewrite of the tags plugin</li> <li>Added support for allow lists in tags plugin</li> <li>Added support for and custom sorting in tags plugin</li> <li>Added support for related links in blog plugin</li> <li>Added support for custom index pages in blog plugin</li> <li>Added support for navigation subtitles</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7924">#7924</a>: Anchors might require two clicks when using instant navigation</li> </ul> <p>mkdocs-material-9.5.50 (2025-01-18)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7913">#7913</a>: Social plugin renders attribute lists in page title</li> </ul> <p>mkdocs-material-9.5.49+insiders-4.53.15 (2025-01-15)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7896">#7896</a>: Scoped tags listings not rendering in subsections</li> </ul> <p>mkdocs-material-9.5.49 (2024-12-16)</p> <ul> <li>Adjusted title color in dark mode for all supported Mermaid.js diagrams</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7803">#7803</a>: Privacy plugin crashes on generated files</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7781">#7781</a>: Mermaid.js flow chart title not visible in dark mode</li> </ul> <p>mkdocs-material-9.5.48 (2024-12-08)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7774">#7774</a>: Disabling social cards doesn't work</li> </ul> <p>mkdocs-material-9.5.47 (2024-12-01)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7750">#7750</a>: Numeric tags break search</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7748">#7748</a>: Blog plugin breaks when using future drafts (9.5.45 regression)</li> </ul> <p>mkdocs-material-9.5.46 (2024-11-25)</p> <ul> <li>Added support for removing preload hints in privacy plugin</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7734">#7734</a>: Code blocks in h5 headlines are uppercased</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7725">#7725</a>: Blog plugin crashing on missing timezone (9.5.45 regression)</li> </ul> <p>mkdocs-material-9.5.45 (2024-11-20)</p> <ul> <li>Reduced size of Docker image through multi-stage build</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7708">#7708</a>: Blog plugin crashing on YAML dates with timezones</li> </ul> <p>mkdocs-material-9.5.44 (2024-11-05)</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/454af62a45622e3ebf14d25b3ab1ea69c1130e8f"><code>454af62</code></a> Prepare 9.6.1 release</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/2d147c72c02b842937320c58b98e20179742a7a6"><code>2d147c7</code></a> Fixed crashing tags plugin</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/34dc4feba7b45c892c3d6ec2c3d8413a5ebdac5f"><code>34dc4fe</code></a> Updated Premium sponsors</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/8edc6f8daaf0e1e7ebb94be99d3f10e46cd8bfbd"><code>8edc6f8</code></a> Updated Premium sponsors</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/0be1d6b3c8b9f3aff1f91be8f7050dcc96a40321"><code>0be1d6b</code></a> Documentation</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/34e301d311d2e753022e1ae23fd851cbfd73be6a"><code>34e301d</code></a> Fixed build badge</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/4ca5214ebf1665fff5de7be140ab6188eb0ec5a5"><code>4ca5214</code></a> Corrected position of related links in blog post</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/627737ae38905578d761fb7c916b5fdcf854973e"><code>627737a</code></a> Merge pull request <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7942">#7942</a> from squidfunk/merge/chipotle</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/49daf573f0cf01cd66a87f6bba3815b775280287"><code>49daf57</code></a> Updated dependencies</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/1416697c6b27725859d522c8763914c2b1fb1615"><code>1416697</code></a> Prepare 9.6.0 release</li> <li>Additional commits viewable in <a href="https://github.com/squidfunk/mkdocs-material/compare/9.5.49...9.6.1">compare view</a></li> </ul> </details> <br /> Updates `pylint` from 3.3.3 to 3.3.4 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pylint-dev/pylint/commit/c2b01c3d0b6410d4c93eb1f32fb28f2116b1e68f"><code>c2b01c3</code></a> Bump pylint to 3.3.4, update changelog</li> <li><a href="https://github.com/pylint-dev/pylint/commit/023cd4355c48e3e0c7702e65fde2d99794b25554"><code>023cd43</code></a> [isort] Permit to use isort 6 (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10204">#10204</a>)</li> <li><a href="https://github.com/pylint-dev/pylint/commit/050acfe49c525cd5e58f7c289d35aee1af4051e5"><code>050acfe</code></a> Calculate linter.config.jobs in cgroupsv2 environments (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10089">#10089</a>) (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10169">#10169</a>)</li> <li><a href="https://github.com/pylint-dev/pylint/commit/d6992b8cf993af7a94a9a3044185fb3ea838ac49"><code>d6992b8</code></a> fix "skipped files" count calculation (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10141">#10141</a>)</li> <li>See full diff in <a href="https://github.com/pylint-dev/pylint/compare/v3.3.3...v3.3.4">compare view</a></li> </ul> </details> <br /> Updates `pytest-asyncio` from 0.25.1 to 0.25.3 <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.25.3</h2> <ul> <li>Avoid errors in cleanup of async generators when event loop is already closed <a href="https://redirect.github.com/pytest-dev/pytest-asyncio/issues/1040">#1040</a></li> </ul> <h2>pytest-asyncio 0.25.2</h2> <ul> <li>Call <code>loop.shutdown_asyncgens()</code> before closing the event loop to ensure async generators are closed in the same manner as <code>asyncio.run</code> does <a href="https://redirect.github.com/pytest-dev/pytest-asyncio/pull/1034">#1034</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/7c501923b00b4aeeb68d4b3b11065f0c3b5cba2c"><code>7c50192</code></a> fix: Avoid errors in cleanup of async generators when event loop is already c...</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/2188cdbbf7b47e653957d3f39aeb7d4d0de80bf4"><code>2188cdb</code></a> build: Prepare release of v0.25.2.</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/c3ad6340b8ad251f3c03d6bbe399f08434059bda"><code>c3ad634</code></a> fix: Shutdown generators before closing event loops.</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/e8ffb10528aaf578dc9ccc7ddbb1fadab56be8ac"><code>e8ffb10</code></a> [pre-commit.ci] pre-commit autoupdate</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/aae43d4f766dfd8f9a643faad41be411888a5d16"><code>aae43d4</code></a> Build(deps): Bump hypothesis in /dependencies/default</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/941e8b5104d86bb1b06b15fd3395f23120203c09"><code>941e8b5</code></a> Build(deps): Bump pygments from 2.18.0 to 2.19.1 in /dependencies/docs</li> <li>See full diff in <a href="https://github.com/pytest-dev/pytest-asyncio/compare/v0.25.1...v0.25.3">compare view</a></li> </ul> </details> <br /> Updates `setuptools` from 75.6.0 to 75.8.0 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pypa/setuptools/blob/main/NEWS.rst">setuptools's changelog</a>.</em></p> <blockquote> <h1>v75.8.0</h1> <h2>Features</h2> <ul> <li>Implemented <code>Dynamic</code> field for core metadata (as introduced in PEP 643). The existing implementation is currently experimental and the exact approach may change in future releases. (<a href="https://redirect.github.com/pypa/setuptools/issues/4698">#4698</a>)</li> </ul> <h1>v75.7.0</h1> <h2>Features</h2> <ul> <li><code>pypa/distutils#310</code><a href="https://redirect.github.com/pypa/setuptools/issues/4478">#4478</a>)</li> <li>Synced with pypa/distutils@ff11eed0c including bugfix for duplicate CFLAGS and adaption to support Python 3.13 is_abs in the C compiler (<a href="https://redirect.github.com/pypa/setuptools/issues/4669">#4669</a>). (<a href="https://redirect.github.com/pypa/setuptools/issues/4790">#4790</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pypa/setuptools/commit/5c9d9809dec1b20e2a9da6b4a06355fd6f87a190"><code>5c9d980</code></a> Bump version: 75.7.0 → 75.8.0</li> <li><a href="https://github.com/pypa/setuptools/commit/72c422261b40f2b95a8be6605cc7dd93cec81794"><code>72c4222</code></a> Avoid using Any in function</li> <li><a href="https://github.com/pypa/setuptools/commit/1c61d4799438677c7cfaaccf281312bfb1aee9b3"><code>1c61d47</code></a> Add news fragments for PEP 643</li> <li><a href="https://github.com/pypa/setuptools/commit/f285d01e2661b01e4947a4dca7704790b65f2967"><code>f285d01</code></a> Implement PEP 643 (<code>Dynamic</code> field for core metadata) (<a href="https://redirect.github.com/pypa/setuptools/issues/4698">#4698</a>)</li> <li><a href="https://github.com/pypa/setuptools/commit/a50f6e2e1e8b4610adde709079bec17ad0944197"><code>a50f6e2</code></a> Fix _static.Dict.<strong>ior</strong> for Python 3.8</li> <li><a href="https://github.com/pypa/setuptools/commit/b055895fa337a6e03a29c2ea6493b6b778d2ba46"><code>b055895</code></a> Add extra tests for static/dynamic metadata</li> <li><a href="https://github.com/pypa/setuptools/commit/770b4fc8f6248d862629028f5ee4218975f9516b"><code>770b4fc</code></a> Remove test workaround for unmarked static values from pyproject.toml</li> <li><a href="https://github.com/pypa/setuptools/commit/8b22d73be5e23a9611398d81aedc5164115940ce"><code>8b22d73</code></a> Mark values from pyproject.toml as static</li> <li><a href="https://github.com/pypa/setuptools/commit/f699fd842e3ddedbe937ee33b0bd6ad28e735664"><code>f699fd8</code></a> Fix spelling error</li> <li><a href="https://github.com/pypa/setuptools/commit/8b4c8a3c95f43d771d0fa6e4ebceea3436bc70f7"><code>8b4c8a3</code></a> Add tests for static 'attr' directive</li> <li>Additional commits viewable in <a href="https://github.com/pypa/setuptools/compare/v75.6.0...v75.8.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>
Bumps the required group with 5 updates: | Package | From | To | | --- | --- | --- | | [pydoclint](https://github.com/jsh9/pydoclint) | `0.5.14` | `0.6.0` | | [mkdocs-material](https://github.com/squidfunk/mkdocs-material) | `9.5.49` | `9.6.1` | | [pylint](https://github.com/pylint-dev/pylint) | `3.3.3` | `3.3.4` | | [pytest-asyncio](https://github.com/pytest-dev/pytest-asyncio) | `0.25.1` | `0.25.3` | | [setuptools](https://github.com/pypa/setuptools) | `75.6.0` | `75.8.0` | Updates `pydoclint` from 0.5.14 to 0.6.0 <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.6.0</h2> <h2>What's Changed</h2> <ul> <li>Add DOC003 to check docstring style mismatch by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/207">jsh9/pydoclint#207</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0">https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0</a></p> <h2>0.5.19</h2> <h2>What's Changed</h2> <ul> <li>Fix false positive DOC405 & DOC201 for bare returns by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/205">jsh9/pydoclint#205</a></li> <li>Add new config option for documenting star arguments by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/206">jsh9/pydoclint#206</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19">https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19</a></p> <h2>0.5.18</h2> <h2>What's Changed</h2> <ul> <li>Fix parsing and comparison of chained custom exceptions by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/203">jsh9/pydoclint#203</a></li> <li>Fix wording in DOC503 violation message by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/204">jsh9/pydoclint#204</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18">https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18</a></p> <h2>0.5.17</h2> <h2>What's Changed</h2> <ul> <li>Add an option to auto regenerate baseline by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/202">jsh9/pydoclint#202</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17">https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17</a></p> <h2>0.5.16</h2> <h2>What's Changed</h2> <ul> <li>👌 Add pre-commit-hook to run pydoclint via flake8 by <a href="https://github.com/s-weigand"><code>@s-weigand</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/200">jsh9/pydoclint#200</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16">https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16</a></p> <h2>0.5.15</h2> <h2>What's Changed</h2> <ul> <li>Throw DOC001 when docstring sections can't be parsed (numpy style) by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/199">jsh9/pydoclint#199</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.14...0.5.15">https://github.com/jsh9/pydoclint/compare/0.5.14...0.5.15</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.6.0] - 2025-01-13</h2> <ul> <li>Added <ul> <li>A new violation code, <code>DOC003</code>, to detect docstring style mismatch (when docstrings are written in the style different from specified)</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0">https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0</a></li> </ul> </li> </ul> <h2>[0.5.19] - 2025-01-12</h2> <ul> <li>Fixed <ul> <li>False positive DOC405 and DOC201 when we have bare return statements together with <code>yield</code> statements</li> </ul> </li> <li>Added <ul> <li>A new config option <code>--should-document-star-arguments</code> (if <code>False</code>, star arguments such as <code>*args</code> and <code>**kwargs</code> should not be documented in the docstring)</li> <li>A pre-commit step to check that "Full diff" is always added in CHANGELOG.md</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19">https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19</a></li> </ul> </li> </ul> <h2>[0.5.18] - 2025-01-12</h2> <ul> <li>Fixed <ul> <li>An issue where custom exceptions such as <code>a.b.c.MyException.from_str</code> cannot be properly parsed and compared</li> <li>A minor wording issue in DOC503 violation message</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18">https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18</a></li> </ul> </li> </ul> <h2>[0.5.17] - 2025-01-12</h2> <ul> <li>Added <ul> <li>A new config option <code>--auto-regenerate-baseline</code> to automatically regenerate the baseline file for every successful <em>pydoclint</em> run</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17">https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17</a></li> </ul> </li> </ul> <h2>[0.5.16] - 2025-01-11</h2> <ul> <li> <p>Added</p> <ul> <li>A pre-commit hook for using <em>pydoclint</em> as a flake8 plugin</li> </ul> </li> <li> <p>Full diff</p> <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16">https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16</a></li> </ul> </li> </ul> <h2>[0.5.15] - 2025-01-10</h2> <ul> <li>Changed</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/jsh9/pydoclint/commit/2e8af22f66de795a7bd0ac661353596e8847bbad"><code>2e8af22</code></a> Add DOC003 to check docstring style mismatch (<a href="https://redirect.github.com/jsh9/pydoclint/issues/207">#207</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/94039b23bedf98b6a6469312d04eecee9797a90f"><code>94039b2</code></a> Add new config option for documenting star arguments (<a href="https://redirect.github.com/jsh9/pydoclint/issues/206">#206</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/22b9b37b6ccda9c19be9757ee2c7e0a86a836b96"><code>22b9b37</code></a> Fix false positive DOC405 & DOC201 for bare returns (<a href="https://redirect.github.com/jsh9/pydoclint/issues/205">#205</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/1f2ea57d39bce59362382a739572504b6ee5dfb0"><code>1f2ea57</code></a> Fix wording in DOC503 violation message (<a href="https://redirect.github.com/jsh9/pydoclint/issues/204">#204</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/91263b841745adef4a052354bf4301107fc803ae"><code>91263b8</code></a> Fix parsing and comparison of chained custom exceptions (<a href="https://redirect.github.com/jsh9/pydoclint/issues/203">#203</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/64ef92306050cd21e51a99b1dccd87a41274f6e5"><code>64ef923</code></a> Add tips, tricks, and pitfalls to README</li> <li><a href="https://github.com/jsh9/pydoclint/commit/fe188f425eae9e77c74f169ff2d16e740e370d0b"><code>fe188f4</code></a> Add an option to auto regenerate baseline (<a href="https://redirect.github.com/jsh9/pydoclint/issues/202">#202</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/7282eb691ca4c1e4742c62fe7c3578bb9348f0fb"><code>7282eb6</code></a> 👌 Add pre-commit-hook to run pydoclint via flake8 (<a href="https://redirect.github.com/jsh9/pydoclint/issues/200">#200</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/4021d8d9b3216e2789bd5f28fa7c761228b9b3d4"><code>4021d8d</code></a> Throw DOC001 when docstring sections can't be parsed (numpy style) (<a href="https://redirect.github.com/jsh9/pydoclint/issues/199">#199</a>)</li> <li>See full diff in <a href="https://github.com/jsh9/pydoclint/compare/0.5.14...0.6.0">compare view</a></li> </ul> </details> <br /> Updates `mkdocs-material` from 9.5.49 to 9.6.1 <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.6.1</h2> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7943">#7943</a>: Tags plugin crashing due to merge error</li> </ul> <h2>mkdocs-material-9.6.0</h2> <ul> <li>Added meta plugin</li> <li>Rewrite of the tags plugin</li> <li>Added support for allow lists in tags plugin</li> <li>Added support for and custom sorting in tags plugin</li> <li>Added support for related links in blog plugin</li> <li>Added support for custom index pages in blog plugin</li> <li>Added support for navigation subtitles</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7924">#7924</a>: Anchors might require two clicks when using instant navigation</li> </ul> <h2>mkdocs-material-9.5.50</h2> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7913">#7913</a>: Social plugin renders attribute lists in page title</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.6.1 (2025-01-31)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7943">#7943</a>: Tags plugin crashing due to merge error</li> </ul> <p>mkdocs-material-9.6.0 (2025-01-31)</p> <ul> <li>Added meta plugin</li> <li>Rewrite of the tags plugin</li> <li>Added support for allow lists in tags plugin</li> <li>Added support for and custom sorting in tags plugin</li> <li>Added support for related links in blog plugin</li> <li>Added support for custom index pages in blog plugin</li> <li>Added support for navigation subtitles</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7924">#7924</a>: Anchors might require two clicks when using instant navigation</li> </ul> <p>mkdocs-material-9.5.50 (2025-01-18)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7913">#7913</a>: Social plugin renders attribute lists in page title</li> </ul> <p>mkdocs-material-9.5.49+insiders-4.53.15 (2025-01-15)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7896">#7896</a>: Scoped tags listings not rendering in subsections</li> </ul> <p>mkdocs-material-9.5.49 (2024-12-16)</p> <ul> <li>Adjusted title color in dark mode for all supported Mermaid.js diagrams</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7803">#7803</a>: Privacy plugin crashes on generated files</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7781">#7781</a>: Mermaid.js flow chart title not visible in dark mode</li> </ul> <p>mkdocs-material-9.5.48 (2024-12-08)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7774">#7774</a>: Disabling social cards doesn't work</li> </ul> <p>mkdocs-material-9.5.47 (2024-12-01)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7750">#7750</a>: Numeric tags break search</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7748">#7748</a>: Blog plugin breaks when using future drafts (9.5.45 regression)</li> </ul> <p>mkdocs-material-9.5.46 (2024-11-25)</p> <ul> <li>Added support for removing preload hints in privacy plugin</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7734">#7734</a>: Code blocks in h5 headlines are uppercased</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7725">#7725</a>: Blog plugin crashing on missing timezone (9.5.45 regression)</li> </ul> <p>mkdocs-material-9.5.45 (2024-11-20)</p> <ul> <li>Reduced size of Docker image through multi-stage build</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7708">#7708</a>: Blog plugin crashing on YAML dates with timezones</li> </ul> <p>mkdocs-material-9.5.44 (2024-11-05)</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/454af62a45622e3ebf14d25b3ab1ea69c1130e8f"><code>454af62</code></a> Prepare 9.6.1 release</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/2d147c72c02b842937320c58b98e20179742a7a6"><code>2d147c7</code></a> Fixed crashing tags plugin</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/34dc4feba7b45c892c3d6ec2c3d8413a5ebdac5f"><code>34dc4fe</code></a> Updated Premium sponsors</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/8edc6f8daaf0e1e7ebb94be99d3f10e46cd8bfbd"><code>8edc6f8</code></a> Updated Premium sponsors</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/0be1d6b3c8b9f3aff1f91be8f7050dcc96a40321"><code>0be1d6b</code></a> Documentation</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/34e301d311d2e753022e1ae23fd851cbfd73be6a"><code>34e301d</code></a> Fixed build badge</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/4ca5214ebf1665fff5de7be140ab6188eb0ec5a5"><code>4ca5214</code></a> Corrected position of related links in blog post</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/627737ae38905578d761fb7c916b5fdcf854973e"><code>627737a</code></a> Merge pull request <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7942">#7942</a> from squidfunk/merge/chipotle</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/49daf573f0cf01cd66a87f6bba3815b775280287"><code>49daf57</code></a> Updated dependencies</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/1416697c6b27725859d522c8763914c2b1fb1615"><code>1416697</code></a> Prepare 9.6.0 release</li> <li>Additional commits viewable in <a href="https://github.com/squidfunk/mkdocs-material/compare/9.5.49...9.6.1">compare view</a></li> </ul> </details> <br /> Updates `pylint` from 3.3.3 to 3.3.4 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pylint-dev/pylint/commit/c2b01c3d0b6410d4c93eb1f32fb28f2116b1e68f"><code>c2b01c3</code></a> Bump pylint to 3.3.4, update changelog</li> <li><a href="https://github.com/pylint-dev/pylint/commit/023cd4355c48e3e0c7702e65fde2d99794b25554"><code>023cd43</code></a> [isort] Permit to use isort 6 (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10204">#10204</a>)</li> <li><a href="https://github.com/pylint-dev/pylint/commit/050acfe49c525cd5e58f7c289d35aee1af4051e5"><code>050acfe</code></a> Calculate linter.config.jobs in cgroupsv2 environments (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10089">#10089</a>) (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10169">#10169</a>)</li> <li><a href="https://github.com/pylint-dev/pylint/commit/d6992b8cf993af7a94a9a3044185fb3ea838ac49"><code>d6992b8</code></a> fix "skipped files" count calculation (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10141">#10141</a>)</li> <li>See full diff in <a href="https://github.com/pylint-dev/pylint/compare/v3.3.3...v3.3.4">compare view</a></li> </ul> </details> <br /> Updates `pytest-asyncio` from 0.25.1 to 0.25.3 <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.25.3</h2> <ul> <li>Avoid errors in cleanup of async generators when event loop is already closed <a href="https://redirect.github.com/pytest-dev/pytest-asyncio/issues/1040">#1040</a></li> </ul> <h2>pytest-asyncio 0.25.2</h2> <ul> <li>Call <code>loop.shutdown_asyncgens()</code> before closing the event loop to ensure async generators are closed in the same manner as <code>asyncio.run</code> does <a href="https://redirect.github.com/pytest-dev/pytest-asyncio/pull/1034">#1034</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/7c501923b00b4aeeb68d4b3b11065f0c3b5cba2c"><code>7c50192</code></a> fix: Avoid errors in cleanup of async generators when event loop is already c...</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/2188cdbbf7b47e653957d3f39aeb7d4d0de80bf4"><code>2188cdb</code></a> build: Prepare release of v0.25.2.</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/c3ad6340b8ad251f3c03d6bbe399f08434059bda"><code>c3ad634</code></a> fix: Shutdown generators before closing event loops.</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/e8ffb10528aaf578dc9ccc7ddbb1fadab56be8ac"><code>e8ffb10</code></a> [pre-commit.ci] pre-commit autoupdate</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/aae43d4f766dfd8f9a643faad41be411888a5d16"><code>aae43d4</code></a> Build(deps): Bump hypothesis in /dependencies/default</li> <li><a href="https://github.com/pytest-dev/pytest-asyncio/commit/941e8b5104d86bb1b06b15fd3395f23120203c09"><code>941e8b5</code></a> Build(deps): Bump pygments from 2.18.0 to 2.19.1 in /dependencies/docs</li> <li>See full diff in <a href="https://github.com/pytest-dev/pytest-asyncio/compare/v0.25.1...v0.25.3">compare view</a></li> </ul> </details> <br /> Updates `setuptools` from 75.6.0 to 75.8.0 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pypa/setuptools/blob/main/NEWS.rst">setuptools's changelog</a>.</em></p> <blockquote> <h1>v75.8.0</h1> <h2>Features</h2> <ul> <li>Implemented <code>Dynamic</code> field for core metadata (as introduced in PEP 643). The existing implementation is currently experimental and the exact approach may change in future releases. (<a href="https://redirect.github.com/pypa/setuptools/issues/4698">#4698</a>)</li> </ul> <h1>v75.7.0</h1> <h2>Features</h2> <ul> <li><code>pypa/distutils#310</code><a href="https://redirect.github.com/pypa/setuptools/issues/4478">#4478</a>)</li> <li>Synced with pypa/distutils@ff11eed0c including bugfix for duplicate CFLAGS and adaption to support Python 3.13 is_abs in the C compiler (<a href="https://redirect.github.com/pypa/setuptools/issues/4669">#4669</a>). (<a href="https://redirect.github.com/pypa/setuptools/issues/4790">#4790</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pypa/setuptools/commit/5c9d9809dec1b20e2a9da6b4a06355fd6f87a190"><code>5c9d980</code></a> Bump version: 75.7.0 → 75.8.0</li> <li><a href="https://github.com/pypa/setuptools/commit/72c422261b40f2b95a8be6605cc7dd93cec81794"><code>72c4222</code></a> Avoid using Any in function</li> <li><a href="https://github.com/pypa/setuptools/commit/1c61d4799438677c7cfaaccf281312bfb1aee9b3"><code>1c61d47</code></a> Add news fragments for PEP 643</li> <li><a href="https://github.com/pypa/setuptools/commit/f285d01e2661b01e4947a4dca7704790b65f2967"><code>f285d01</code></a> Implement PEP 643 (<code>Dynamic</code> field for core metadata) (<a href="https://redirect.github.com/pypa/setuptools/issues/4698">#4698</a>)</li> <li><a href="https://github.com/pypa/setuptools/commit/a50f6e2e1e8b4610adde709079bec17ad0944197"><code>a50f6e2</code></a> Fix _static.Dict.<strong>ior</strong> for Python 3.8</li> <li><a href="https://github.com/pypa/setuptools/commit/b055895fa337a6e03a29c2ea6493b6b778d2ba46"><code>b055895</code></a> Add extra tests for static/dynamic metadata</li> <li><a href="https://github.com/pypa/setuptools/commit/770b4fc8f6248d862629028f5ee4218975f9516b"><code>770b4fc</code></a> Remove test workaround for unmarked static values from pyproject.toml</li> <li><a href="https://github.com/pypa/setuptools/commit/8b22d73be5e23a9611398d81aedc5164115940ce"><code>8b22d73</code></a> Mark values from pyproject.toml as static</li> <li><a href="https://github.com/pypa/setuptools/commit/f699fd842e3ddedbe937ee33b0bd6ad28e735664"><code>f699fd8</code></a> Fix spelling error</li> <li><a href="https://github.com/pypa/setuptools/commit/8b4c8a3c95f43d771d0fa6e4ebceea3436bc70f7"><code>8b4c8a3</code></a> Add tests for static 'attr' directive</li> <li>Additional commits viewable in <a href="https://github.com/pypa/setuptools/compare/v75.6.0...v75.8.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>
Bumps the python-root group with 8 updates in the / directory: | Package | From | To | | --- | --- | --- | | [flake8](https://github.com/pycqa/flake8) | `3.8.4` | `7.1.1` | | [isort](https://github.com/pycqa/isort) | `5.7.0` | `6.0.0` | | [build](https://github.com/pypa/build) | `0.3.0` | `1.2.2.post1` | | [twine](https://github.com/pypa/twine) | `3.3.0` | `6.1.0` | | [wheel](https://github.com/pypa/wheel) | `0.38.1` | `0.45.1` | | [setuptools](https://github.com/pypa/setuptools) | `70.0.0` | `75.8.0` | | [protobuf](https://github.com/protocolbuffers/protobuf) | `5.27.0` | `5.29.3` | | [jinja2](https://github.com/pallets/jinja) | `3.1.4` | `3.1.5` | Updates `flake8` from 3.8.4 to 7.1.1 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/PyCQA/flake8/commit/cf1542cefa3e766670b2066dd75c4571d682a649"><code>cf1542c</code></a> Release 7.1.1</li> <li><a href="https://github.com/PyCQA/flake8/commit/939ea3d8d9d5d7d9f348420036af52df74f5ca09"><code>939ea3d</code></a> Merge pull request <a href="https://redirect.github.com/pycqa/flake8/issues/1949">#1949</a> from stephenfin/issue-1948</li> <li><a href="https://github.com/PyCQA/flake8/commit/bdcd5c2c0afadaf7c92a4b26d96055cecdd38cf3"><code>bdcd5c2</code></a> Handle escaped braces in f-strings</li> <li><a href="https://github.com/PyCQA/flake8/commit/2a811cc4d2aaed3e8eb5a9f04f08ccc8af7c0791"><code>2a811cc</code></a> Merge pull request <a href="https://redirect.github.com/pycqa/flake8/issues/1946">#1946</a> from Viicos/patch-1</li> <li><a href="https://github.com/PyCQA/flake8/commit/10314ad9e5236f1ddf70cb25c2854c93c0840b66"><code>10314ad</code></a> Fix wording of plugins documentation</li> <li><a href="https://github.com/PyCQA/flake8/commit/65a38c42a7f1a05ff8d99b313160754fc9b7a0d8"><code>65a38c4</code></a> Release 7.1.0</li> <li><a href="https://github.com/PyCQA/flake8/commit/34c97e046a459b0682c82660f16c620369abd6b7"><code>34c97e0</code></a> Merge pull request <a href="https://redirect.github.com/pycqa/flake8/issues/1939">#1939</a> from PyCQA/new-pycodestyle</li> <li><a href="https://github.com/PyCQA/flake8/commit/defd315175b7b77472affb61a410e5720dabdc1a"><code>defd315</code></a> latest pycodestyle</li> <li><a href="https://github.com/PyCQA/flake8/commit/408d4d695c71b0b232cea576876e757c87a3379c"><code>408d4d6</code></a> Merge pull request <a href="https://redirect.github.com/pycqa/flake8/issues/1930">#1930</a> from mzagol/patch-1</li> <li><a href="https://github.com/PyCQA/flake8/commit/866ad729c64eea359960a8ac4e3f1201104ee55c"><code>866ad72</code></a> Add --extend-exclude to the TOC</li> <li>Additional commits viewable in <a href="https://github.com/pycqa/flake8/compare/3.8.4...7.1.1">compare view</a></li> </ul> </details> <br /> Updates `isort` from 5.7.0 to 6.0.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/pycqa/isort/releases">isort's releases</a>.</em></p> <blockquote> <h2>6.0.0</h2> <h2>Changes</h2> <h2>:boom: Breaking Changes</h2> <ul> <li>Remove support for Python 3.8 (<a href="https://redirect.github.com/pycqa/isort/issues/2327">#2327</a>) <a href="https://github.com/DanielNoord"><code>@DanielNoord</code></a></li> </ul> <h2>:rocket: Features</h2> <ul> <li>Python 3.13 support (<a href="https://redirect.github.com/pycqa/isort/issues/2306">#2306</a>) <a href="https://github.com/mayty"><code>@mayty</code></a></li> <li>Updates round 3 (<a href="https://redirect.github.com/pycqa/isort/issues/2334">#2334</a>) <a href="https://github.com/matthewhughes934"><code>@matthewhughes934</code></a></li> <li>Speed up exists_case_sensitive calls (<a href="https://redirect.github.com/pycqa/isort/issues/2264">#2264</a>) <a href="https://github.com/correctmost"><code>@correctmost</code></a></li> <li>nit: Fix deprecation message link (<a href="https://redirect.github.com/pycqa/isort/issues/2220">#2220</a>) <a href="https://github.com/syou6162"><code>@syou6162</code></a></li> <li>Ensure that split_on_trailing_comma works with <code>as</code> imports (<a href="https://redirect.github.com/pycqa/isort/issues/2340">#2340</a>) <a href="https://github.com/DanielNoord"><code>@DanielNoord</code></a></li> <li>Black profile: enable magic comma (<a href="https://redirect.github.com/pycqa/isort/issues/2236">#2236</a>) <a href="https://github.com/MrMino"><code>@MrMino</code></a></li> <li>Fix google style test (<a href="https://redirect.github.com/pycqa/isort/issues/2336">#2336</a>) <a href="https://github.com/DanielNoord"><code>@DanielNoord</code></a></li> <li>Update line_length and single_line_exclusions in google profile (<a href="https://redirect.github.com/pycqa/isort/issues/2149">#2149</a>) <a href="https://github.com/jagapiou"><code>@jagapiou</code></a></li> <li>Updates round 2 (<a href="https://redirect.github.com/pycqa/isort/issues/2329">#2329</a>) <a href="https://github.com/matthewhughes934"><code>@matthewhughes934</code></a></li> <li>Dependency updates round 1 (<a href="https://redirect.github.com/pycqa/isort/issues/2325">#2325</a>) <a href="https://github.com/matthewhughes934"><code>@matthewhughes934</code></a></li> <li>Run <code>pre-commit autoupdate</code> (<a href="https://redirect.github.com/pycqa/isort/issues/2321">#2321</a>) <a href="https://github.com/kurtmckee"><code>@kurtmckee</code></a></li> </ul> <h2>:beetle: Fixes</h2> <ul> <li>Allow <code>--diff</code> to be used with <code>--jobs</code> (<a href="https://redirect.github.com/pycqa/isort/issues/2302">#2302</a>) <a href="https://github.com/mnakama"><code>@mnakama</code></a></li> <li><code>wemake</code> has 80 chars hard limit, not 79 (<a href="https://redirect.github.com/pycqa/isort/issues/2241">#2241</a>) <a href="https://github.com/sobolevn"><code>@sobolevn</code></a></li> <li>Fix errors on <code>main</code> (<a href="https://redirect.github.com/pycqa/isort/issues/2320">#2320</a>) <a href="https://github.com/DanielNoord"><code>@DanielNoord</code></a></li> <li>Fixed syntax error (<a href="https://redirect.github.com/pycqa/isort/issues/2289">#2289</a>) <a href="https://github.com/Sergio-prog"><code>@Sergio-prog</code></a></li> <li>fix: typo (<a href="https://redirect.github.com/pycqa/isort/issues/2298">#2298</a>) <a href="https://github.com/Rotzbua"><code>@Rotzbua</code></a></li> <li>Fix <code>sort_reexports</code> code mangling (<a href="https://redirect.github.com/pycqa/isort/issues/2283">#2283</a>) <a href="https://github.com/Helveg"><code>@Helveg</code></a></li> <li>fix: correct group by package tokenization (<a href="https://redirect.github.com/pycqa/isort/issues/2136">#2136</a>) <a href="https://github.com/glasnt"><code>@glasnt</code></a></li> <li>Fix isort-action usage documentation (<a href="https://redirect.github.com/pycqa/isort/issues/2297">#2297</a>) <a href="https://github.com/jamescurtin"><code>@jamescurtin</code></a></li> <li>Fix CDN for Ace (<a href="https://redirect.github.com/pycqa/isort/issues/2127">#2127</a>) <a href="https://github.com/abitrolly"><code>@abitrolly</code></a></li> <li>Fix help text (<a href="https://redirect.github.com/pycqa/isort/issues/2229">#2229</a>) <a href="https://github.com/stweil"><code>@stweil</code></a></li> <li>docs: fix spelling mistake (<a href="https://redirect.github.com/pycqa/isort/issues/2249">#2249</a>) <a href="https://github.com/cachho"><code>@cachho</code></a></li> </ul> <h2>:construction_worker: Continuous Integration</h2> <ul> <li>UV replacement of Poetry (<a href="https://redirect.github.com/pycqa/isort/issues/2349">#2349</a>) <a href="https://github.com/staticdev"><code>@staticdev</code></a></li> <li>Make actions happy (<a href="https://redirect.github.com/pycqa/isort/issues/2311">#2311</a>) <a href="https://github.com/matthewhughes934"><code>@matthewhughes934</code></a></li> <li>Fix GitHub Actions badges (<a href="https://redirect.github.com/pycqa/isort/issues/2326">#2326</a>) <a href="https://github.com/hugovk"><code>@hugovk</code></a></li> <li>Eliminate <code>actions/cache@v2</code> usage (<a href="https://redirect.github.com/pycqa/isort/issues/2322">#2322</a>) <a href="https://github.com/kurtmckee"><code>@kurtmckee</code></a></li> <li>feat: add dependabot for GH action update (<a href="https://redirect.github.com/pycqa/isort/issues/2300">#2300</a>) <a href="https://github.com/Rotzbua"><code>@Rotzbua</code></a></li> <li>Update stage names for <code>pre-commit</code> (<a href="https://redirect.github.com/pycqa/isort/issues/2296">#2296</a>) <a href="https://github.com/matthewhughes934"><code>@matthewhughes934</code></a></li> </ul> <h2>:package: Dependencies</h2> <ul> <li>Bump <code>poetry</code> to <code>2.0.1</code> (<a href="https://redirect.github.com/pycqa/isort/issues/2341">#2341</a>) <a href="https://github.com/DanielNoord"><code>@DanielNoord</code></a></li> <li>Fix misc unsafe dependencies (<a href="https://redirect.github.com/pycqa/isort/issues/2345">#2345</a>) <a href="https://github.com/staticdev"><code>@staticdev</code></a></li> <li>Bump the github-actions group across 1 directory with 5 updates (<a href="https://redirect.github.com/pycqa/isort/issues/2324">#2324</a>) @<a href="https://github.com/apps/dependabot">dependabot[bot]</a></li> <li>Bump gitpython from 3.1.40 to 3.1.41 (<a href="https://redirect.github.com/pycqa/isort/issues/2223">#2223</a>) @<a href="https://github.com/apps/dependabot">dependabot[bot]</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/PyCQA/isort/blob/main/CHANGELOG.md">isort's changelog</a>.</em></p> <blockquote> <h1>Changelog</h1> <p>NOTE: isort follows the <a href="https://semver.org/">semver</a> versioning standard. Find out more about isort's release policy <a href="https://pycqa.github.io/isort/docs/major_releases/release_policy">here</a>.</p> <h3>5.13.2 December 13 2023</h3> <ul> <li>Apply the bracket fix from issue <a href="https://redirect.github.com/pycqa/isort/issues/471">#471</a> only for use_parentheses=True (<a href="https://redirect.github.com/pycqa/isort/issues/2184">#2184</a>) <a href="https://github.com/bp72"><code>@bp72</code></a></li> <li>Confine pre-commit to stages (<a href="https://redirect.github.com/pycqa/isort/issues/2213">#2213</a>) <a href="https://github.com/davidculley"><code>@davidculley</code></a></li> <li>Fixed colors extras (<a href="https://redirect.github.com/pycqa/isort/issues/2212">#2212</a>) <a href="https://github.com/staticdev"><code>@staticdev</code></a></li> </ul> <h3>5.13.1 December 11 2023</h3> <ul> <li>Fixed integration tests (<a href="https://redirect.github.com/pycqa/isort/issues/2208">#2208</a>) <a href="https://github.com/bp72"><code>@bp72</code></a></li> <li>Fixed normalizing imports from more than one level of parent modules (issue/2152) (<a href="https://redirect.github.com/pycqa/isort/issues/2191">#2191</a>) <a href="https://github.com/bp72"><code>@bp72</code></a></li> <li>Remove optional dependencies without extras (<a href="https://redirect.github.com/pycqa/isort/issues/2207">#2207</a>) <a href="https://github.com/staticdev"><code>@staticdev</code></a></li> </ul> <h3>5.13.0 December 9 2023</h3> <ul> <li>Cleanup deprecated extras (<a href="https://redirect.github.com/pycqa/isort/issues/2089">#2089</a>) <a href="https://github.com/staticdev"><code>@staticdev</code></a></li> <li>Fixed <a href="https://redirect.github.com/pycqa/isort/issues/1989">#1989</a>: settings lookup when working in stream based mode</li> <li>Fixed 80 line length for wemake linter (<a href="https://redirect.github.com/pycqa/isort/issues/2183">#2183</a>) <a href="https://github.com/skatromb"><code>@skatromb</code></a></li> <li>Add support for Python 3.12 (<a href="https://redirect.github.com/pycqa/isort/issues/2175">#2175</a>) <a href="https://github.com/hugovk"><code>@hugovk</code></a></li> <li>Fixed: add newest version to pre-commit docs (<a href="https://redirect.github.com/pycqa/isort/issues/2190">#2190</a>) <a href="https://github.com/AzulGarza"><code>@AzulGarza</code></a></li> <li>Fixed assertions in test_git_hook (<a href="https://redirect.github.com/pycqa/isort/issues/2196">#2196</a>) <a href="https://github.com/mgorny"><code>@mgorny</code></a></li> <li>Removed check for include_trailing_comma for the Hanging Indent wrap mode (<a href="https://redirect.github.com/pycqa/isort/issues/2192">#2192</a>) <a href="https://github.com/bp72"><code>@bp72</code></a></li> <li>Use the standard library tomllib on sufficiently new python (<a href="https://redirect.github.com/pycqa/isort/issues/2202">#2202</a>) <a href="https://github.com/eli-schwartz"><code>@eli-schwartz</code></a></li> <li>Update pre-commit.md version number (<a href="https://redirect.github.com/pycqa/isort/issues/2197">#2197</a>) <a href="https://github.com/nicobako"><code>@nicobako</code></a></li> <li>doc: Update black_compatibility.md (<a href="https://redirect.github.com/pycqa/isort/issues/2177">#2177</a>) <a href="https://github.com/JSS95"><code>@JSS95</code></a></li> <li>Fixed safety sept 2023 (<a href="https://redirect.github.com/pycqa/isort/issues/2178">#2178</a>) <a href="https://github.com/staticdev"><code>@staticdev</code></a></li> <li>docs: fix black profile documentation (<a href="https://redirect.github.com/pycqa/isort/issues/2163">#2163</a>) <a href="https://github.com/nijel"><code>@nijel</code></a></li> <li>Fixed typo: indended -> indented (<a href="https://redirect.github.com/pycqa/isort/issues/2161">#2161</a>) <a href="https://github.com/vadimkerr"><code>@vadimkerr</code></a></li> <li>Docs(configuration/options.md): fix missing trailing spaces for hard linebreak (<a href="https://redirect.github.com/pycqa/isort/issues/2157">#2157</a>) <a href="https://github.com/JoeyTeng"><code>@JoeyTeng</code></a></li> <li>Update pre-commit.md (<a href="https://redirect.github.com/pycqa/isort/issues/2148">#2148</a>) <a href="https://github.com/godiard"><code>@godiard</code></a></li> <li>chore: move configurations to pyproject.toml (<a href="https://redirect.github.com/pycqa/isort/issues/2115">#2115</a>) <a href="https://github.com/SauravMaheshkar"><code>@SauravMaheshkar</code></a></li> <li>Fixed typo in README (<a href="https://redirect.github.com/pycqa/isort/issues/2112">#2112</a>) <a href="https://github.com/stefmolin"><code>@stefmolin</code></a></li> <li>Update version in pre-commit setup to avoid installation issue with poetry (<a href="https://redirect.github.com/pycqa/isort/issues/2103">#2103</a>) <a href="https://github.com/stefmolin"><code>@stefmolin</code></a></li> <li>Skip .pytype directory by default. (<a href="https://redirect.github.com/pycqa/isort/issues/2098">#2098</a>) <a href="https://github.com/manueljacob"><code>@manueljacob</code></a></li> <li>Fixed a tip block styling in the Config Files section (<a href="https://redirect.github.com/pycqa/isort/issues/2097">#2097</a>) <a href="https://github.com/Klavionik"><code>@Klavionik</code></a></li> <li>Do not cache configuration files (<a href="https://redirect.github.com/pycqa/isort/issues/1995">#1995</a>) <a href="https://github.com/kaste"><code>@kaste</code></a></li> <li>Derive settings_path from --filename (<a href="https://redirect.github.com/pycqa/isort/issues/1992">#1992</a>) <a href="https://github.com/kaste"><code>@kaste</code></a></li> <li>Fixed year of version 5.12.0 in CHANGELOG.md (<a href="https://redirect.github.com/pycqa/isort/issues/2082">#2082</a>) <a href="https://github.com/DjLegolas"><code>@DjLegolas</code></a></li> </ul> <h3>5.12.0 January 28 2023</h3> <ul> <li>Removed support for Python 3.7</li> <li>Fixed incompatiblity with latest poetry version</li> <li>Added support for directory limitations within built in git hook</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/PyCQA/isort/commit/0a0b7a830386ba6a31c2ec8316849ae4d1b8240d"><code>0a0b7a8</code></a> 6.0.0</li> <li><a href="https://github.com/PyCQA/isort/commit/2d00730d48c2963a02c436f3353552ce24689a79"><code>2d00730</code></a> Merge pull request <a href="https://redirect.github.com/pycqa/isort/issues/2349">#2349</a> from PyCQA/revert-2347-revert-2346-ci/uv-replacement...</li> <li><a href="https://github.com/PyCQA/isort/commit/16bb0e2d9b7c42edccf4e1ab292d27e9da908e5c"><code>16bb0e2</code></a> Return user_options</li> <li><a href="https://github.com/PyCQA/isort/commit/73abbc8ec7cffc68d9e9c6c47935b46aed5b3665"><code>73abbc8</code></a> Fix dev and optional dependencies</li> <li><a href="https://github.com/PyCQA/isort/commit/8b3828d756d2a359d1b44021c132821ce5955bdf"><code>8b3828d</code></a> Pin UV version</li> <li><a href="https://github.com/PyCQA/isort/commit/02258755eb35111700745a47cce907865c67021a"><code>0225875</code></a> Remove pip and virtualenv usage</li> <li><a href="https://github.com/PyCQA/isort/commit/3d49bc0c44392100bf04b46014fdfc1e9c276f36"><code>3d49bc0</code></a> Revert "Revert "UV replacement of Poetry""</li> <li><a href="https://github.com/PyCQA/isort/commit/b3760ab1b8844fd4a2c59adee3e0bf3f420fd418"><code>b3760ab</code></a> Merge pull request <a href="https://redirect.github.com/pycqa/isort/issues/2347">#2347</a> from PyCQA/revert-2346-ci/uv-replacement-for-poetry</li> <li><a href="https://github.com/PyCQA/isort/commit/cc12cce681098bba70bd78efe76140bdc39792d6"><code>cc12cce</code></a> Revert "UV replacement of Poetry"</li> <li><a href="https://github.com/PyCQA/isort/commit/f7ab073fda5ddab3651fc4438c4e7e16853b3bca"><code>f7ab073</code></a> Merge pull request <a href="https://redirect.github.com/pycqa/isort/issues/2346">#2346</a> from PyCQA/ci/uv-replacement-for-poetry</li> <li>Additional commits viewable in <a href="https://github.com/pycqa/isort/compare/5.7.0...6.0.0">compare view</a></li> </ul> </details> <br /> Updates `build` from 0.3.0 to 1.2.2.post1 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/pypa/build/releases">build's releases</a>.</em></p> <blockquote> <h2>1.2.2.post1</h2> <!-- raw HTML omitted --> <p>This release only makes metadata (Python 3.13 classifier), docs, and test suite changes.</p> <h2>What's Changed</h2> <ul> <li>ci: add Python 3.13 by <a href="https://github.com/henryiii"><code>@henryiii</code></a> in <a href="https://redirect.github.com/pypa/build/pull/815">pypa/build#815</a></li> <li>docs: mention conda-forge name in README by <a href="https://github.com/henryiii"><code>@henryiii</code></a> in <a href="https://redirect.github.com/pypa/build/pull/816">pypa/build#816</a></li> <li>docs: add a missing ` in README by <a href="https://github.com/SigureMo"><code>@SigureMo</code></a> in <a href="https://redirect.github.com/pypa/build/pull/817">pypa/build#817</a></li> <li>tests: fix under pyproject-hooks 1.2 by <a href="https://github.com/layday"><code>@layday</code></a> in <a href="https://redirect.github.com/pypa/build/pull/824">pypa/build#824</a></li> <li>ci: add PyPI attestations by <a href="https://github.com/henryiii"><code>@henryiii</code></a> in <a href="https://redirect.github.com/pypa/build/pull/821">pypa/build#821</a></li> <li>chore: 1.2.2.post1 by <a href="https://github.com/henryiii"><code>@henryiii</code></a> in <a href="https://redirect.github.com/pypa/build/pull/820">pypa/build#820</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/SigureMo"><code>@SigureMo</code></a> made their first contribution in <a href="https://redirect.github.com/pypa/build/pull/817">pypa/build#817</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/pypa/build/compare/1.2.2...1.2.2.post1">https://github.com/pypa/build/compare/1.2.2...1.2.2.post1</a></p> <h2>Version 1.2.2</h2> <!-- raw HTML omitted --> <h2>What's Changed</h2> <ul> <li>Add editable to <code>builder.get_requries_for_build</code>'s static types (PR <a href="https://redirect.github.com/pypa/build/issues/764">#764</a>, fixes issue <a href="https://redirect.github.com/pypa/build/issues/763">#763</a>)</li> <li>Include artifact attestations in our release (PR <a href="https://redirect.github.com/pypa/build/issues/782">#782</a>)</li> <li>Fix typing compatibility with typed <code>pyproject-hooks</code> (PR <a href="https://redirect.github.com/pypa/build/issues/788">#788</a>)</li> <li>Mark more tests with <code>network</code> (PR <a href="https://redirect.github.com/pypa/build/issues/808">#808</a>)</li> <li>Add more intersphinx links to docs (PR <a href="https://redirect.github.com/pypa/build/issues/804">#804</a>)</li> <li>Make <code>uv</code> optional for tests (PR <a href="https://redirect.github.com/pypa/build/issues/807">#807</a> and <a href="https://redirect.github.com/pypa/build/issues/813">#813</a>)</li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/carlwgeorge"><code>@carlwgeorge</code></a> made their first contribution in <a href="https://redirect.github.com/pypa/build/pull/808">pypa/build#808</a></li> <li><a href="https://github.com/edgarrmondragon"><code>@edgarrmondragon</code></a> made their first contribution in <a href="https://redirect.github.com/pypa/build/pull/804">pypa/build#804</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/pypa/build/compare/1.2.1...1.2.2">https://github.com/pypa/build/compare/1.2.1...1.2.2</a></p> <h2>Version 1.2.1</h2> <h2>What's Changed</h2> <ul> <li>Avoid error when terminal width is undetectable on Python < 3.11 (PR <a href="https://redirect.github.com/pypa/build/issues/761">#761</a>)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pypa/build/blob/main/CHANGELOG.rst">build's changelog</a>.</em></p> <blockquote> <p>+++++++++ Changelog +++++++++</p> <h1>1.2.2 (2024-09-06)</h1> <ul> <li>Add editable to <code>builder.get_requries_for_build</code>'s static types (PR :pr:<code>764</code>, fixes issue :issue:<code>763</code>)</li> <li>Include artifact attestations in our release (PR :pr:<code>782</code>)</li> <li>Fix typing compatibility with typed <code>pyproject-hooks</code> (PR :pr:<code>788</code>)</li> <li>Mark more tests with <code>network</code> (PR :pr:<code>808</code>)</li> <li>Add more intersphinx links to docs (PR :pr:<code>804</code>)</li> <li>Make <code>uv</code> optional for tests (PR :pr:<code>807</code> and :pr:<code>813</code>)</li> </ul> <h1>1.2.1 (2024-03-28)</h1> <ul> <li>Avoid error when terminal width is undetectable on Python < 3.11 (PR :pr:<code>761</code>)</li> </ul> <h1>1.2.0 (2024-03-27)</h1> <ul> <li>Add <code>--installer</code> option, supporting <code>pip</code> and <code>uv</code>. Added <code>uv</code> extra. (PR :pr:<code>751</code>)</li> <li>Improve console output and provide <code>-v</code> for dependency installation (PR :pr:<code>749</code>)</li> <li>Avoid compiling unused bytecode when using <code>pip</code> (PR :pr:<code>752</code>)</li> <li>Dropped support for Python 3.7 (PR :pr:<code>743</code>)</li> </ul> <h1>1.1.1 (2024-02-29)</h1> <ul> <li>Fixed invoking outer pip from user site packages (PR :pr:<code>746</code>, fixes issue :issue:<code>745</code>)</li> <li>Corrected the minimum pip version required to use an outer pip (PR :pr:<code>746</code>, fixes issue :issue:<code>745</code>)</li> </ul> <p>1.1.0 (2024-02-29)</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pypa/build/commit/2f667024a90718da24c5bdfdb264944436adf82e"><code>2f66702</code></a> chore: 1.2.2.post1 (<a href="https://redirect.github.com/pypa/build/issues/820">#820</a>)</li> <li><a href="https://github.com/pypa/build/commit/0580c6d125fd5479dae3dde36923bfd9b5220a37"><code>0580c6d</code></a> ci: add PyPI attestations (<a href="https://redirect.github.com/pypa/build/issues/821">#821</a>)</li> <li><a href="https://github.com/pypa/build/commit/e0e911cc895ca22559be2b80b04be27e33220b87"><code>e0e911c</code></a> tests: fix under pyproject-hooks 1.2</li> <li><a href="https://github.com/pypa/build/commit/a73ecbdf16d8a8abb44cbbe95e9ab5f8f2a7c9b9"><code>a73ecbd</code></a> pre-commit: bump repositories</li> <li><a href="https://github.com/pypa/build/commit/56b350439e54d164aed89f251dc39eb7536c0b71"><code>56b3504</code></a> pre-commit: bump repositories (<a href="https://redirect.github.com/pypa/build/issues/819">#819</a>)</li> <li><a href="https://github.com/pypa/build/commit/481ca546a5c9f50f255d245fb75d841f2e2e0d4b"><code>481ca54</code></a> pre-commit: bump repositories (<a href="https://redirect.github.com/pypa/build/issues/818">#818</a>)</li> <li><a href="https://github.com/pypa/build/commit/025836ae620e22d017396f7712237b8423b1f5c1"><code>025836a</code></a> docs: add a missing ` in README (<a href="https://redirect.github.com/pypa/build/issues/817">#817</a>)</li> <li><a href="https://github.com/pypa/build/commit/ae373408f0d4541e9ec8ce711b640ad2faddce4e"><code>ae37340</code></a> docs: mention conda-forge name in README (<a href="https://redirect.github.com/pypa/build/issues/816">#816</a>)</li> <li><a href="https://github.com/pypa/build/commit/f81aac058003f6df7414b19e45c848c8b7ed7c75"><code>f81aac0</code></a> ci: add Python 3.13 (<a href="https://redirect.github.com/pypa/build/issues/815">#815</a>)</li> <li><a href="https://github.com/pypa/build/commit/3b0b5d07077473f5da3f038cf7b74cd2b65d2a98"><code>3b0b5d0</code></a> docs: changelog for 1.2.2 (<a href="https://redirect.github.com/pypa/build/issues/812">#812</a>)</li> <li>Additional commits viewable in <a href="https://github.com/pypa/build/compare/0.3.0...1.2.2.post1">compare view</a></li> </ul> </details> <br /> Updates `twine` from 3.3.0 to 6.1.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/pypa/twine/releases">twine's releases</a>.</em></p> <blockquote> <h2>6.1.0</h2> <p>No release notes provided.</p> <h2>6.0.1</h2> <p>No release notes provided.</p> <h2>6.0.0</h2> <p>No release notes provided.</p> <h2>Release v5.1.1</h2> <p>No release notes provided.</p> <h2>5.1.0</h2> <p>No release notes provided.</p> <h2>5.0.0</h2> <p>No release notes provided.</p> <h2>4.0.2</h2> <p><a href="https://pypi.org/project/twine/4.0.2/">https://pypi.org/project/twine/4.0.2/</a></p> <p><a href="https://twine.readthedocs.io/en/stable/changelog.html#twine-4-0-2-2022-11-30">Changelog</a></p> <h2>4.0.1</h2> <p><a href="https://pypi.org/project/twine/4.0.1/">https://pypi.org/project/twine/4.0.1/</a></p> <p><a href="https://twine.readthedocs.io/en/stable/changelog.html#twine-4-0-1-2022-06-01">Changelog</a></p> <h2>4.0.0</h2> <p><a href="https://pypi.org/project/twine/4.0.0/">https://pypi.org/project/twine/4.0.0/</a></p> <p><a href="https://twine.readthedocs.io/en/stable/changelog.html#twine-4-0-0-2022-03-31">Changelog</a></p> <h2>3.8.0</h2> <p><a href="https://pypi.org/project/twine/3.8.0/">https://pypi.org/project/twine/3.8.0/</a></p> <p><a href="https://twine.readthedocs.io/en/stable/changelog.html#twine-3-8-0-2022-02-02">Changelog</a></p> <h2>3.7.1</h2> <p><a href="https://pypi.org/project/twine/3.7.1/">https://pypi.org/project/twine/3.7.1/</a></p> <p><a href="https://twine.readthedocs.io/en/stable/changelog.html#twine-3-7-1-2021-12-07">Changelog</a></p> <h2>3.7.0</h2> <p><a href="https://pypi.org/project/twine/3.7.0/">https://pypi.org/project/twine/3.7.0/</a></p> <p><a href="https://twine.readthedocs.io/en/stable/changelog.html#twine-3-7-0-2021-12-01">Changelog</a></p> <h2>3.6.0</h2> <p><a href="https://pypi.org/project/twine/3.6.0/">https://pypi.org/project/twine/3.6.0/</a></p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pypa/twine/blob/main/docs/changelog.rst">twine's changelog</a>.</em></p> <blockquote> <h2>Twine 6.1.0 (2025-01-17)</h2> <p>Features ^^^^^^^^</p> <ul> <li>Twine now has preliminary built-in support for <code>Trusted Publishing <https://docs.pypi.org/trusted-publishers/></code>_ as an authentication mechanism. (<code>[#1194](https://github.com/pypa/twine/issues/1194) <https://github.com/pypa/twine/pull/1194></code>_)</li> </ul> <p>Deprecations and Removals ^^^^^^^^^^^^^^^^^^^^^^^^^</p> <ul> <li> <p>Remove support for <code>egg</code> and <code>wininst</code> distribution types. These are not accepted by PyPI and not produced by any modern build-backends. (<code>[#1195](https://github.com/pypa/twine/issues/1195) <https://github.com/pypa/twine/issues/1195></code>_)</p> </li> <li> <p>Twine no longer supports <code>.tar.bz2</code> source distributions. (<code>[#1200](https://github.com/pypa/twine/issues/1200) <https://github.com/pypa/twine/pull/1200></code>_)</p> </li> </ul> <p>Misc ^^^^</p> <ul> <li> <p><code>packaging</code> is used instead of <code>pkginfo</code> for parsing and validating metadata. This aligns metadata validation to the one performed by PyPI. <code>packaging</code> version 24.0 or later is required. Support for metadata version 2.4 requires <code>packaging</code> 24.2 or later. <code>pkginfo</code> is not a dependency anymore. (<code>[#1180](https://github.com/pypa/twine/issues/1180) <https://github.com/pypa/twine/issues/1180></code>_)</p> </li> <li> <p>Use <code>"source"</code> instead of <code>None</code> as <code>pyversion</code> for <code>sdist</code> uploads. This is what PyPI (and most likely other package indexes) expects. (<code>[#1191](https://github.com/pypa/twine/issues/1191) <https://github.com/pypa/twine/issues/1191></code>_)</p> </li> </ul> <h2>Twine 6.0.1 (2024-11-30)</h2> <p>Bugfixes ^^^^^^^^</p> <ul> <li>Fixed a regression where <code>twine check</code> would fail to expand wildcards, e.g. <code>twine check 'dist/*'</code>. (<code>[#1188](https://github.com/pypa/twine/issues/1188) <https://github.com/pypa/twine/issues/1188></code>_)</li> </ul> <p>Misc ^^^^</p> <ul> <li><code>[#1184](https://github.com/pypa/twine/issues/1184) <https://github.com/pypa/twine/issues/1184></code>_</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pypa/twine/commit/aa3a910cdef8e0a3cb4e893f4c371b58015f52e0"><code>aa3a910</code></a> Update changelog for 6.1.0 (<a href="https://redirect.github.com/pypa/twine/issues/1214">#1214</a>)</li> <li><a href="https://github.com/pypa/twine/commit/440603423ac579946aec0c15b280c6ef44477400"><code>4406034</code></a> Merge pull request <a href="https://redirect.github.com/pypa/twine/issues/1208">#1208</a> from dnicolodi/rm-setuptools</li> <li><a href="https://github.com/pypa/twine/commit/2ca55db34c537bbcb00e157e407320c1e5f8f08b"><code>2ca55db</code></a> Simplify generation of test packages used in test_check</li> <li><a href="https://github.com/pypa/twine/commit/bffd2963bbc9c321670eea659d30178000a7bae7"><code>bffd296</code></a> Move build_archive() from test_sdist to common helpers module</li> <li><a href="https://github.com/pypa/twine/commit/fd0646e12e25752d136f9520d7af0d108bc1f29e"><code>fd0646e</code></a> Merge pull request <a href="https://redirect.github.com/pypa/twine/issues/1206">#1206</a> from dnicolodi/rm-binary-blobs-part1</li> <li><a href="https://github.com/pypa/twine/commit/ab4ec8cc0f926a935070731246905f3985ff735d"><code>ab4ec8c</code></a> Merge pull request <a href="https://redirect.github.com/pypa/twine/issues/1211">#1211</a> from pypa/dependabot/github_actions/actions/upload-a...</li> <li><a href="https://github.com/pypa/twine/commit/b562f7422403b0cadff694d2e81b98cf2e28894f"><code>b562f74</code></a> build(deps): bump actions/upload-artifact from 4.5.0 to 4.6.0</li> <li><a href="https://github.com/pypa/twine/commit/b2832de88421edd0d11bfe2ceb53470e12f18bb2"><code>b2832de</code></a> Remove tests/fixtures/twine-1.5.0.zip</li> <li><a href="https://github.com/pypa/twine/commit/970851d9b188dc916e6d95083b1797bd6c277ce5"><code>970851d</code></a> Remove tests/alt-fixtures/twine-1.5.0-py2.py3-none-any.whl</li> <li><a href="https://github.com/pypa/twine/commit/2386ca5300cd7bde59432834d362c07de61e9a53"><code>2386ca5</code></a> build(deps): bump actions/upload-artifact from 4.4.3 to 4.5.0 (<a href="https://redirect.github.com/pypa/twine/issues/1205">#1205</a>)</li> <li>Additional commits viewable in <a href="https://github.com/pypa/twine/compare/3.3.0...6.1.0">compare view</a></li> </ul> </details> <br /> Updates `wheel` from 0.38.1 to 0.45.1 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/pypa/wheel/releases">wheel's releases</a>.</em></p> <blockquote> <h2>0.45.1</h2> <ul> <li>Fixed pure Python wheels converted from eggs and wininst files having the ABI tag in the file name</li> </ul> <h2>0.45.0</h2> <ul> <li> <p>Refactored the <code>convert</code> command to not need setuptools to be installed</p> </li> <li> <p>Don't configure setuptools logging unless running <code>bdist_wheel</code></p> </li> <li> <p>Added a redirection from <code>wheel.bdist_wheel.bdist_wheel</code> to <code>setuptools.command.bdist_wheel.bdist_wheel</code> to improve compatibility with <code>setuptools</code>' latest fixes.</p> <p>Projects are still advised to migrate away from the deprecated module and import the <code>setuptools</code>' implementation explicitly. (PR by <a href="https://github.com/abravalheri"><code>@abravalheri</code></a>)</p> </li> </ul> <h2>0.44.0</h2> <ul> <li>Canonicalized requirements in METADATA file (PR by Wim Jeantine-Glenn)</li> <li>Deprecated the <code>bdist_wheel</code> module, as the code was migrated to <code>setuptools</code> itself</li> </ul> <h2>0.43.0</h2> <ul> <li>Dropped support for Python 3.7</li> <li>Updated vendored <code>packaging</code> to 24.0</li> </ul> <h2>0.42.0</h2> <ul> <li>Allowed removing build tag with <code>wheel tags --build ""</code></li> <li>Fixed <code>wheel pack</code> and <code>wheel tags</code> writing updated <code>WHEEL</code> fields after a blank line, causing other tools to ignore them</li> <li>Fixed <code>wheel pack</code> and <code>wheel tags</code> writing <code>WHEEL</code> with CRLF line endings or a mix of CRLF and LF</li> <li>Fixed <code>wheel pack --build-number ""</code> not removing build tag from <code>WHEEL</code> (above changes by Benjamin Gilbert)</li> </ul> <h2>0.41.3</h2> <ul> <li>Updated vendored <code>packaging</code> to 23.2</li> <li>Fixed ABI tag generation for CPython 3.13a1 on Windows (PR by Sam Gross)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pypa/wheel/blob/main/docs/news.rst">wheel's changelog</a>.</em></p> <blockquote> <h1>Release Notes</h1> <p><strong>UNRELEASED</strong></p> <ul> <li>Fixed an exception when calling the <code>convert</code> command with an empty description field</li> </ul> <p><strong>0.45.1 (2024-11-23)</strong></p> <ul> <li>Fixed pure Python wheels converted from eggs and wininst files having the ABI tag in the file name</li> </ul> <p><strong>0.45.0 (2024-11-08)</strong></p> <ul> <li> <p>Refactored the <code>convert</code> command to not need setuptools to be installed</p> </li> <li> <p>Don't configure setuptools logging unless running <code>bdist_wheel</code></p> </li> <li> <p>Added a redirection from <code>wheel.bdist_wheel.bdist_wheel</code> to <code>setuptools.command.bdist_wheel.bdist_wheel</code> to improve compatibility with <code>setuptools</code>' latest fixes.</p> <p>Projects are still advised to migrate away from the deprecated module and import the <code>setuptools</code>' implementation explicitly. (PR by <a href="https://github.com/abravalheri"><code>@abravalheri</code></a>)</p> </li> </ul> <p><strong>0.44.0 (2024-08-04)</strong></p> <ul> <li>Canonicalized requirements in METADATA file (PR by Wim Jeantine-Glenn)</li> <li>Deprecated the <code>bdist_wheel</code> module, as the code was migrated to <code>setuptools</code> itself</li> </ul> <p><strong>0.43.0 (2024-03-11)</strong></p> <ul> <li>Dropped support for Python 3.7</li> <li>Updated vendored <code>packaging</code> to 24.0</li> </ul> <p><strong>0.42.0 (2023-11-26)</strong></p> <ul> <li>Allowed removing build tag with <code>wheel tags --build ""</code></li> <li>Fixed <code>wheel pack</code> and <code>wheel tags</code> writing updated <code>WHEEL</code> fields after a blank line, causing other tools to ignore them</li> <li>Fixed <code>wheel pack</code> and <code>wheel tags</code> writing <code>WHEEL</code> with CRLF line endings or a mix of CRLF and LF</li> <li>Fixed <code>wheel pack --build-number ""</code> not removing build tag from <code>WHEEL</code> (above changes by Benjamin Gilbert)</li> </ul> <p><strong>0.41.3 (2023-10-30)</strong></p> <ul> <li>Updated vendored <code>packaging</code> to 23.2</li> <li>Fixed ABI tag generation for CPython 3.13a1 on Windows (PR by Sam Gross)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pypa/wheel/commit/7855525de4093257e7bfb434877265e227356566"><code>7855525</code></a> Created a new release</li> <li><a href="https://github.com/pypa/wheel/commit/d343391c20f8f6cc89a61a6f1573522c59d3d7a3"><code>d343391</code></a> Fixed wrong wheel file names in converted pure-Python eggs/wininsts</li> <li><a href="https://github.com/pypa/wheel/commit/d78f0e372199f8294556345d867af4d3cf118418"><code>d78f0e3</code></a> Created a new release</li> <li><a href="https://github.com/pypa/wheel/commit/f064c699209e36ec2948537b7cadabf84a110c30"><code>f064c69</code></a> Added license files for vendored <code>packaging</code></li> <li><a href="https://github.com/pypa/wheel/commit/68387afcd33cb514a4da811d2fc5de73c8797e48"><code>68387af</code></a> Only configure setuptools logging if bdist_wheel is imported (<a href="https://redirect.github.com/pypa/wheel/issues/641">#641</a>)</li> <li><a href="https://github.com/pypa/wheel/commit/c81f5c954a8ca7698e6df9de39cf0013295949fa"><code>c81f5c9</code></a> Refactored the <code>wheel convert</code> command to not require setuptools (<a href="https://redirect.github.com/pypa/wheel/issues/640">#640</a>)</li> <li><a href="https://github.com/pypa/wheel/commit/e43464d32feaddddb235ffe21b4bf13c1193465d"><code>e43464d</code></a> Adjusted target Python versions in GitHub CI</li> <li><a href="https://github.com/pypa/wheel/commit/e9894e71bc62e5808710bc8c2c268de51aef52d4"><code>e9894e7</code></a> Tweaked pytest settings to make the tracebacks easier to read</li> <li><a href="https://github.com/pypa/wheel/commit/baf6bf89562cb42a0ca71cc1e804600b161952eb"><code>baf6bf8</code></a> Removed Cirrus CI configuration</li> <li><a href="https://github.com/pypa/wheel/commit/28c1ba1e2a6d08edc03c73e29293a571888981f9"><code>28c1ba1</code></a> Improved compatibility with future versions of <code>setuptools</code> (<a href="https://redirect.github.com/pypa/wheel/issues/638">#638</a>)</li> <li>Additional commits viewable in <a href="https://github.com/pypa/wheel/compare/0.38.1...0.45.1">compare view</a></li> </ul> </details> <br /> Updates `setuptools` from 70.0.0 to 75.8.0 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pypa/setuptools/blob/main/NEWS.rst">setuptools's changelog</a>.</em></p> <blockquote> <h1>v75.8.0</h1> <h2>Features</h2> <ul> <li>Implemented <code>Dynamic</code> field for core metadata (as introduced in PEP 643). The existing implementation is currently experimental and the exact approach may change in future releases. (<a href="https://redirect.github.com/pypa/setuptools/issues/4698">#4698</a>)</li> </ul> <h1>v75.7.0</h1> <h2>Features</h2> <ul> <li><code>pypa/distutils#310</code><a href="https://redirect.github.com/pypa/setuptools/issues/4478">#4478</a>)</li> <li>Synced with pypa/distutils@ff11eed0c including bugfix for duplicate CFLAGS and adaption to support Python 3.13 is_abs in the C compiler (<a href="https://redirect.github.com/pypa/setuptools/issues/4669">#4669</a>). (<a href="https://redirect.github.com/pypa/setuptools/issues/4790">#4790</a>)</li> </ul> <h1>v75.6.0</h1> <h2>Features</h2> <ul> <li>Preserve original <code>PKG-INFO</code> into <code>METADATA</code> when creating wheel (instead of calling <code>wheel.metadata.pkginfo_to_metadata</code>). This helps to be more compliant with the flow specified in PEP 517. (<a href="https://redirect.github.com/pypa/setuptools/issues/4701">#4701</a>)</li> <li>Changed the <code>WindowsSdkVersion</code>, <code>FrameworkVersion32</code> and <code>FrameworkVersion64</code> properties of <code>setuptools.msvc.PlatformInfo</code> to return an empty <code>tuple</code> instead of <code>None</code> as a fallthrough case -- by :user:<code>Avasam</code> (<a href="https://redirect.github.com/pypa/setuptools/issues/4754">#4754</a>)</li> </ul> <h1>v75.5.0</h1> <h2>Features</h2> <ul> <li>Removed support for <code>SETUPTOOLS_DANGEROUSLY_SKIP_PYPROJECT_VALIDATION</code>, as it is deemed prone to errors. (<a href="https://redirect.github.com/pypa/setuptools/issues/4746">#4746</a>)</li> </ul> <h1>v75.4.0</h1> <h2>Features</h2> <ul> <li>Added support for the environment variable</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pypa/setuptools/commit/5c9d9809dec1b20e2a9da6b4a06355fd6f87a190"><code>5c9d980</code></a> Bump version: 75.7.0 → 75.8.0</li> <li><a href="https://github.com/pypa/setuptools/commit/72c422261b40f2b95a8be6605cc7dd93cec81794"><code>72c4222</code></a> Avoid using Any in function</li> <li><a href="https://github.com/pypa/setuptools/commit/1c61d4799438677c7cfaaccf281312bfb1aee9b3"><code>1c61d47</code></a> Add news fragments for PEP 643</li> <li><a href="https://github.com/pypa/setuptools/commit/f285d01e2661b01e4947a4dca7704790b65f2967"><code>f285d01</code></a> Implement PEP 643 (<code>Dynamic</code> field for core metadata) (<a href="https://redirect.github.com/pypa/setuptools/issues/4698">#4698</a>)</li> <li><a href="https://github.com/pypa/setuptools/commit/a50f6e2e1e8b4610adde709079bec17ad0944197"><code>a50f6e2</code></a> Fix _static.Dict.<strong>ior</strong> for Python 3.8</li> <li><a href="https://github.com/pypa/setuptools/commit/b055895fa337a6e03a29c2ea6493b6b778d2ba46"><code>b055895</code></a> Add extra tests for static/dynamic metadata</li> <li><a href="https://github.com/pypa/setuptools/commit/770b4fc8f6248d862629028f5ee4218975f9516b"><code>770b4fc</code></a> Remove test workaround for unmarked static values from pyproject.toml</li> <li><a href="https://github.com/pypa/setuptools/commit/8b22d73be5e23a9611398d81aedc5164115940ce"><code>8b22d73</code></a> Mark values from pyproject.toml as static</li> <li><a href="https://github.com/pypa/setuptools/commit/f699fd842e3ddedbe937ee33b0bd6ad28e735664"><code>f699fd8</code></a> Fix spelling error</li> <li><a href="https://github.com/pypa/setuptools/commit/8b4c8a3c95f43d771d0fa6e4ebceea3436bc70f7"><code>8b4c8a3</code></a> Add tests for static 'attr' directive</li> <li>Additional commits viewable in <a href="https://github.com/pypa/setuptools/compare/v70.0.0...v75.8.0">compare view</a></li> </ul> </details> <br /> Updates `protobuf` from 5.27.0 to 5.29.3 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/protocolbuffers/protobuf/commit/b407e8416e3893036aee5af9a12bd9b6a0e2b2e6"><code>b407e84</code></a> Updating version.json and repo version numbers to: 29.3</li> <li><a href="https://github.com/protocolbuffers/protobuf/commit/9a5d2c329c159e07f7da8ba5dfe0acc98dfb81a9"><code>9a5d2c3</code></a> Add .bazeliskrc for protobuf repo to tell bazelisk to use 7.1.2 by default. (...</li> <li><a href="https://github.com/protocolbuffers/protobuf/commit/1dc5842ebe7956e79d5dfee6d3589df02faa77fd"><code>1dc5842</code></a> Fix cmake installation location of java and go features (<a href="https://redirect.github.com/protocolbuffers/protobuf/issues/19773">#19773</a>)</li> <li><a href="https://github.com/protocolbuffers/protobuf/commit/8e7e6b026f0ef00fd0f3d3cbeb41a02f8621c785"><code>8e7e6b0</code></a> Update artifact actions to v4 (<a href="https://redirect.github.com/protocolbuffers/protobuf/issues/19703">#19703</a>)</li> <li><a href="https://github.com/protocolbuffers/protobuf/commit/cbdc8ab774aeb888f635a1f3d0bce206e173b276"><code>cbdc8ab</code></a> Merge pull request <a href="https://redirect.github.com/protocolbuffers/protobuf/issues/19719">#19719</a> from protocolbuffers/29.x-202412181411</li> <li><a href="https://github.com/protocolbuffers/protobuf/commit/5621748f97259be36587bf337aae554f6361cb22"><code>5621748</code></a> Updating version.json and repo version numbers to: 29.3-dev</li> <li><a href="https://github.com/protocolbuffers/protobuf/commit/233098326bc268fc03b28725c941519fc77703e6"><code>2330983</code></a> Updating version.json and repo version numbers to: 29.2</li> <li><a href="https://github.com/protocolbuffers/protobuf/commit/17726576c00d4509bc3552ec922de2399f6503fe"><code>1772657</code></a> Automated rollback of commit 23aada230b2478c7a07fe7612489eb8e79b9c379. (<a href="https://redirect.github.com/protocolbuffers/protobuf/issues/19692">#19692</a>)</li> <li><a href="https://github.com/protocolbuffers/protobuf/commit/8b9d76c458bee6bd9e1d8edacace5b2aa7c5a4c7"><code>8b9d76c</code></a> Export environment variables so bazelisk picks them up (<a href="https://redirect.github.com/protocolbuffers/protobuf/issues/19690">#19690</a>)</li> <li><a href="https://github.com/protocolbuffers/protobuf/commit/a1c9b6a2dbda0ab13037e60ac0d6edcef93aaab7"><code>a1c9b6a</code></a> Pin staleness check to Bazel 7 (<a href="https://redirect.github.com/protocolbuffers/protobuf/issues/19689">#19689</a>)</li> <li>Additional commits viewable in <a href="https://github.com/protocolbuffers/protobuf/compare/v5.27.0...v5.29.3">compare view</a></li> </ul> </details> <br /> Updates `jinja2` from 3.1.4 to 3.1.5 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/pallets/jinja/releases">jinja2's releases</a>.</em></p> <blockquote> <h2>3.1.5</h2> <p>This is the Jinja 3.1.5 security fix release, which fixes security issues and bugs but does not otherwise change behavior and should not result in breaking changes compared to the latest feature release.</p> <p>PyPI: <a href="https://pypi.org/project/Jinja2/3.1.5/">https://pypi.org/project/Jinja2/3.1.5/</a> Changes: <a href="https://jinja.palletsprojects.com/changes/#version-3-1-5">https://jinja.palletsprojects.com/changes/#version-3-1-5</a> Milestone: <a href="https://github.com/pallets/jinja/milestone/16?closed=1">https://github.com/pallets/jinja/milestone/16?closed=1</a></p> <ul> <li>The sandboxed environment handles indirect calls to <code>str.format</code>, such as by passing a stored reference to a filter that calls its argument. <a href="https://github.com/pallets/jinja/security/advisories/GHSA-q2x7-8rv6-6q7h">GHSA-q2x7-8rv6-6q7h</a></li> <li>Escape template name before formatting it into error messages, to avoid issues with names that contain f-string syntax. <a href="https://redirect.github.com/pallets/jinja/issues/1792">#1792</a>, <a href="https://github.com/pallets/jinja/security/advisories/GHSA-gmj6-6f8f-6699">GHSA-gmj6-6f8f-6699</a></li> <li>Sandbox does not allow <code>clear</code> and <code>pop</code> on known mutable sequence types. <a href="https://redirect.github.com/pallets/jinja/issues/2032">#2032</a></li> <li>Calling sync <code>render</code> for an async template uses <code>asyncio.run</code>. <a href="https://redirect.github.com/pallets/jinja/issues/1952">#1952</a></li> <li>Avoid unclosed <code>auto_aiter</code> warnings. <a href="https://redirect.github.com/pallets/jinja/issues/1960">#1960</a></li> <li>Return an <code>aclose</code>-able <code>AsyncGenerator</code> from <code>Template.generate_async</code>. <a href="https://redirect.github.com/pallets/jinja/issues/1960">#1960</a></li> <li>Avoid leaving <code>root_render_func()</code> unclosed in <code>Template.generate_async</code>. <a href="https://redirect.github.com/pallets/jinja/issues/1960">#1960</a></li> <li>Avoid leaving async generators unclosed in blocks, includes and extends. <a href="https://redirect.github.com/pallets/jinja/issues/1960">#1960</a></li> <li>The runtime uses the correct <code>concat</code> function for the current environment when calling block references. <a href="https://redirect.github.com/pallets/jinja/issues/1701">#1701</a></li> <li>Make <code>|unique</code> async-aware, allowing it to be used after another async-aware filter. <a href="https://redirect.github.com/pallets/jinja/issues/1781">#1781</a></li> <li><code>|int</code> filter handles <code>OverflowError</code> from scientific notation. <a href="https://redirect.github.com/pallets/jinja/issues/1921">#1921</a></li> <li>Make compiling deterministic for tuple unpacking in a <code>{% set ... %}</code> call. <a href="https://redirect.github.com/pallets/jinja/issues/2021">#2021</a></li> <li>Fix dunder protocol (<code>copy</code>/<code>pickle</code>/etc) interaction with <code>Undefined</code> objects. <a href="https://redirect.github.com/pallets/jinja/issues/2025">#2025</a></li> <li>Fix <code>copy</code>/<code>pickle</code> support for the internal <code>missing</code> object. <a href="https://redirect.github.com/pallets/jinja/issues/2027">#2027</a></li> <li><code>Environment.overlay(enable_async)</code> is applied correctly. <a href="https://redirect.github.com/pallets/jinja/issues/2061">#2061</a></li> <li>The error message from <code>FileSystemLoader</code> includes the paths that were searched. <a href="https://redirect.github.com/pallets/jinja/issues/1661">#1661</a></li> <li><code>PackageLoader</code> shows a clearer error message when the package does not contain the templates directory. <a href="https://redirect.github.com/pallets/jinja/issues/1705">#1705</a></li> <li>Improve annotations for methods returning copies. <a href="https://redirect.github.com/pallets/jinja/issues/1880">#1880</a></li> <li><code>urlize</code> does not add <code>mailto:</code> to values like <code>@a@b</code>. <a href="https://redirect.github.com/pallets/jinja/issues/1870">#1870</a></li> <li>Tests decorated with <code>@pass_context</code> can be used with the <code>|select</code> filter. <a href="https://redirect.github.com/pallets/jinja/issues/1624">#1624</a></li> <li>Using <code>set</code> for multiple assignment (<code>a, b = 1, 2</code>) does not fail when the target is a namespace attribute. <a href="https://redirect.github.com/pallets/jinja/issues/1413">#1413</a></li> <li>Using <code>set</code> in all branches of <code>{% if %}{% elif %}{% else %}</code> blocks does not cause the variable to be considered initially undefined. <a href="https://redirect.github.com/pallets/jinja/issues/1253">#1253</a></li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pallets/jinja/blob/main/CHANGES.rst">jinja2's changelog</a>.</em></p> <blockquote> <h2>Version 3.1.5</h2> <p>Released 2024-12-21</p> <ul> <li>The sandboxed environment handles indirect calls to <code>str.format</code>, such as by passing a stored reference to a filter that calls its argument. :ghsa:<code>q2x7-8rv6-6q7h</code></li> <li>Escape template name before formatting it into error messages, to avoid issues with names that contain f-string syntax. :issue:<code>1792</code>, :ghsa:<code>gmj6-6f8f-6699</code></li> <li>Sandbox does not allow <code>clear</code> and <code>pop</code> on known mutable sequence types. :issue:<code>2032</code></li> <li>Calling sync <code>render</code> for an async template uses <code>asyncio.run</code>. :pr:<code>1952</code></li> <li>Avoid unclosed <code>auto_aiter</code> warnings. :pr:<code>1960</code></li> <li>Return an <code>aclose</code>-able <code>AsyncGenerator</code> from <code>Template.generate_async</code>. :pr:<code>1960</code></li> <li>Avoid leaving <code>root_render_func()</code> unclosed in <code>Template.generate_async</code>. :pr:<code>1960</code></li> <li>Avoid leaving async generators unclosed in blocks, includes and extends. :pr:<code>1960</code></li> <li>The runtime uses the correct <code>concat</code> function for the current environment when calling block references. :issue:<code>1701</code></li> <li>Make <code>|unique</code> async-aware, allowing it to be used after another async-aware filter. :issue:<code>1781</code></li> <li><code>|int</code> filter handles <code>OverflowError</code> from scientific notation. :issue:<code>1921</code></li> <li>Make compiling deterministic for tuple unpacking in a <code>{% set ... %}</code> call. :issue:<code>2021</code></li> <li>Fix dunder protocol (<code>copy</code>/<code>pickle</code>/etc) interaction with <code>Undefined</code> objects. :issue:<code>2025</code></li> <li>Fix <code>copy</code>/<code>pickle</code> support for the internal <code>missing</code> object. :issue:<code>2027</code></li> <li><code>Environment.overlay(enable_async)</code> is applied correctly. :pr:<code>2061</code></li> <li>The error message from <code>FileSystemLoader</code> includes the paths that were searched. :issue:<code>1661</code></li> <li><code>PackageLoader</code> shows a clearer error message when the package does not contain the templates directory. :issue:<code>1705</code></li> <li>Improve annotations for methods returning copies. :pr:<code>1880</code></li> <li><code>urlize</code> does not add <code>mailto:</code> to values like <code>@a@b</code>. :pr:<code>1870</code></li> <li>Tests decorated with <code>@pass_context`` can be used with the ``|select`` filter. :issue:</code>1624`</li> <li>Using <code>set</code> for multiple assignment (<code>a, b = 1, 2</code>) does not fail when the target is a namespace attribute. :issue:<code>1413</code></li> <li>Using <code>set</code> in all branches of <code>{% if %}{% elif %}{% else %}</code> blocks does not cause the variable to be considered initially undefined. :issue:<code>1253</code></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pallets/jinja/commit/877f6e51be8e1765b06d911cfaa9033775f051d1"><code>877f6e5</code></a> release version 3.1.5</li> <li><a href="https://github.com/pallets/jinja/commit/8d588592653b052f957b720e1fc93196e06f207f"><code>8d58859</code></a> remove test pypi</li> <li><a href="https://github.com/pallets/jinja/commit/eda8fe86fd716dfce24910294e9f1fc81fbc740c"><code>eda8fe8</code></a> update dev dependencies</li> <li><a href="https://github.com/pallets/jinja/commit/c8fdce1e0333f1122b244b03a48535fdd7b03d91"><code>c8fdce1</code></a> Fix bug involving calling set on a template parameter within all branches of ...</li> <li><a href="https://github.com/pallets/jinja/commit/66587ce989e5a478e0bb165371fa2b9d42b7040f"><code>66587ce</code></a> Fix bug where set would sometimes fail within if</li> <li><a href="https://github.com/pallets/jinja/commit/fbc3a696c729d177340cc089531de7e2e5b6f065"><code>fbc3a69</code></a> Add support for namespaces in tuple parsing (<a href="https://redirect.github.com/pallets/jinja/issues/1664">#1664</a>)</li> <li><a href="https://github.com/pallets/jinja/commit/b8f4831d41e6a7cb5c40d42f074ffd92d2daccfc"><code>b8f4831</code></a> more comments about nsref assignment</li> <li><a href="https://github.com/pallets/jinja/commit/ee832194cd9f55f75e5a51359b709d535efe957f"><code>ee83219</code></a> Add support for namespaces in tuple assignment</li> <li><a href="https://github.com/pallets/jinja/commit/1d55cddbb28e433779511f28f13a2d8c4ec45826"><code>1d55cdd</code></a> Triple quotes in docs (<a href="https://redirect.github.com/pallets/jinja/issues/2064">#2064</a>)</li> <li><a href="https://github.com/pallets/jinja/commit/8a8eafc6b992ba177f1d3dd483f8465f18a11116"><code>8a8eafc</code></a> edit block assignment section</li> <li>Additional commits viewable in <a href="https://github.com/pallets/jinja/compare/3.1.4...3.1.5">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>
Bumps the required group with 7 updates: | Package | From | To | | --- | --- | --- | | [protobuf](https://github.com/protocolbuffers/protobuf) | `5.29.2` | `5.29.3` | | [grpcio](https://github.com/grpc/grpc) | `1.68.1` | `1.70.0` | | [pydoclint](https://github.com/jsh9/pydoclint) | `0.5.14` | `0.6.0` | | [mkdocs-material](https://github.com/squidfunk/mkdocs-material) | `9.5.49` | `9.6.1` | | [pylint](https://github.com/pylint-dev/pylint) | `3.3.3` | `3.3.4` | | [setuptools](https://github.com/pypa/setuptools) | `75.6.0` | `75.8.0` | | [grpcio-tools](https://github.com/grpc/grpc) | `1.68.1` | `1.70.0` | Updates `protobuf` from 5.29.2 to 5.29.3 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/protocolbuffers/protobuf/commit/b407e8416e3893036aee5af9a12bd9b6a0e2b2e6"><code>b407e84</code></a> Updating version.json and repo version numbers to: 29.3</li> <li><a href="https://github.com/protocolbuffers/protobuf/commit/9a5d2c329c159e07f7da8ba5dfe0acc98dfb81a9"><code>9a5d2c3</code></a> Add .bazeliskrc for protobuf repo to tell bazelisk to use 7.1.2 by default. (...</li> <li><a href="https://github.com/protocolbuffers/protobuf/commit/1dc5842ebe7956e79d5dfee6d3589df02faa77fd"><code>1dc5842</code></a> Fix cmake installation location of java and go features (<a href="https://redirect.github.com/protocolbuffers/protobuf/issues/19773">#19773</a>)</li> <li><a href="https://github.com/protocolbuffers/protobuf/commit/8e7e6b026f0ef00fd0f3d3cbeb41a02f8621c785"><code>8e7e6b0</code></a> Update artifact actions to v4 (<a href="https://redirect.github.com/protocolbuffers/protobuf/issues/19703">#19703</a>)</li> <li><a href="https://github.com/protocolbuffers/protobuf/commit/cbdc8ab774aeb888f635a1f3d0bce206e173b276"><code>cbdc8ab</code></a> Merge pull request <a href="https://redirect.github.com/protocolbuffers/protobuf/issues/19719">#19719</a> from protocolbuffers/29.x-202412181411</li> <li><a href="https://github.com/protocolbuffers/protobuf/commit/5621748f97259be36587bf337aae554f6361cb22"><code>5621748</code></a> Updating version.json and repo version numbers to: 29.3-dev</li> <li>See full diff in <a href="https://github.com/protocolbuffers/protobuf/compare/v5.29.2...v5.29.3">compare view</a></li> </ul> </details> <br /> Updates `grpcio` from 1.68.1 to 1.70.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/grpc/grpc/releases">grpcio's releases</a>.</em></p> <blockquote> <h2>Release v1.70.0</h2> <p>This is release 1.70.0 (<a href="https://github.com/grpc/grpc/blob/master/doc/g_stands_for.md">genius</a>) of gRPC Core.</p> <p>For gRPC documentation, see <a href="https://grpc.io/">grpc.io</a>. For previous releases, see <a href="https://github.com/grpc/grpc/releases">Releases</a>.</p> <p>This release contains refinements, improvements, and bug fixes, with highlights listed below.</p> <h2>Core</h2> <ul> <li>[BoringSSL] Update third_party/boringssl-with-bazel. (<a href="https://redirect.github.com/grpc/grpc/issues/38274">#38274</a>)</li> </ul> <h2>C++</h2> <ul> <li>gRPC C++ begins to require C++17 or later to build and use gRPC C++. You may need the following settings: <ul> <li>CMake: Add CMAKE_CXX_STANDARD=17 to your CMake build command.</li> <li>Bazel: Add --cxxopt='/std:c++17' and --host_cxxopt='/std:c++17' to your Bazel build command.</li> <li>gRPC 1.69, the final version compatible with C++14, will be supported until December 10, 2025, according to <a href="https://github.com/grpc/proposal/blob/master/L120-requiring-cpp17.md">https://github.com/grpc/proposal/blob/master/L120-requiring-cpp17.md</a>.</li> </ul> </li> </ul> <h2>Release v1.70.0-pre1</h2> <p>This is a prerelease of gRPC Core 1.70.0 (genius).</p> <p>For gRPC documentation, see <a href="https://grpc.io/">grpc.io</a>. For previous releases, see <a href="https://github.com/grpc/grpc/releases">Releases</a>.</p> <p>This prerelease contains refinements, improvements, and bug fixes.</p> <h2>Release v1.69.0</h2> <p>This is release 1.69.0 (<a href="https://github.com/grpc/grpc/blob/master/doc/g_stands_for.md">gridiron</a>) of gRPC Core.</p> <p>For gRPC documentation, see <a href="https://grpc.io/">grpc.io</a>. For previous releases, see <a href="https://github.com/grpc/grpc/releases">Releases</a>.</p> <p>This release contains refinements, improvements, and bug fixes, with highlights listed below.</p> <h2>Core</h2> <ul> <li>[Alarm] Fix Alarm reuse on cancellation. (<a href="https://redirect.github.com/grpc/grpc/pull/38114">#38114</a>)</li> <li>[xDS RBAC] Support string_match in HeaderMatcher. (<a href="https://redirect.github.com/grpc/grpc/pull/38185">#38185</a>)</li> <li>[pick_first] fix shutdown bug in new PF impl. (<a href="https://redirect.github.com/grpc/grpc/pull/38144">#38144</a>)</li> <li>[c-ares] Fix inverted length check in GrpcPolledFdWindows. (<a href="https://redirect.github.com/grpc/grpc/pull/38101">#38101</a>)</li> <li>[RetryFilter] Copy the SliceBuffer from RetryFilter's cache to batch payload. (<a href="https://redirect.github.com/grpc/grpc/pull/38069">#38069</a>)</li> <li>[EventEngine] Add stronger wording on Endpoint::Read contract. (<a href="https://redirect.github.com/grpc/grpc/pull/38036">#38036</a>)</li> <li>[chttp2] Fix channelz address. (<a href="https://redirect.github.com/grpc/grpc/pull/38022">#38022</a>)</li> <li>[XdsClient] Add missing authority to XdsClient metrics scope. (<a href="https://redirect.github.com/grpc/grpc/pull/38009">#38009</a>)</li> <li>[EventEngine] API contract: Endpoint::Read will provide either an error or data, but never both. (<a href="https://redirect.github.com/grpc/grpc/pull/38019">#38019</a>)</li> <li>[Build] Dropped Bazel 6.x support. (<a href="https://redirect.github.com/grpc/grpc/pull/37979">#37979</a>)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/grpc/grpc/commit/93571f6142f823167d54bc1169fed567b2407d94"><code>93571f6</code></a> [Backport to 1.70.x] Updated python requirements (<a href="https://redirect.github.com/grpc/grpc/issues/38524">#38524</a>)</li> <li><a href="https://github.com/grpc/grpc/commit/9d3bef715bd77b60559398fc66402264bdf80ff7"><code>9d3bef7</code></a> [Revert] "[ruby] [backport-1.70.x] Build/test ruby 3.4 and build native gems ...</li> <li><a href="https://github.com/grpc/grpc/commit/6788979465fa78deff593e4abf59d385439b28c5"><code>6788979</code></a> [Release] Bump version to 1.70.0 (on v1.70.x branch) (<a href="https://redirect.github.com/grpc/grpc/issues/38509">#38509</a>)</li> <li><a href="https://github.com/grpc/grpc/commit/2d2d80ba0e914d4a6b53e9ecb8f068b81d6579e7"><code>2d2d80b</code></a> [Backport] Php & Dart interop test fixes (<a href="https://redirect.github.com/grpc/grpc/issues/38463">#38463</a>) (<a href="https://redirect.github.com/grpc/grpc/issues/38507">#38507</a>)</li> <li><a href="https://github.com/grpc/grpc/commit/ab2222db264057830e887ad3bbb04a4f178c3227"><code>ab2222d</code></a> [ruby] [backport-1.70.x] Build/test ruby 3.4 and build native gems with Ruby ...</li> <li><a href="https://github.com/grpc/grpc/commit/f1e4dfaca81edf0390c0c58cb51859b63b797123"><code>f1e4dfa</code></a> [Backport-to-1.70.x] Fix python build script to handle C and C++ std options ...</li> <li><a href="https://github.com/grpc/grpc/commit/6c8df892cd1dc596c07b82242754cd7dec6e656d"><code>6c8df89</code></a> [Release] Bump version to 1.70.0-pre1 (on v1.70.x branch) (<a href="https://redirect.github.com/grpc/grpc/issues/38407">#38407</a>)</li> <li><a href="https://github.com/grpc/grpc/commit/9eb9ebd19ef1f69f367ad68c41edb8bf9f4954c3"><code>9eb9ebd</code></a> [Release] Bump core version to 45.0.0 for upcoming release (<a href="https://redirect.github.com/grpc/grpc/issues/38403">#38403</a>)</li> <li><a href="https://github.com/grpc/grpc/commit/df95cf9de3733c2bdcb03d723e396c6fdee5b9d9"><code>df95cf9</code></a> [benchmark] Match case of excluded scenario. (<a href="https://redirect.github.com/grpc/grpc/issues/38390">#38390</a>)</li> <li><a href="https://github.com/grpc/grpc/commit/048ea424201ec6b69fe8eb1a1c13303074c8e917"><code>048ea42</code></a> [CI] Re-enabled modernize-unary-static-assert (<a href="https://redirect.github.com/grpc/grpc/issues/38333">#38333</a>)</li> <li>Additional commits viewable in <a href="https://github.com/grpc/grpc/compare/v1.68.1...v1.70.0">compare view</a></li> </ul> </details> <br /> Updates `pydoclint` from 0.5.14 to 0.6.0 <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.6.0</h2> <h2>What's Changed</h2> <ul> <li>Add DOC003 to check docstring style mismatch by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/207">jsh9/pydoclint#207</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0">https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0</a></p> <h2>0.5.19</h2> <h2>What's Changed</h2> <ul> <li>Fix false positive DOC405 & DOC201 for bare returns by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/205">jsh9/pydoclint#205</a></li> <li>Add new config option for documenting star arguments by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/206">jsh9/pydoclint#206</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19">https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19</a></p> <h2>0.5.18</h2> <h2>What's Changed</h2> <ul> <li>Fix parsing and comparison of chained custom exceptions by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/203">jsh9/pydoclint#203</a></li> <li>Fix wording in DOC503 violation message by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/204">jsh9/pydoclint#204</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18">https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18</a></p> <h2>0.5.17</h2> <h2>What's Changed</h2> <ul> <li>Add an option to auto regenerate baseline by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/202">jsh9/pydoclint#202</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17">https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17</a></p> <h2>0.5.16</h2> <h2>What's Changed</h2> <ul> <li>👌 Add pre-commit-hook to run pydoclint via flake8 by <a href="https://github.com/s-weigand"><code>@s-weigand</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/200">jsh9/pydoclint#200</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16">https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16</a></p> <h2>0.5.15</h2> <h2>What's Changed</h2> <ul> <li>Throw DOC001 when docstring sections can't be parsed (numpy style) by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/199">jsh9/pydoclint#199</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.5.14...0.5.15">https://github.com/jsh9/pydoclint/compare/0.5.14...0.5.15</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.6.0] - 2025-01-13</h2> <ul> <li>Added <ul> <li>A new violation code, <code>DOC003</code>, to detect docstring style mismatch (when docstrings are written in the style different from specified)</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0">https://github.com/jsh9/pydoclint/compare/0.5.19...0.6.0</a></li> </ul> </li> </ul> <h2>[0.5.19] - 2025-01-12</h2> <ul> <li>Fixed <ul> <li>False positive DOC405 and DOC201 when we have bare return statements together with <code>yield</code> statements</li> </ul> </li> <li>Added <ul> <li>A new config option <code>--should-document-star-arguments</code> (if <code>False</code>, star arguments such as <code>*args</code> and <code>**kwargs</code> should not be documented in the docstring)</li> <li>A pre-commit step to check that "Full diff" is always added in CHANGELOG.md</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19">https://github.com/jsh9/pydoclint/compare/0.5.18...0.5.19</a></li> </ul> </li> </ul> <h2>[0.5.18] - 2025-01-12</h2> <ul> <li>Fixed <ul> <li>An issue where custom exceptions such as <code>a.b.c.MyException.from_str</code> cannot be properly parsed and compared</li> <li>A minor wording issue in DOC503 violation message</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18">https://github.com/jsh9/pydoclint/compare/0.5.17...0.5.18</a></li> </ul> </li> </ul> <h2>[0.5.17] - 2025-01-12</h2> <ul> <li>Added <ul> <li>A new config option <code>--auto-regenerate-baseline</code> to automatically regenerate the baseline file for every successful <em>pydoclint</em> run</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17">https://github.com/jsh9/pydoclint/compare/0.5.16...0.5.17</a></li> </ul> </li> </ul> <h2>[0.5.16] - 2025-01-11</h2> <ul> <li> <p>Added</p> <ul> <li>A pre-commit hook for using <em>pydoclint</em> as a flake8 plugin</li> </ul> </li> <li> <p>Full diff</p> <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16">https://github.com/jsh9/pydoclint/compare/0.5.15...0.5.16</a></li> </ul> </li> </ul> <h2>[0.5.15] - 2025-01-10</h2> <ul> <li>Changed</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/jsh9/pydoclint/commit/2e8af22f66de795a7bd0ac661353596e8847bbad"><code>2e8af22</code></a> Add DOC003 to check docstring style mismatch (<a href="https://redirect.github.com/jsh9/pydoclint/issues/207">#207</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/94039b23bedf98b6a6469312d04eecee9797a90f"><code>94039b2</code></a> Add new config option for documenting star arguments (<a href="https://redirect.github.com/jsh9/pydoclint/issues/206">#206</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/22b9b37b6ccda9c19be9757ee2c7e0a86a836b96"><code>22b9b37</code></a> Fix false positive DOC405 & DOC201 for bare returns (<a href="https://redirect.github.com/jsh9/pydoclint/issues/205">#205</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/1f2ea57d39bce59362382a739572504b6ee5dfb0"><code>1f2ea57</code></a> Fix wording in DOC503 violation message (<a href="https://redirect.github.com/jsh9/pydoclint/issues/204">#204</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/91263b841745adef4a052354bf4301107fc803ae"><code>91263b8</code></a> Fix parsing and comparison of chained custom exceptions (<a href="https://redirect.github.com/jsh9/pydoclint/issues/203">#203</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/64ef92306050cd21e51a99b1dccd87a41274f6e5"><code>64ef923</code></a> Add tips, tricks, and pitfalls to README</li> <li><a href="https://github.com/jsh9/pydoclint/commit/fe188f425eae9e77c74f169ff2d16e740e370d0b"><code>fe188f4</code></a> Add an option to auto regenerate baseline (<a href="https://redirect.github.com/jsh9/pydoclint/issues/202">#202</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/7282eb691ca4c1e4742c62fe7c3578bb9348f0fb"><code>7282eb6</code></a> 👌 Add pre-commit-hook to run pydoclint via flake8 (<a href="https://redirect.github.com/jsh9/pydoclint/issues/200">#200</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/4021d8d9b3216e2789bd5f28fa7c761228b9b3d4"><code>4021d8d</code></a> Throw DOC001 when docstring sections can't be parsed (numpy style) (<a href="https://redirect.github.com/jsh9/pydoclint/issues/199">#199</a>)</li> <li>See full diff in <a href="https://github.com/jsh9/pydoclint/compare/0.5.14...0.6.0">compare view</a></li> </ul> </details> <br /> Updates `mkdocs-material` from 9.5.49 to 9.6.1 <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.6.1</h2> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7943">#7943</a>: Tags plugin crashing due to merge error</li> </ul> <h2>mkdocs-material-9.6.0</h2> <ul> <li>Added meta plugin</li> <li>Rewrite of the tags plugin</li> <li>Added support for allow lists in tags plugin</li> <li>Added support for and custom sorting in tags plugin</li> <li>Added support for related links in blog plugin</li> <li>Added support for custom index pages in blog plugin</li> <li>Added support for navigation subtitles</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7924">#7924</a>: Anchors might require two clicks when using instant navigation</li> </ul> <h2>mkdocs-material-9.5.50</h2> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7913">#7913</a>: Social plugin renders attribute lists in page title</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.6.1 (2025-01-31)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7943">#7943</a>: Tags plugin crashing due to merge error</li> </ul> <p>mkdocs-material-9.6.0 (2025-01-31)</p> <ul> <li>Added meta plugin</li> <li>Rewrite of the tags plugin</li> <li>Added support for allow lists in tags plugin</li> <li>Added support for and custom sorting in tags plugin</li> <li>Added support for related links in blog plugin</li> <li>Added support for custom index pages in blog plugin</li> <li>Added support for navigation subtitles</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7924">#7924</a>: Anchors might require two clicks when using instant navigation</li> </ul> <p>mkdocs-material-9.5.50 (2025-01-18)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7913">#7913</a>: Social plugin renders attribute lists in page title</li> </ul> <p>mkdocs-material-9.5.49+insiders-4.53.15 (2025-01-15)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7896">#7896</a>: Scoped tags listings not rendering in subsections</li> </ul> <p>mkdocs-material-9.5.49 (2024-12-16)</p> <ul> <li>Adjusted title color in dark mode for all supported Mermaid.js diagrams</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7803">#7803</a>: Privacy plugin crashes on generated files</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7781">#7781</a>: Mermaid.js flow chart title not visible in dark mode</li> </ul> <p>mkdocs-material-9.5.48 (2024-12-08)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7774">#7774</a>: Disabling social cards doesn't work</li> </ul> <p>mkdocs-material-9.5.47 (2024-12-01)</p> <ul> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7750">#7750</a>: Numeric tags break search</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7748">#7748</a>: Blog plugin breaks when using future drafts (9.5.45 regression)</li> </ul> <p>mkdocs-material-9.5.46 (2024-11-25)</p> <ul> <li>Added support for removing preload hints in privacy plugin</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7734">#7734</a>: Code blocks in h5 headlines are uppercased</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7725">#7725</a>: Blog plugin crashing on missing timezone (9.5.45 regression)</li> </ul> <p>mkdocs-material-9.5.45 (2024-11-20)</p> <ul> <li>Reduced size of Docker image through multi-stage build</li> <li>Fixed <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7708">#7708</a>: Blog plugin crashing on YAML dates with timezones</li> </ul> <p>mkdocs-material-9.5.44 (2024-11-05)</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/454af62a45622e3ebf14d25b3ab1ea69c1130e8f"><code>454af62</code></a> Prepare 9.6.1 release</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/2d147c72c02b842937320c58b98e20179742a7a6"><code>2d147c7</code></a> Fixed crashing tags plugin</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/34dc4feba7b45c892c3d6ec2c3d8413a5ebdac5f"><code>34dc4fe</code></a> Updated Premium sponsors</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/8edc6f8daaf0e1e7ebb94be99d3f10e46cd8bfbd"><code>8edc6f8</code></a> Updated Premium sponsors</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/0be1d6b3c8b9f3aff1f91be8f7050dcc96a40321"><code>0be1d6b</code></a> Documentation</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/34e301d311d2e753022e1ae23fd851cbfd73be6a"><code>34e301d</code></a> Fixed build badge</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/4ca5214ebf1665fff5de7be140ab6188eb0ec5a5"><code>4ca5214</code></a> Corrected position of related links in blog post</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/627737ae38905578d761fb7c916b5fdcf854973e"><code>627737a</code></a> Merge pull request <a href="https://redirect.github.com/squidfunk/mkdocs-material/issues/7942">#7942</a> from squidfunk/merge/chipotle</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/49daf573f0cf01cd66a87f6bba3815b775280287"><code>49daf57</code></a> Updated dependencies</li> <li><a href="https://github.com/squidfunk/mkdocs-material/commit/1416697c6b27725859d522c8763914c2b1fb1615"><code>1416697</code></a> Prepare 9.6.0 release</li> <li>Additional commits viewable in <a href="https://github.com/squidfunk/mkdocs-material/compare/9.5.49...9.6.1">compare view</a></li> </ul> </details> <br /> Updates `pylint` from 3.3.3 to 3.3.4 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pylint-dev/pylint/commit/c2b01c3d0b6410d4c93eb1f32fb28f2116b1e68f"><code>c2b01c3</code></a> Bump pylint to 3.3.4, update changelog</li> <li><a href="https://github.com/pylint-dev/pylint/commit/023cd4355c48e3e0c7702e65fde2d99794b25554"><code>023cd43</code></a> [isort] Permit to use isort 6 (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10204">#10204</a>)</li> <li><a href="https://github.com/pylint-dev/pylint/commit/050acfe49c525cd5e58f7c289d35aee1af4051e5"><code>050acfe</code></a> Calculate linter.config.jobs in cgroupsv2 environments (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10089">#10089</a>) (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10169">#10169</a>)</li> <li><a href="https://github.com/pylint-dev/pylint/commit/d6992b8cf993af7a94a9a3044185fb3ea838ac49"><code>d6992b8</code></a> fix "skipped files" count calculation (<a href="https://redirect.github.com/pylint-dev/pylint/issues/10141">#10141</a>)</li> <li>See full diff in <a href="https://github.com/pylint-dev/pylint/compare/v3.3.3...v3.3.4">compare view</a></li> </ul> </details> <br /> Updates `setuptools` from 75.6.0 to 75.8.0 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pypa/setuptools/blob/main/NEWS.rst">setuptools's changelog</a>.</em></p> <blockquote> <h1>v75.8.0</h1> <h2>Features</h2> <ul> <li>Implemented <code>Dynamic</code> field for core metadata (as introduced in PEP 643). The existing implementation is currently experimental and the exact approach may change in future releases. (<a href="https://redirect.github.com/pypa/setuptools/issues/4698">#4698</a>)</li> </ul> <h1>v75.7.0</h1> <h2>Features</h2> <ul> <li><code>pypa/distutils#310</code><a href="https://redirect.github.com/pypa/setuptools/issues/4478">#4478</a>)</li> <li>Synced with pypa/distutils@ff11eed0c including bugfix for duplicate CFLAGS and adaption to support Python 3.13 is_abs in the C compiler (<a href="https://redirect.github.com/pypa/setuptools/issues/4669">#4669</a>). (<a href="https://redirect.github.com/pypa/setuptools/issues/4790">#4790</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pypa/setuptools/commit/5c9d9809dec1b20e2a9da6b4a06355fd6f87a190"><code>5c9d980</code></a> Bump version: 75.7.0 → 75.8.0</li> <li><a href="https://github.com/pypa/setuptools/commit/72c422261b40f2b95a8be6605cc7dd93cec81794"><code>72c4222</code></a> Avoid using Any in function</li> <li><a href="https://github.com/pypa/setuptools/commit/1c61d4799438677c7cfaaccf281312bfb1aee9b3"><code>1c61d47</code></a> Add news fragments for PEP 643</li> <li><a href="https://github.com/pypa/setuptools/commit/f285d01e2661b01e4947a4dca7704790b65f2967"><code>f285d01</code></a> Implement PEP 643 (<code>Dynamic</code> field for core metadata) (<a href="https://redirect.github.com/pypa/setuptools/issues/4698">#4698</a>)</li> <li><a href="https://github.com/pypa/setuptools/commit/a50f6e2e1e8b4610adde709079bec17ad0944197"><code>a50f6e2</code></a> Fix _static.Dict.<strong>ior</strong> for Python 3.8</li> <li><a href="https://github.com/pypa/setuptools/commit/b055895fa337a6e03a29c2ea6493b6b778d2ba46"><code>b055895</code></a> Add extra tests for static/dynamic metadata</li> <li><a href="https://github.com/pypa/setuptools/commit/770b4fc8f6248d862629028f5ee4218975f9516b"><code>770b4fc</code></a> Remove test workaround for unmarked static values from pyproject.toml</li> <li><a href="https://github.com/pypa/setuptools/commit/8b22d73be5e23a9611398d81aedc5164115940ce"><code>8b22d73</code></a> Mark values from pyproject.toml as static</li> <li><a href="https://github.com/pypa/setuptools/commit/f699fd842e3ddedbe937ee33b0bd6ad28e735664"><code>f699fd8</code></a> Fix spelling error</li> <li><a href="https://github.com/pypa/setuptools/commit/8b4c8a3c95f43d771d0fa6e4ebceea3436bc70f7"><code>8b4c8a3</code></a> Add tests for static 'attr' directive</li> <li>Additional commits viewable in <a href="https://github.com/pypa/setuptools/compare/v75.6.0...v75.8.0">compare view</a></li> </ul> </details> <br /> Updates `grpcio-tools` from 1.68.1 to 1.70.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/grpc/grpc/releases">grpcio-tools's releases</a>.</em></p> <blockquote> <h2>Release v1.70.0</h2> <p>This is release 1.70.0 (<a href="https://github.com/grpc/grpc/blob/master/doc/g_stands_for.md">genius</a>) of gRPC Core.</p> <p>For gRPC documentation, see <a href="https://grpc.io/">grpc.io</a>. For previous releases, see <a href="https://github.com/grpc/grpc/releases">Releases</a>.</p> <p>This release contains refinements, improvements, and bug fixes, with highlights listed below.</p> <h2>Core</h2> <ul> <li>[BoringSSL] Update third_party/boringssl-with-bazel. (<a href="https://redirect.github.com/grpc/grpc/issues/38274">#38274</a>)</li> </ul> <h2>C++</h2> <ul> <li>gRPC C++ begins to require C++17 or later to build and use gRPC C++. You may need the following settings: <ul> <li>CMake: Add CMAKE_CXX_STANDARD=17 to your CMake build command.</li> <li>Bazel: Add --cxxopt='/std:c++17' and --host_cxxopt='/std:c++17' to your Bazel build command.</li> <li>gRPC 1.69, the final version compatible with C++14, will be supported until December 10, 2025, according to <a href="https://github.com/grpc/proposal/blob/master/L120-requiring-cpp17.md">https://github.com/grpc/proposal/blob/master/L120-requiring-cpp17.md</a>.</li> </ul> </li> </ul> <h2>Release v1.70.0-pre1</h2> <p>This is a prerelease of gRPC Core 1.70.0 (genius).</p> <p>For gRPC documentation, see <a href="https://grpc.io/">grpc.io</a>. For previous releases, see <a href="https://github.com/grpc/grpc/releases">Releases</a>.</p> <p>This prerelease contains refinements, improvements, and bug fixes.</p> <h2>Release v1.69.0</h2> <p>This is release 1.69.0 (<a href="https://github.com/grpc/grpc/blob/master/doc/g_stands_for.md">gridiron</a>) of gRPC Core.</p> <p>For gRPC documentation, see <a href="https://grpc.io/">grpc.io</a>. For previous releases, see <a href="https://github.com/grpc/grpc/releases">Releases</a>.</p> <p>This release contains refinements, improvements, and bug fixes, with highlights listed below.</p> <h2>Core</h2> <ul> <li>[Alarm] Fix Alarm reuse on cancellation. (<a href="https://redirect.github.com/grpc/grpc/pull/38114">#38114</a>)</li> <li>[xDS RBAC] Support string_match in HeaderMatcher. (<a href="https://redirect.github.com/grpc/grpc/pull/38185">#38185</a>)</li> <li>[pick_first] fix shutdown bug in new PF impl. (<a href="https://redirect.github.com/grpc/grpc/pull/38144">#38144</a>)</li> <li>[c-ares] Fix inverted length check in GrpcPolledFdWindows. (<a href="https://redirect.github.com/grpc/grpc/pull/38101">#38101</a>)</li> <li>[RetryFilter] Copy the SliceBuffer from RetryFilter's cache to batch payload. (<a href="https://redirect.github.com/grpc/grpc/pull/38069">#38069</a>)</li> <li>[EventEngine] Add stronger wording on Endpoint::Read contract. (<a href="https://redirect.github.com/grpc/grpc/pull/38036">#38036</a>)</li> <li>[chttp2] Fix channelz address. (<a href="https://redirect.github.com/grpc/grpc/pull/38022">#38022</a>)</li> <li>[XdsClient] Add missing authority to XdsClient metrics scope. (<a href="https://redirect.github.com/grpc/grpc/pull/38009">#38009</a>)</li> <li>[EventEngine] API contract: Endpoint::Read will provide either an error or data, but never both. (<a href="https://redirect.github.com/grpc/grpc/pull/38019">#38019</a>)</li> <li>[Build] Dropped Bazel 6.x support. (<a href="https://redirect.github.com/grpc/grpc/pull/37979">#37979</a>)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/grpc/grpc/commit/93571f6142f823167d54bc1169fed567b2407d94"><code>93571f6</code></a> [Backport to 1.70.x] Updated python requirements (<a href="https://redirect.github.com/grpc/grpc/issues/38524">#38524</a>)</li> <li><a href="https://github.com/grpc/grpc/commit/9d3bef715bd77b60559398fc66402264bdf80ff7"><code>9d3bef7</code></a> [Revert] "[ruby] [backport-1.70.x] Build/test ruby 3.4 and build native gems ...</li> <li><a href="https://github.com/grpc/grpc/commit/6788979465fa78deff593e4abf59d385439b28c5"><code>6788979</code></a> [Release] Bump version to 1.70.0 (on v1.70.x branch) (<a href="https://redirect.github.com/grpc/grpc/issues/38509">#38509</a>)</li> <li><a href="https://github.com/grpc/grpc/commit/2d2d80ba0e914d4a6b53e9ecb8f068b81d6579e7"><code>2d2d80b</code></a> [Backport] Php & Dart interop test fixes (<a href="https://redirect.github.com/grpc/grpc/issues/38463">#38463</a>) (<a href="https://redirect.github.com/grpc/grpc/issues/38507">#38507</a>)</li> <li><a href="https://github.com/grpc/grpc/commit/ab2222db264057830e887ad3bbb04a4f178c3227"><code>ab2222d</code></a> [ruby] [backport-1.70.x] Build/test ruby 3.4 and build native gems with Ruby ...</li> <li><a href="https://github.com/grpc/grpc/commit/f1e4dfaca81edf0390c0c58cb51859b63b797123"><code>f1e4dfa</code></a> [Backport-to-1.70.x] Fix python build script to handle C and C++ std options ...</li> <li><a href="https://github.com/grpc/grpc/commit/6c8df892cd1dc596c07b82242754cd7dec6e656d"><code>6c8df89</code></a> [Release] Bump version to 1.70.0-pre1 (on v1.70.x branch) (<a href="https://redirect.github.com/grpc/grpc/issues/38407">#38407</a>)</li> <li><a href="https://github.com/grpc/grpc/commit/9eb9ebd19ef1f69f367ad68c41edb8bf9f4954c3"><code>9eb9ebd</code></a> [Release] Bump core version to 45.0.0 for upcoming release (<a href="https://redirect.github.com/grpc/grpc/issues/38403">#38403</a>)</li> <li><a href="https://github.com/grpc/grpc/commit/df95cf9de3733c2bdcb03d723e396c6fdee5b9d9"><code>df95cf9</code></a> [benchmark] Match case of excluded scenario. (<a href="https://redirect.github.com/grpc/grpc/issues/38390">#38390</a>)</li> <li><a href="https://github.com/grpc/grpc/commit/048ea424201ec6b69fe8eb1a1c13303074c8e917"><code>048ea42</code></a> [CI] Re-enabled modernize-unary-static-assert (<a href="https://redirect.github.com/grpc/grpc/issues/38333">#38333</a>)</li> <li>Additional commits viewable in <a href="https://github.com/grpc/grpc/compare/v1.68.1...v1.70.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>
When free threaded CPython is installed from the official Windows installer it doesn't have the macro
Py_GIL_DISABLED
properly set becuase itspyconfig.h
file is shared across the co-installed default build.Define the macro when building free threaded Python extensions on Windows so that each individual C API extension doesn't have to work around this limitation.
See pypa/setuptools#4662