Skip to content

Commit

Permalink
Merge #542
Browse files Browse the repository at this point in the history
542: build(deps-dev): bump pylint from 2.13.4 to 2.13.5 r=ChrisRBe a=dependabot[bot]

Bumps [pylint](https://github.com/PyCQA/pylint) from 2.13.4 to 2.13.5.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/PyCQA/pylint/blob/main/ChangeLog">pylint's changelog</a>.</em></p>
<blockquote>
<h1>What's New in Pylint 2.13.5?</h1>
<p>Release date: 2022-04-06</p>
<ul>
<li>
<p>Fix false positive regression in 2.13.0 for <code>used-before-assignment</code> for
homonyms between variable assignments in try/except blocks and variables in
subscripts in comprehensions.</p>
<p>Closes <a href="https://github-redirect.dependabot.com/PyCQA/pylint/issues/6069">#6069</a>
Closes <a href="https://github-redirect.dependabot.com/PyCQA/pylint/issues/6136">#6136</a></p>
</li>
<li>
<p><code>lru-cache-decorating-method</code> has been renamed to <code>cache-max-size-none</code> and
will only be emitted when <code>maxsize</code> is <code>None</code>.</p>
<p>Closes <a href="https://github-redirect.dependabot.com/PyCQA/pylint/issues/6180">#6180</a></p>
</li>
<li>
<p>Fix false positive for <code>unused-import</code> when disabling both <code>used-before-assignment</code> and <code>undefined-variable</code>.</p>
<p>Closes <a href="https://github-redirect.dependabot.com/PyCQA/pylint/issues/6089">#6089</a></p>
</li>
<li>
<p>Narrow the scope of the <code>unnecessary-ellipsis</code> checker to:</p>
<ul>
<li>functions &amp; classes which contain both a docstring and an ellipsis.</li>
<li>A body which contains an ellipsis <code>nodes.Expr</code> node &amp; at least one other statement.</li>
</ul>
</li>
<li>
<p>Fix false positive for <code>used-before-assignment</code> for assignments taking place via
nonlocal declarations after an earlier type annotation.</p>
<p>Closes <a href="https://github-redirect.dependabot.com/PyCQA/pylint/issues/5394">#5394</a></p>
</li>
<li>
<p>Fix crash for <code>redefined-slots-in-subclass</code> when the type of the slot is not a const or a string.</p>
<p>Closes <a href="https://github-redirect.dependabot.com/PyCQA/pylint/issues/6100">#6100</a></p>
</li>
<li>
<p>Only raise <code>not-callable</code> when all the inferred values of a property are not callable.</p>
<p>Closes <a href="https://github-redirect.dependabot.com/PyCQA/pylint/issues/5931">#5931</a></p>
</li>
<li>
<p>Fix a false negative for <code>subclassed-final-class</code> when a set of other messages were disabled.</p>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/PyCQA/pylint/commit/95cbd2bd14576cb5d9eade4798e73e8601c884de"><code>95cbd2b</code></a> Bump pylint to 2.13.5, update changelog</li>
<li><a href="https://github.com/PyCQA/pylint/commit/2e9b33b13264a3cc229e879e7c03b36acd523554"><code>2e9b33b</code></a> Bump black from 22.1.0 to 22.3.0 (<a href="https://github-redirect.dependabot.com/PyCQA/pylint/issues/6176">#6176</a>)</li>
<li><a href="https://github.com/PyCQA/pylint/commit/f251131eaf88c0a6b30983b9ccd8d2924e28fe38"><code>f251131</code></a> Add <code>subclassed-final-class</code> message to the <code>check_messages</code> decorator (#...</li>
<li><a href="https://github.com/PyCQA/pylint/commit/a03b6e77bef920a7c72be9f3e2c2babddecd2fd2"><code>a03b6e7</code></a> Prevent <code>used-before-assignment</code> for assignment via nonlocal after type annot...</li>
<li><a href="https://github.com/PyCQA/pylint/commit/074131312977fbd423fe4faff004d4fa8dbba4e5"><code>0741313</code></a> Only emit <code>lru-cache-decorating-method</code> when <code>maxsize</code> is <code>None</code> (<a href="https://github-redirect.dependabot.com/PyCQA/pylint/issues/6181">#6181</a>)</li>
<li><a href="https://github.com/PyCQA/pylint/commit/702474327d7c756b61b82a1805efdd32c2d78ca8"><code>7024743</code></a> Fix false positive for <code>unused-import</code> when disabling both ``used-before-as...</li>
<li><a href="https://github.com/PyCQA/pylint/commit/4213b3c9a1d4ea7213636b67954dfbd95e290e91"><code>4213b3c</code></a> Fix handling of &quot;for x in x&quot; homonyms (<a href="https://github-redirect.dependabot.com/PyCQA/pylint/issues/6154">#6154</a>)</li>
<li><a href="https://github.com/PyCQA/pylint/commit/22b5dc1ae716e870873ac0b7d8b3369ca9896c38"><code>22b5dc1</code></a> Account for more node types in handling of except block homonyms with compreh...</li>
<li><a href="https://github.com/PyCQA/pylint/commit/05990167978b3acbb1fbf37b079602a057ee4774"><code>0599016</code></a> <code>redefined-slots-in-subclass</code> crash when slot type is neither a string or c...</li>
<li><a href="https://github.com/PyCQA/pylint/commit/c48c45a88c74c0429f184c48334a513806c6a16c"><code>c48c45a</code></a> Fix E1102 / <code>not-callable</code> false positive for property that returns a lambd...</li>
<li>Additional commits viewable in <a href="https://github.com/PyCQA/pylint/compare/v2.13.4...v2.13.5">compare view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=pylint&package-manager=pip&previous-version=2.13.4&new-version=2.13.5)](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` 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>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
bors[bot] and dependabot[bot] authored Apr 7, 2022
2 parents d97f215 + 854d5eb commit 894491a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ codacy-coverage = "==1.3.11"
coverage = "==6.3.2"
flake8 = "==4.0.1"
pre-commit = "==2.18.1"
pylint = "==2.13.4"
pylint = "==2.13.5"
pytest = "==7.1.1"
pytest-cov = "==3.0.0"

Expand Down

0 comments on commit 894491a

Please sign in to comment.