Skip to content

Commit dd0ada1

Browse files
Bump pydoclint from 0.8.3 to 0.8.6 (#539)
Bumps [pydoclint](https://github.com/jsh9/pydoclint) from 0.8.3 to 0.8.6. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/jsh9/pydoclint/releases">pydoclint's releases</a>.</em></p> <blockquote> <h2>0.8.6</h2> <h2>What's Changed</h2> <ul> <li>Report unsupported docstring headers (numpy) as DOC001 by <a href="https://github.com/jsh9"><code>@​jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/290">jsh9/pydoclint#290</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.8.5...0.8.6">https://github.com/jsh9/pydoclint/compare/0.8.5...0.8.6</a></p> <h2>0.8.5</h2> <h2>What's Changed</h2> <ul> <li>Update linter and formatter versions by <a href="https://github.com/jsh9"><code>@​jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/286">jsh9/pydoclint#286</a></li> <li>Docstring parsing errors now produce DOC001 only; no more cascading violations by <a href="https://github.com/jsh9"><code>@​jsh9</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/289">jsh9/pydoclint#289</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.8.4...0.8.5">https://github.com/jsh9/pydoclint/compare/0.8.4...0.8.5</a></p> <h2>0.8.4</h2> <h2>What's Changed</h2> <ul> <li>Add config option and logic to accommodate PEP257-style inline class attribute documentation by <a href="https://github.com/mpyuglgwkxcmodyrpo"><code>@​mpyuglgwkxcmodyrpo</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/278">jsh9/pydoclint#278</a></li> <li>Add config option to skip private functions by <a href="https://github.com/ed741"><code>@​ed741</code></a> in <a href="https://redirect.github.com/jsh9/pydoclint/pull/282">jsh9/pydoclint#282</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/mpyuglgwkxcmodyrpo"><code>@​mpyuglgwkxcmodyrpo</code></a> made their first contribution in <a href="https://redirect.github.com/jsh9/pydoclint/pull/278">jsh9/pydoclint#278</a></li> <li><a href="https://github.com/ed741"><code>@​ed741</code></a> made their first contribution in <a href="https://redirect.github.com/jsh9/pydoclint/pull/282">jsh9/pydoclint#282</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/jsh9/pydoclint/compare/0.8.3...0.8.4">https://github.com/jsh9/pydoclint/compare/0.8.3...0.8.4</a></p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/jsh9/pydoclint/blob/main/CHANGELOG.md">pydoclint's changelog</a>.</em></p> <blockquote> <h2>[0.8.6] - 2026-06-03</h2> <ul> <li>Fixed <ul> <li>A bug where <code>DOC001</code> did not intercept unsupported numpy docstring section headers such as <code>Inputs</code>, <code>Outputs</code>, and non-ASCII names, and as a result pydoclint would report confusing cascading violations</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.8.5...0.8.6">https://github.com/jsh9/pydoclint/compare/0.8.5...0.8.6</a></li> </ul> </li> </ul> <h2>[0.8.5] - 2026-06-02</h2> <ul> <li>Fixed <ul> <li>A bug where malformed docstrings could trigger an internal error when the underlying parser returned an empty parameter name</li> <li>Avoid cascading downstream violations after <code>DOC001</code> parsing errors</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.8.4...0.8.5">https://github.com/jsh9/pydoclint/compare/0.8.4...0.8.5</a></li> </ul> </li> </ul> <h2>[0.8.4] - 2026-05-16</h2> <ul> <li>Added <ul> <li>Support inline class-attribute docstrings, add <code>DOC606</code> and <code>DOC607</code>, and introduce <code>--require-inline-class-var-docs</code> in native and flake8 modes</li> <li>A new config option <code>--skip-checking-private-functions</code> (shortform: <code>-scpf</code>) to allow docstrings in private methods not to be checked</li> </ul> </li> <li>Full diff <ul> <li><a href="https://github.com/jsh9/pydoclint/compare/0.8.3...0.8.4">https://github.com/jsh9/pydoclint/compare/0.8.3...0.8.4</a></li> </ul> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/jsh9/pydoclint/commit/da69fbd1c05ff6f4ec46bf9be17a27e06601f076"><code>da69fbd</code></a> Report unsupported docstring headers (numpy) as DOC001 (<a href="https://redirect.github.com/jsh9/pydoclint/issues/290">#290</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/1693aa3aeb45ef4b83c5a5f89b370be3632aa55c"><code>1693aa3</code></a> Docstring parsing errors now produce DOC001 only; no more cascading violation...</li> <li><a href="https://github.com/jsh9/pydoclint/commit/98b491f66d81f0e344cdf3a9e1e81bba9c6b684e"><code>98b491f</code></a> Update linter and formatter versions (<a href="https://redirect.github.com/jsh9/pydoclint/issues/286">#286</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/88d83c94156c5e51a09938e77019f2c58e92ab58"><code>88d83c9</code></a> Add config option to skip private functions (<a href="https://redirect.github.com/jsh9/pydoclint/issues/282">#282</a>)</li> <li><a href="https://github.com/jsh9/pydoclint/commit/4e1136c5ddf9173a583e8c8651c0170860049a20"><code>4e1136c</code></a> Add config option and logic to accommodate PEP257-style inline class attribut...</li> <li>See full diff in <a href="https://github.com/jsh9/pydoclint/compare/0.8.3...0.8.6">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=pydoclint&package-manager=pip&previous-version=0.8.3&new-version=0.8.6)](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 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>
2 parents 0b75042 + 8c8973f commit dd0ada1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ dev-flake8 = [
4141
"flake8-datetimez == 20.10.0",
4242
"flake8-docstrings == 1.7.0",
4343
"flake8-pyproject == 1.2.4", # For reading the flake8 config from pyproject.toml
44-
"pydoclint == 0.8.3",
44+
"pydoclint == 0.8.6",
4545
"pydocstyle == 6.3.0",
4646
]
4747
dev-formatting = ["black == 26.5.1", "isort == 8.0.1"]

0 commit comments

Comments
 (0)